Home | History | Annotate | Download | only in lib-tk

Lines Matching refs:selection

1 """File selection dialog classes.
23 """Standard file selection dialog -- no checks on selected file.
40 behavior of the Macintosh file selection dialogs.)
44 title = "File Selection Dialog"
58 self.selection = Entry(self.top)
59 self.selection.pack(side=BOTTOM, fill=X)
60 self.selection.bind('<Return>', self.ok_event)
121 self.selection.focus_set()
196 file = self.selection.get()
216 self.selection.delete(0, END)
217 self.selection.insert(END, os.path.join(self.directory, file))
222 """File selection dialog which checks that the file exists."""
224 title = "Load File Selection Dialog"
236 """File selection dialog which checks that the file may be created."""
238 title = "Save File Selection Dialog"