Updated for Python 1.4

This commit is contained in:
Guido van Rossum 1996-07-30 18:57:18 +00:00
parent c30e95f4b0
commit 89cb67bb64
43 changed files with 731 additions and 961 deletions

View file

@ -11,22 +11,18 @@ class New_Button(Button):
def createWidgets(top):
f = Frame(top)
f.pack()
f.QUIT = Button(f, {'text': 'QUIT',
'fg': 'red',
'command': top.quit})
f.QUIT.pack({'side': 'left', 'fill': 'both'})
f.QUIT = Button(f, text='QUIT', foreground='red', command=top.quit)
f.QUIT.pack(side=LEFT, fill=BOTH)
# a hello button
f.hi_there = New_Button(f, {'text': 'Hello'})
f.hi_there = New_Button(f, text='Hello')
# we do this on a different line because we need to reference f.hi_there
f.hi_there.config({'command' : f.hi_there.callback})
f.hi_there.pack({'side': 'left'})
f.hi_there.config(command=f.hi_there.callback)
f.hi_there.pack(side=LEFT)
f.hi_there.counter = 43
root = Tk()
createWidgets(root)
root.mainloop()