cpython/Demo/tkinter/matt/window-creation-w-location.py

39 lines
874 B
Python
Raw Normal View History

1994-10-07 06:55:26 -03:00
from Tkinter import *
import sys
sys.path.append("/users/mjc4y/projects/python/tkinter/utils")
from TkinterUtils import *
1996-07-30 15:57:18 -03:00
# this shows how to create a new window with a button in it that
# can create new windows
1994-10-07 06:55:26 -03:00
class Test(Frame):
def makeWindow(self, *args):
fred = Toplevel()
1996-07-30 15:57:18 -03:00
fred.label = Canvas (fred, width="2i", height="2i")
1994-10-07 06:55:26 -03:00
fred.label.create_line("0", "0", "2i", "2i")
fred.label.create_line("0", "2i", "2i", "0")
fred.label.pack()
centerWindow(fred, self.master)
def createWidgets(self):
self.QUIT = QuitButton(self)
1996-07-30 15:57:18 -03:00
self.QUIT.pack(side=LEFT, fill=BOTH)
1994-10-07 06:55:26 -03:00
1996-07-30 15:57:18 -03:00
self.makeWindow = Button(self, text='Make a New Window',
width=50, height=20,
command=self.makeWindow)
self.makeWindow.pack(side=LEFT)
1994-10-07 06:55:26 -03:00
def __init__(self, master=None):
Frame.__init__(self, master)
Pack.config(self)
self.createWidgets()
test = Test()
test.mainloop()