Lines Matching refs:top
63 self.top = Toplevel(master)
64 self.top.title(title)
65 self.top.iconname(title)
66 _setup_dialog(self.top)
68 self.botframe = Frame(self.top)
71 self.selection = Entry(self.top)
75 self.filter = Entry(self.top)
79 self.midframe = Frame(self.top)
117 self.top.protocol('WM_DELETE_WINDOW', self.cancel_command)
119 self.top.bind('<Alt-w>', self.cancel_command)
120 self.top.bind('<Alt-W>', self.cancel_command)
135 self.top.wait_visibility() # window needs to be visible for the grab
136 self.top.grab_set()
144 self.top.destroy()
259 d = Dialog(self.top,
290 # - parent: which window to place the dialog on top of