blob: 67e7dc90ecbb563203e491dde34e22184e4cf7c5 [file] [log] [blame]
Guido van Rossumf7132471994-06-27 08:00:16 +00001# Dialog.py -- Tkinter interface to the tk_dialog script.
Guido van Rossum761c5ab1995-07-14 15:29:10 +00002
Guido van Rossumf7132471994-06-27 08:00:16 +00003from Tkinter import *
Guido van Rossum94550631995-08-04 03:49:39 +00004from Tkinter import _cnfmerge
Guido van Rossumf7132471994-06-27 08:00:16 +00005
Guido van Rossum94550631995-08-04 03:49:39 +00006if TkVersion <= 3.6:
Guido van Rossum761c5ab1995-07-14 15:29:10 +00007 DIALOG_ICON = 'warning'
8else:
9 DIALOG_ICON = 'questhead'
10
11
Guido van Rossumf7132471994-06-27 08:00:16 +000012class Dialog(Widget):
Guido van Rossum94550631995-08-04 03:49:39 +000013 def __init__(self, master=None, cnf={}, **kw):
14 cnf = _cnfmerge((cnf, kw))
Guido van Rossum761c5ab1995-07-14 15:29:10 +000015 self.widgetName = '__dialog__'
Guido van Rossumf7132471994-06-27 08:00:16 +000016 Widget._setup(self, master, cnf)
Guido van Rossumf023ab01994-08-30 12:13:44 +000017 self.num = self.tk.getint(
18 apply(self.tk.call,
19 ('tk_dialog', self._w,
20 cnf['title'], cnf['text'],
21 cnf['bitmap'], cnf['default'])
22 + cnf['strings']))
Guido van Rossumf7132471994-06-27 08:00:16 +000023 try: Widget.destroy(self)
24 except TclError: pass
25 def destroy(self): pass
26
27def _test():
28 d = Dialog(None, {'title': 'File Modified',
29 'text':
30 'File "Python.h" has been modified'
31 ' since the last time it was saved.'
32 ' Do you want to save it before'
33 ' exiting the application.',
Guido van Rossum761c5ab1995-07-14 15:29:10 +000034 'bitmap': DIALOG_ICON,
Guido van Rossumf7132471994-06-27 08:00:16 +000035 'default': 0,
36 'strings': ('Save File',
37 'Discard Changes',
38 'Return to Editor')})
39 print d.num
40
41
42if __name__ == '__main__':
43 t = Button(None, {'text': 'Test',
44 'command': _test,
45 Pack: {}})
46 q = Button(None, {'text': 'Quit',
47 'command': t.quit,
48 Pack: {}})
49 t.mainloop()