Home | History | Annotate | Download | only in tkinter

Lines Matching defs:Dialog

6 # This copyright applies to Dialog, askinteger, askfloat and asktring
11 """This modules handles dialog boxes.
15 SimpleDialog -- A simple but flexible modal dialog box
17 Dialog -- a base class for dialogs
114 class Dialog(Toplevel):
123 '''Initialize a dialog.
129 title -- the dialog title
180 '''create dialog body.
237 dialog is destroyed. By default, it always validates OK.
246 the dialog is destroyed. By default, it does nothing.
255 class _QueryDialog(Dialog):
271 Dialog.__init__(self, parent, title)
275 Dialog.destroy(self)
335 title -- the dialog title
354 title -- the dialog title
386 title -- the dialog title
403 text="This is a test dialog. "
404 "Would this have been an actual dialog, "
411 title="Test Dialog")