Lines Matching refs:top
92 def __init__(self, top): argument
93 self.top = top
94 top.columnconfigure(99, weight=1)
95 self.url_label = Label(top, text="URL:")
97 self.url_entry = Entry(top, width=60, exportselection=0)
102 self.dir_label = Label(top, text="Directory:")
104 self.dir_entry = Entry(top)
107 self.go_button = Button(top, text="Go", command=self.go)
109 self.cancel_button = Button(top, text="Cancel",
113 self.auto_button = Button(top, text="Paste+Go",
116 self.status_label = Label(top, text="[idle]")
118 self.top.update_idletasks()
119 self.top.grid_propagate(0)
135 self.top.bell()
138 self.top.after(100, self.check_msgq)
152 self.top.bell()
181 text = self.top.selection_get(selection=t)
188 self.top.bell()
198 def __init__(self, top=None): argument
199 if not top:
200 top = Tk()
201 top.title("websucker GUI")
202 top.iconname("wsgui")
203 top.wm_protocol('WM_DELETE_WINDOW', self.exit)
204 self.top = top
205 self.appframe = Frame(self.top)
208 self.exit_button = Button(top, text="Exit", command=self.exit)
210 self.new_button = Button(top, text="New", command=self.addsucker)
216 self.top.geometry("")
227 self.top.update()