Lines Matching refs:top
118 self.top.bell()
127 self.top.destroy()
133 self.top = top = ListedToplevel(root)
134 self.top.wm_title("Debug Control")
135 self.top.wm_iconname("Debug")
136 top.wm_protocol("WM_DELETE_WINDOW", self.close)
137 self.top.bind("<Escape>", self.close)
139 self.bframe = bframe = Frame(top)
162 self.__class__.vstack = BooleanVar(top)
168 self.__class__.vsource = BooleanVar(top)
173 self.__class__.vlocals = BooleanVar(top)
179 self.__class__.vglobals = BooleanVar(top)
184 self.status = Label(top, anchor="w")
186 self.error = Label(top, anchor="w")
190 self.fstack = Frame(top, height=1)
192 self.flocals = Frame(top)
194 self.fglobals = Frame(top, height=1)
240 self.top.wakeup()