blob: 6f2f1fa2f965ee6fa17cdac1bbf8ae89a8289c4d [file] [log] [blame]
Guido van Rossum1e8c8a21997-07-19 20:02:36 +00001#
2# Instant Python
3# $Id$
4#
5# base class for tk common dialogues
6#
7# this module provides a base class for accessing the common
8# dialogues available in Tk 4.2 and newer. use tkFileDialog,
9# tkColorChooser, and tkMessageBox to access the individual
10# dialogs.
11#
12# written by Fredrik Lundh, May 1997
13#
14
15from Tkinter import *
Guido van Rossum1e8c8a21997-07-19 20:02:36 +000016
17class Dialog:
18
19 command = None
20
21 def __init__(self, master=None, **options):
22
23 # FIXME: should this be placed on the module level instead?
24 if TkVersion < 4.2:
25 raise TclError, "this module requires Tk 4.2 or newer"
26
Guido van Rossumc4570481998-03-20 20:45:49 +000027 self.master = master
Guido van Rossum1e8c8a21997-07-19 20:02:36 +000028 self.options = options
Guido van Rossum3179b361998-10-12 20:40:47 +000029 if not master and options.get('parent'):
30 self.master = options['parent']
Guido van Rossum1e8c8a21997-07-19 20:02:36 +000031
32 def _fixoptions(self):
33 pass # hook
34
35 def _fixresult(self, widget, result):
36 return result # hook
37
38 def show(self, **options):
39
40 # update instance options
Guido van Rossumc4570481998-03-20 20:45:49 +000041 for k, v in options.items():
42 self.options[k] = v
Guido van Rossum1e8c8a21997-07-19 20:02:36 +000043
44 self._fixoptions()
45
Guido van Rossum1530c871997-08-14 14:17:28 +000046 # we need a dummy widget to properly process the options
Guido van Rossum1e8c8a21997-07-19 20:02:36 +000047 # (at least as long as we use Tkinter 1.63)
48 w = Frame(self.master)
49
50 try:
51
Raymond Hettingerff41c482003-04-06 09:01:11 +000052 s = w.tk.call(self.command, *w._options(self.options))
Guido van Rossum1e8c8a21997-07-19 20:02:36 +000053
54 s = self._fixresult(w, s)
55
56 finally:
57
58 try:
59 # get rid of the widget
60 w.destroy()
61 except:
62 pass
63
64 return s