Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1 | # -*-mode: python; fill-column: 75; tab-width: 8; coding: iso-latin-1-unix -*- |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 2 | # |
| 3 | # $Id$ |
| 4 | # |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 5 | # Tix.py -- Tix widget wrappers. |
| 6 | # |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 7 | # For Tix, see http://tix.sourceforge.net |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 8 | # |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 9 | # - Sudhir Shenoy (sshenoy@gol.com), Dec. 1995. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 10 | # based on an idea of Jean-Marc Lugrin (lugrin@ms.com) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 11 | # |
| 12 | # NOTE: In order to minimize changes to Tkinter.py, some of the code here |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 13 | # (TixWidget.__init__) has been taken from Tkinter (Widget.__init__) |
| 14 | # and will break if there are major changes in Tkinter. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 15 | # |
| 16 | # The Tix widgets are represented by a class hierarchy in python with proper |
| 17 | # inheritance of base classes. |
| 18 | # |
| 19 | # As a result after creating a 'w = StdButtonBox', I can write |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 20 | # w.ok['text'] = 'Who Cares' |
| 21 | # or w.ok['bg'] = w['bg'] |
| 22 | # or even w.ok.invoke() |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 23 | # etc. |
| 24 | # |
| 25 | # Compare the demo tixwidgets.py to the original Tcl program and you will |
| 26 | # appreciate the advantages. |
| 27 | # |
| 28 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 29 | from Tkinter import * |
| 30 | from Tkinter import _flatten, _cnfmerge, _default_root |
| 31 | |
| 32 | # WARNING - TkVersion is a limited precision floating point number |
| 33 | if TkVersion < 3.999: |
| 34 | raise ImportError, "This version of Tix.py requires Tk 4.0 or higher" |
| 35 | |
| 36 | import _tkinter # If this fails your Python may not be configured for Tk |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 37 | |
| 38 | # Some more constants (for consistency with Tkinter) |
| 39 | WINDOW = 'window' |
| 40 | TEXT = 'text' |
| 41 | STATUS = 'status' |
| 42 | IMMEDIATE = 'immediate' |
| 43 | IMAGE = 'image' |
| 44 | IMAGETEXT = 'imagetext' |
| 45 | BALLOON = 'balloon' |
| 46 | AUTO = 'auto' |
| 47 | ACROSSTOP = 'acrosstop' |
| 48 | |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 49 | # Some constants used by Tkinter dooneevent() |
| 50 | TCL_DONT_WAIT = 1 << 1 |
| 51 | TCL_WINDOW_EVENTS = 1 << 2 |
| 52 | TCL_FILE_EVENTS = 1 << 3 |
| 53 | TCL_TIMER_EVENTS = 1 << 4 |
| 54 | TCL_IDLE_EVENTS = 1 << 5 |
| 55 | TCL_ALL_EVENTS = 0 |
| 56 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 57 | # BEWARE - this is implemented by copying some code from the Widget class |
| 58 | # in Tkinter (to override Widget initialization) and is therefore |
| 59 | # liable to break. |
| 60 | import Tkinter, os |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 61 | |
| 62 | # Could probably add this to Tkinter.Misc |
| 63 | class tixCommand: |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 64 | """The tix commands provide access to miscellaneous elements |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 65 | of Tix's internal state and the Tix application context. |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 66 | Most of the information manipulated by these commands pertains |
| 67 | to the application as a whole, or to a screen or |
| 68 | display, rather than to a particular window. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 69 | |
| 70 | This is a mixin class, assumed to be mixed to Tkinter.Tk |
| 71 | that supports the self.tk.call method. |
| 72 | """ |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 73 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 74 | def tix_addbitmapdir(self, directory): |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 75 | """Tix maintains a list of directories under which |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 76 | the tix_getimage and tix_getbitmap commands will |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 77 | search for image files. The standard bitmap directory |
| 78 | is $TIX_LIBRARY/bitmaps. The addbitmapdir command |
| 79 | adds directory into this list. By using this |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 80 | command, the image files of an applications can |
| 81 | also be located using the tix_getimage or tix_getbitmap |
| 82 | command. |
| 83 | """ |
| 84 | return self.tk.call('tix', 'addbitmapdir', directory) |
| 85 | |
| 86 | def tix_cget(self, option): |
| 87 | """Returns the current value of the configuration |
| 88 | option given by option. Option may be any of the |
| 89 | options described in the CONFIGURATION OPTIONS section. |
| 90 | """ |
| 91 | return self.tk.call('tix', 'cget', option) |
| 92 | |
| 93 | def tix_configure(self, cnf=None, **kw): |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 94 | """Query or modify the configuration options of the Tix application |
| 95 | context. If no option is specified, returns a dictionary all of the |
| 96 | available options. If option is specified with no value, then the |
| 97 | command returns a list describing the one named option (this list |
| 98 | will be identical to the corresponding sublist of the value |
| 99 | returned if no option is specified). If one or more option-value |
| 100 | pairs are specified, then the command modifies the given option(s) |
| 101 | to have the given value(s); in this case the command returns an |
| 102 | empty string. Option may be any of the configuration options. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 103 | """ |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 104 | # Copied from Tkinter.py |
| 105 | if kw: |
| 106 | cnf = _cnfmerge((cnf, kw)) |
| 107 | elif cnf: |
| 108 | cnf = _cnfmerge(cnf) |
| 109 | if cnf is None: |
| 110 | cnf = {} |
| 111 | for x in self.tk.split(self.tk.call('tix', 'configure')): |
| 112 | cnf[x[0][1:]] = (x[0][1:],) + x[1:] |
| 113 | return cnf |
| 114 | if isinstance(cnf, StringType): |
| 115 | x = self.tk.split(self.tk.call('tix', 'configure', '-'+cnf)) |
| 116 | return (x[0][1:],) + x[1:] |
| 117 | return self.tk.call(('tix', 'configure') + self._options(cnf)) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 118 | |
| 119 | def tix_filedialog(self, dlgclass=None): |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 120 | """Returns the file selection dialog that may be shared among |
| 121 | different calls from this application. This command will create a |
| 122 | file selection dialog widget when it is called the first time. This |
| 123 | dialog will be returned by all subsequent calls to tix_filedialog. |
| 124 | An optional dlgclass parameter can be passed to specified what type |
| 125 | of file selection dialog widget is desired. Possible options are |
| 126 | tix FileSelectDialog or tixExFileSelectDialog. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 127 | """ |
| 128 | if dlgclass is not None: |
| 129 | return self.tk.call('tix', 'filedialog', dlgclass) |
| 130 | else: |
| 131 | return self.tk.call('tix', 'filedialog') |
| 132 | |
| 133 | def tix_getbitmap(self, name): |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 134 | """Locates a bitmap file of the name name.xpm or name in one of the |
| 135 | bitmap directories (see the tix_addbitmapdir command above). By |
| 136 | using tix_getbitmap, you can avoid hard coding the pathnames of the |
| 137 | bitmap files in your application. When successful, it returns the |
| 138 | complete pathname of the bitmap file, prefixed with the character |
| 139 | '@'. The returned value can be used to configure the -bitmap |
| 140 | option of the TK and Tix widgets. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 141 | """ |
| 142 | return self.tk.call('tix', 'getbitmap', name) |
| 143 | |
| 144 | def tix_getimage(self, name): |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 145 | """Locates an image file of the name name.xpm, name.xbm or name.ppm |
| 146 | in one of the bitmap directories (see the addbitmapdir command |
| 147 | above). If more than one file with the same name (but different |
| 148 | extensions) exist, then the image type is chosen according to the |
| 149 | depth of the X display: xbm images are chosen on monochrome |
| 150 | displays and color images are chosen on color displays. By using |
| 151 | tix_ getimage, you can advoid hard coding the pathnames of the |
| 152 | image files in your application. When successful, this command |
| 153 | returns the name of the newly created image, which can be used to |
| 154 | configure the -image option of the Tk and Tix widgets. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 155 | """ |
| 156 | return self.tk.call('tix', 'getimage', name) |
| 157 | |
| 158 | def tix_option_get(self, name): |
| 159 | """Gets the options manitained by the Tix |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 160 | scheme mechanism. Available options include: |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 161 | |
| 162 | active_bg active_fg bg |
| 163 | bold_font dark1_bg dark1_fg |
| 164 | dark2_bg dark2_fg disabled_fg |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 165 | fg fixed_font font |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 166 | inactive_bg inactive_fg input1_bg |
| 167 | input2_bg italic_font light1_bg |
| 168 | light1_fg light2_bg light2_fg |
| 169 | menu_font output1_bg output2_bg |
| 170 | select_bg select_fg selector |
| 171 | """ |
| 172 | # could use self.tk.globalgetvar('tixOption', name) |
| 173 | return self.tk.call('tix', 'option', 'get', name) |
| 174 | |
| 175 | def tix_resetoptions(self, newScheme, newFontSet, newScmPrio=None): |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 176 | """Resets the scheme and fontset of the Tix application to |
| 177 | newScheme and newFontSet, respectively. This affects only those |
| 178 | widgets created after this call. Therefore, it is best to call the |
| 179 | resetoptions command before the creation of any widgets in a Tix |
| 180 | application. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 181 | |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 182 | The optional parameter newScmPrio can be given to reset the |
| 183 | priority level of the Tk options set by the Tix schemes. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 184 | |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 185 | Because of the way Tk handles the X option database, after Tix has |
| 186 | been has imported and inited, it is not possible to reset the color |
| 187 | schemes and font sets using the tix config command. Instead, the |
| 188 | tix_resetoptions command must be used. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 189 | """ |
| 190 | if newScmPrio is not None: |
| 191 | return self.tk.call('tix', 'resetoptions', newScheme, newFontSet, newScmPrio) |
| 192 | else: |
| 193 | return self.tk.call('tix', 'resetoptions', newScheme, newFontSet) |
| 194 | |
| 195 | class Tk(Tkinter.Tk, tixCommand): |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 196 | """Toplevel widget of Tix which represents mostly the main window |
| 197 | of an application. It has an associated Tcl interpreter.""" |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 198 | def __init__(self, screenName=None, baseName=None, className='Tix'): |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 199 | Tkinter.Tk.__init__(self, screenName, baseName, className) |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 200 | tixlib = os.environ.get('TIX_LIBRARY') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 201 | self.tk.eval('global auto_path; lappend auto_path [file dir [info nameof]]') |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 202 | if tixlib is not None: |
| 203 | self.tk.eval('global auto_path; lappend auto_path {%s}' % tixlib) |
| 204 | self.tk.eval('global tcl_pkgPath; lappend tcl_pkgPath {%s}' % tixlib) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 205 | # Load Tix - this should work dynamically or statically |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 206 | # If it's static, lib/tix8.1/pkgIndex.tcl should have |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 207 | # 'load {} Tix' |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 208 | # If it's dynamic under Unix, lib/tix8.1/pkgIndex.tcl should have |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 209 | # 'load libtix8.1.8.3.so Tix' |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 210 | self.tk.eval('package require Tix') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 211 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 212 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 213 | # The Tix 'tixForm' geometry manager |
| 214 | class Form: |
| 215 | """The Tix Form geometry manager |
| 216 | |
| 217 | Widgets can be arranged by specifying attachments to other widgets. |
| 218 | See Tix documentation for complete details""" |
| 219 | |
| 220 | def config(self, cnf={}, **kw): |
| 221 | apply(self.tk.call, ('tixForm', self._w) + self._options(cnf, kw)) |
| 222 | |
| 223 | form = config |
| 224 | |
| 225 | def __setitem__(self, key, value): |
Guido van Rossum | 49fa2bd | 2001-08-13 14:12:35 +0000 | [diff] [blame] | 226 | Form.form(self, {key: value}) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 227 | |
| 228 | def check(self): |
| 229 | return self.tk.call('tixForm', 'check', self._w) |
| 230 | |
| 231 | def forget(self): |
| 232 | self.tk.call('tixForm', 'forget', self._w) |
| 233 | |
| 234 | def grid(self, xsize=0, ysize=0): |
| 235 | if (not xsize) and (not ysize): |
| 236 | x = self.tk.call('tixForm', 'grid', self._w) |
| 237 | y = self.tk.splitlist(x) |
| 238 | z = () |
| 239 | for x in y: |
| 240 | z = z + (self.tk.getint(x),) |
| 241 | return z |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 242 | return self.tk.call('tixForm', 'grid', self._w, xsize, ysize) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 243 | |
| 244 | def info(self, option=None): |
| 245 | if not option: |
| 246 | return self.tk.call('tixForm', 'info', self._w) |
| 247 | if option[0] != '-': |
| 248 | option = '-' + option |
| 249 | return self.tk.call('tixForm', 'info', self._w, option) |
| 250 | |
| 251 | def slaves(self): |
| 252 | return map(self._nametowidget, |
| 253 | self.tk.splitlist( |
| 254 | self.tk.call( |
| 255 | 'tixForm', 'slaves', self._w))) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 256 | |
| 257 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 258 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 259 | Tkinter.Widget.__bases__ = Tkinter.Widget.__bases__ + (Form,) |
| 260 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 261 | class TixWidget(Tkinter.Widget): |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 262 | """A TixWidget class is used to package all (or most) Tix widgets. |
| 263 | |
| 264 | Widget initialization is extended in two ways: |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 265 | 1) It is possible to give a list of options which must be part of |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 266 | the creation command (so called Tix 'static' options). These cannot be |
| 267 | given as a 'config' command later. |
| 268 | 2) It is possible to give the name of an existing TK widget. These are |
| 269 | child widgets created automatically by a Tix mega-widget. The Tk call |
| 270 | to create these widgets is therefore bypassed in TixWidget.__init__ |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 271 | |
| 272 | Both options are for use by subclasses only. |
| 273 | """ |
| 274 | def __init__ (self, master=None, widgetName=None, |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 275 | static_options=None, cnf={}, kw={}): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 276 | # Merge keywords and dictionary arguments |
| 277 | if kw: |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 278 | cnf = _cnfmerge((cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 279 | else: |
| 280 | cnf = _cnfmerge(cnf) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 281 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 282 | # Move static options into extra. static_options must be |
| 283 | # a list of keywords (or None). |
| 284 | extra=() |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 285 | |
| 286 | # 'options' is always a static option |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 287 | if static_options: |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 288 | static_options.append('options') |
| 289 | else: |
| 290 | static_options = ['options'] |
| 291 | |
| 292 | for k,v in cnf.items()[:]: |
| 293 | if k in static_options: |
| 294 | extra = extra + ('-' + k, v) |
| 295 | del cnf[k] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 296 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 297 | self.widgetName = widgetName |
| 298 | Widget._setup(self, master, cnf) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 299 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 300 | # If widgetName is None, this is a dummy creation call where the |
| 301 | # corresponding Tk widget has already been created by Tix |
| 302 | if widgetName: |
| 303 | apply(self.tk.call, (widgetName, self._w) + extra) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 304 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 305 | # Non-static options - to be done via a 'config' command |
| 306 | if cnf: |
| 307 | Widget.config(self, cnf) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 308 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 309 | # Dictionary to hold subwidget names for easier access. We can't |
| 310 | # use the children list because the public Tix names may not be the |
| 311 | # same as the pathname component |
| 312 | self.subwidget_list = {} |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 313 | |
| 314 | # We set up an attribute access function so that it is possible to |
| 315 | # do w.ok['text'] = 'Hello' rather than w.subwidget('ok')['text'] = 'Hello' |
| 316 | # when w is a StdButtonBox. |
| 317 | # We can even do w.ok.invoke() because w.ok is subclassed from the |
| 318 | # Button class if you go through the proper constructors |
| 319 | def __getattr__(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 320 | if self.subwidget_list.has_key(name): |
| 321 | return self.subwidget_list[name] |
| 322 | raise AttributeError, name |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 323 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 324 | def set_silent(self, value): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 325 | """Set a variable without calling its action routine""" |
| 326 | self.tk.call('tixSetSilent', self._w, value) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 327 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 328 | def subwidget(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 329 | """Return the named subwidget (which must have been created by |
| 330 | the sub-class).""" |
| 331 | n = self._subwidget_name(name) |
| 332 | if not n: |
| 333 | raise TclError, "Subwidget " + name + " not child of " + self._name |
| 334 | # Remove header of name and leading dot |
| 335 | n = n[len(self._w)+1:] |
| 336 | return self._nametowidget(n) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 337 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 338 | def subwidgets_all(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 339 | """Return all subwidgets.""" |
| 340 | names = self._subwidget_names() |
| 341 | if not names: |
| 342 | return [] |
| 343 | retlist = [] |
| 344 | for name in names: |
| 345 | name = name[len(self._w)+1:] |
| 346 | try: |
| 347 | retlist.append(self._nametowidget(name)) |
| 348 | except: |
| 349 | # some of the widgets are unknown e.g. border in LabelFrame |
| 350 | pass |
| 351 | return retlist |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 352 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 353 | def _subwidget_name(self,name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 354 | """Get a subwidget name (returns a String, not a Widget !)""" |
| 355 | try: |
| 356 | return self.tk.call(self._w, 'subwidget', name) |
| 357 | except TclError: |
| 358 | return None |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 359 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 360 | def _subwidget_names(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 361 | """Return the name of all subwidgets.""" |
| 362 | try: |
| 363 | x = self.tk.call(self._w, 'subwidgets', '-all') |
| 364 | return self.tk.split(x) |
| 365 | except TclError: |
| 366 | return None |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 367 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 368 | def config_all(self, option, value): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 369 | """Set configuration options for all subwidgets (and self).""" |
| 370 | if option == '': |
| 371 | return |
| 372 | elif not isinstance(option, StringType): |
| 373 | option = `option` |
| 374 | if not isinstance(value, StringType): |
| 375 | value = `value` |
| 376 | names = self._subwidget_names() |
| 377 | for name in names: |
| 378 | self.tk.call(name, 'configure', '-' + option, value) |
Neal Norwitz | 731a986 | 2002-12-10 02:18:49 +0000 | [diff] [blame] | 379 | # These are missing from Tkinter |
| 380 | def image_create(self, imgtype, cnf={}, master=None, **kw): |
| 381 | if not master: |
| 382 | master = Tkinter._default_root |
| 383 | if not master: |
| 384 | raise RuntimeError, 'Too early to create image' |
| 385 | if kw and cnf: cnf = _cnfmerge((cnf, kw)) |
| 386 | elif kw: cnf = kw |
| 387 | options = () |
| 388 | for k, v in cnf.items(): |
| 389 | if callable(v): |
| 390 | v = self._register(v) |
| 391 | options = options + ('-'+k, v) |
| 392 | return master.tk.call(('image', 'create', imgtype,) + options) |
| 393 | def image_delete(self, imgname): |
| 394 | try: |
| 395 | self.tk.call('image', 'delete', imgname) |
| 396 | except TclError: |
| 397 | # May happen if the root was destroyed |
| 398 | pass |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 399 | |
| 400 | # Subwidgets are child widgets created automatically by mega-widgets. |
| 401 | # In python, we have to create these subwidgets manually to mirror their |
| 402 | # existence in Tk/Tix. |
| 403 | class TixSubWidget(TixWidget): |
| 404 | """Subwidget class. |
| 405 | |
| 406 | This is used to mirror child widgets automatically created |
| 407 | by Tix/Tk as part of a mega-widget in Python (which is not informed |
| 408 | of this)""" |
| 409 | |
| 410 | def __init__(self, master, name, |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 411 | destroy_physically=1, check_intermediate=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 412 | if check_intermediate: |
| 413 | path = master._subwidget_name(name) |
| 414 | try: |
| 415 | path = path[len(master._w)+1:] |
Neal Norwitz | ebb4190 | 2002-05-31 20:51:31 +0000 | [diff] [blame] | 416 | plist = path.split('.') |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 417 | except: |
| 418 | plist = [] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 419 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 420 | if (not check_intermediate) or len(plist) < 2: |
| 421 | # immediate descendant |
| 422 | TixWidget.__init__(self, master, None, None, {'name' : name}) |
| 423 | else: |
| 424 | # Ensure that the intermediate widgets exist |
| 425 | parent = master |
| 426 | for i in range(len(plist) - 1): |
Neal Norwitz | ebb4190 | 2002-05-31 20:51:31 +0000 | [diff] [blame] | 427 | n = '.'.join(plist[:i+1]) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 428 | try: |
| 429 | w = master._nametowidget(n) |
| 430 | parent = w |
| 431 | except KeyError: |
| 432 | # Create the intermediate widget |
| 433 | parent = TixSubWidget(parent, plist[i], |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 434 | destroy_physically=0, |
| 435 | check_intermediate=0) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 436 | TixWidget.__init__(self, parent, None, None, {'name' : name}) |
| 437 | self.destroy_physically = destroy_physically |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 438 | |
| 439 | def destroy(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 440 | # For some widgets e.g., a NoteBook, when we call destructors, |
| 441 | # we must be careful not to destroy the frame widget since this |
| 442 | # also destroys the parent NoteBook thus leading to an exception |
| 443 | # in Tkinter when it finally calls Tcl to destroy the NoteBook |
| 444 | for c in self.children.values(): c.destroy() |
| 445 | if self.master.children.has_key(self._name): |
| 446 | del self.master.children[self._name] |
| 447 | if self.master.subwidget_list.has_key(self._name): |
| 448 | del self.master.subwidget_list[self._name] |
| 449 | if self.destroy_physically: |
| 450 | # This is bypassed only for a few widgets |
| 451 | self.tk.call('destroy', self._w) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 452 | |
| 453 | |
| 454 | # Useful func. to split Tcl lists and return as a dict. From Tkinter.py |
| 455 | def _lst2dict(lst): |
| 456 | dict = {} |
| 457 | for x in lst: |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 458 | dict[x[0][1:]] = (x[0][1:],) + x[1:] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 459 | return dict |
| 460 | |
| 461 | # Useful class to create a display style - later shared by many items. |
| 462 | # Contributed by Steffen Kremser |
| 463 | class DisplayStyle: |
| 464 | """DisplayStyle - handle configuration options shared by |
| 465 | (multiple) Display Items""" |
| 466 | |
| 467 | def __init__(self, itemtype, cnf={}, **kw ): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 468 | master = _default_root # global from Tkinter |
| 469 | if not master and cnf.has_key('refwindow'): master=cnf['refwindow'] |
| 470 | elif not master and kw.has_key('refwindow'): master= kw['refwindow'] |
| 471 | elif not master: raise RuntimeError, "Too early to create display style: no root window" |
| 472 | self.tk = master.tk |
| 473 | self.stylename = apply(self.tk.call, ('tixDisplayStyle', itemtype) + |
| 474 | self._options(cnf,kw) ) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 475 | |
| 476 | def __str__(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 477 | return self.stylename |
| 478 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 479 | def _options(self, cnf, kw ): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 480 | if kw and cnf: |
| 481 | cnf = _cnfmerge((cnf, kw)) |
| 482 | elif kw: |
| 483 | cnf = kw |
| 484 | opts = () |
| 485 | for k, v in cnf.items(): |
| 486 | opts = opts + ('-'+k, v) |
| 487 | return opts |
| 488 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 489 | def delete(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 490 | self.tk.call(self.stylename, 'delete') |
| 491 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 492 | def __setitem__(self,key,value): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 493 | self.tk.call(self.stylename, 'configure', '-%s'%key, value) |
| 494 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 495 | def config(self, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 496 | return _lst2dict( |
| 497 | self.tk.split( |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 498 | apply(self.tk.call, |
| 499 | (self.stylename, 'configure') + self._options(cnf,kw)))) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 500 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 501 | def __getitem__(self,key): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 502 | return self.tk.call(self.stylename, 'cget', '-%s'%key) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 503 | |
| 504 | |
| 505 | ###################################################### |
| 506 | ### The Tix Widget classes - in alphabetical order ### |
| 507 | ###################################################### |
| 508 | |
| 509 | class Balloon(TixWidget): |
| 510 | """Balloon help widget. |
| 511 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 512 | Subwidget Class |
| 513 | --------- ----- |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 514 | label Label |
| 515 | message Message""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 516 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 517 | # FIXME: It should inherit -superclass tixShell |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 518 | def __init__(self, master=None, cnf={}, **kw): |
Martin v. Löwis | 652e191 | 2001-11-25 14:50:56 +0000 | [diff] [blame] | 519 | # static seem to be -installcolormap -initwait -statusbar -cursor |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 520 | static = ['options', 'installcolormap', 'initwait', 'statusbar', |
| 521 | 'cursor'] |
| 522 | TixWidget.__init__(self, master, 'tixBalloon', static, cnf, kw) |
| 523 | self.subwidget_list['label'] = _dummyLabel(self, 'label', |
| 524 | destroy_physically=0) |
| 525 | self.subwidget_list['message'] = _dummyLabel(self, 'message', |
| 526 | destroy_physically=0) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 527 | |
| 528 | def bind_widget(self, widget, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 529 | """Bind balloon widget to another. |
| 530 | One balloon widget may be bound to several widgets at the same time""" |
| 531 | apply(self.tk.call, |
| 532 | (self._w, 'bind', widget._w) + self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 533 | |
| 534 | def unbind_widget(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 535 | self.tk.call(self._w, 'unbind', widget._w) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 536 | |
| 537 | class ButtonBox(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 538 | """ButtonBox - A container for pushbuttons. |
| 539 | Subwidgets are the buttons added with the add method. |
| 540 | """ |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 541 | def __init__(self, master=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 542 | TixWidget.__init__(self, master, 'tixButtonBox', |
| 543 | ['orientation', 'options'], cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 544 | |
| 545 | def add(self, name, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 546 | """Add a button with given name to box.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 547 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 548 | btn = apply(self.tk.call, |
| 549 | (self._w, 'add', name) + self._options(cnf, kw)) |
| 550 | self.subwidget_list[name] = _dummyButton(self, name) |
| 551 | return btn |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 552 | |
| 553 | def invoke(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 554 | if self.subwidget_list.has_key(name): |
| 555 | self.tk.call(self._w, 'invoke', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 556 | |
| 557 | class ComboBox(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 558 | """ComboBox - an Entry field with a dropdown menu. The user can select a |
| 559 | choice by either typing in the entry subwdget or selecting from the |
| 560 | listbox subwidget. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 561 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 562 | Subwidget Class |
| 563 | --------- ----- |
| 564 | entry Entry |
| 565 | arrow Button |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 566 | slistbox ScrolledListBox |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 567 | tick Button |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 568 | cross Button : present if created with the fancy option""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 569 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 570 | # FIXME: It should inherit -superclass tixLabelWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 571 | def __init__ (self, master=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 572 | TixWidget.__init__(self, master, 'tixComboBox', |
| 573 | ['editable', 'dropdown', 'fancy', 'options'], |
| 574 | cnf, kw) |
| 575 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 576 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
| 577 | self.subwidget_list['arrow'] = _dummyButton(self, 'arrow') |
| 578 | self.subwidget_list['slistbox'] = _dummyScrolledListBox(self, |
| 579 | 'slistbox') |
| 580 | try: |
| 581 | self.subwidget_list['tick'] = _dummyButton(self, 'tick') |
| 582 | self.subwidget_list['cross'] = _dummyButton(self, 'cross') |
| 583 | except TypeError: |
| 584 | # unavailable when -fancy not specified |
| 585 | pass |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 586 | |
Neal Norwitz | 731a986 | 2002-12-10 02:18:49 +0000 | [diff] [blame] | 587 | # align |
| 588 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 589 | def add_history(self, str): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 590 | self.tk.call(self._w, 'addhistory', str) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 591 | |
| 592 | def append_history(self, str): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 593 | self.tk.call(self._w, 'appendhistory', str) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 594 | |
| 595 | def insert(self, index, str): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 596 | self.tk.call(self._w, 'insert', index, str) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 597 | |
| 598 | def pick(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 599 | self.tk.call(self._w, 'pick', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 600 | |
| 601 | class Control(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 602 | """Control - An entry field with value change arrows. The user can |
| 603 | adjust the value by pressing the two arrow buttons or by entering |
| 604 | the value directly into the entry. The new value will be checked |
| 605 | against the user-defined upper and lower limits. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 606 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 607 | Subwidget Class |
| 608 | --------- ----- |
| 609 | incr Button |
| 610 | decr Button |
| 611 | entry Entry |
| 612 | label Label""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 613 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 614 | # FIXME: It should inherit -superclass tixLabelWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 615 | def __init__ (self, master=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 616 | TixWidget.__init__(self, master, 'tixControl', ['options'], cnf, kw) |
| 617 | self.subwidget_list['incr'] = _dummyButton(self, 'incr') |
| 618 | self.subwidget_list['decr'] = _dummyButton(self, 'decr') |
| 619 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 620 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 621 | |
| 622 | def decrement(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 623 | self.tk.call(self._w, 'decr') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 624 | |
| 625 | def increment(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 626 | self.tk.call(self._w, 'incr') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 627 | |
| 628 | def invoke(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 629 | self.tk.call(self._w, 'invoke') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 630 | |
| 631 | def update(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 632 | self.tk.call(self._w, 'update') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 633 | |
| 634 | class DirList(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 635 | """DirList - displays a list view of a directory, its previous |
| 636 | directories and its sub-directories. The user can choose one of |
| 637 | the directories displayed in the list or change to another directory. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 638 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 639 | Subwidget Class |
| 640 | --------- ----- |
| 641 | hlist HList |
| 642 | hsb Scrollbar |
| 643 | vsb Scrollbar""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 644 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 645 | # FIXME: It should inherit -superclass tixScrolledHList |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 646 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 647 | TixWidget.__init__(self, master, 'tixDirList', ['options'], cnf, kw) |
| 648 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 649 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 650 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 651 | |
| 652 | def chdir(self, dir): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 653 | self.tk.call(self._w, 'chdir', dir) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 654 | |
| 655 | class DirTree(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 656 | """DirTree - Directory Listing in a hierarchical view. |
| 657 | Displays a tree view of a directory, its previous directories and its |
| 658 | sub-directories. The user can choose one of the directories displayed |
| 659 | in the list or change to another directory. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 660 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 661 | Subwidget Class |
| 662 | --------- ----- |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 663 | hlist HList |
| 664 | hsb Scrollbar |
| 665 | vsb Scrollbar""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 666 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 667 | # FIXME: It should inherit -superclass tixScrolledHList |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 668 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 669 | TixWidget.__init__(self, master, 'tixDirTree', ['options'], cnf, kw) |
| 670 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 671 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 672 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 673 | |
| 674 | def chdir(self, dir): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 675 | self.tk.call(self._w, 'chdir', dir) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 676 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 677 | class DirSelectBox(TixWidget): |
| 678 | """DirSelectBox - Motif style file select box. |
| 679 | It is generally used for |
| 680 | the user to choose a file. FileSelectBox stores the files mostly |
| 681 | recently selected into a ComboBox widget so that they can be quickly |
| 682 | selected again. |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 683 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 684 | Subwidget Class |
| 685 | --------- ----- |
| 686 | selection ComboBox |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 687 | filter ComboBox |
| 688 | dirlist ScrolledListBox |
| 689 | filelist ScrolledListBox""" |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 690 | |
| 691 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 692 | TixWidget.__init__(self, master, 'tixDirSelectBox', ['options'], cnf, kw) |
| 693 | self.subwidget_list['dirlist'] = _dummyDirList(self, 'dirlist') |
| 694 | self.subwidget_list['dircbx'] = _dummyFileComboBox(self, 'dircbx') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 695 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 696 | class ExFileSelectBox(TixWidget): |
| 697 | """ExFileSelectBox - MS Windows style file select box. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 698 | It provides an convenient method for the user to select files. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 699 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 700 | Subwidget Class |
| 701 | --------- ----- |
| 702 | cancel Button |
| 703 | ok Button |
| 704 | hidden Checkbutton |
| 705 | types ComboBox |
| 706 | dir ComboBox |
| 707 | file ComboBox |
| 708 | dirlist ScrolledListBox |
| 709 | filelist ScrolledListBox""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 710 | |
| 711 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 712 | TixWidget.__init__(self, master, 'tixExFileSelectBox', ['options'], cnf, kw) |
| 713 | self.subwidget_list['cancel'] = _dummyButton(self, 'cancel') |
| 714 | self.subwidget_list['ok'] = _dummyButton(self, 'ok') |
| 715 | self.subwidget_list['hidden'] = _dummyCheckbutton(self, 'hidden') |
| 716 | self.subwidget_list['types'] = _dummyComboBox(self, 'types') |
| 717 | self.subwidget_list['dir'] = _dummyComboBox(self, 'dir') |
| 718 | self.subwidget_list['dirlist'] = _dummyDirList(self, 'dirlist') |
| 719 | self.subwidget_list['file'] = _dummyComboBox(self, 'file') |
| 720 | self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 721 | |
| 722 | def filter(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 723 | self.tk.call(self._w, 'filter') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 724 | |
| 725 | def invoke(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 726 | self.tk.call(self._w, 'invoke') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 727 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 728 | |
| 729 | # Should inherit from a Dialog class |
| 730 | class DirSelectDialog(TixWidget): |
| 731 | """The DirSelectDialog widget presents the directories in the file |
| 732 | system in a dialog window. The user can use this dialog window to |
| 733 | navigate through the file system to select the desired directory. |
| 734 | |
| 735 | Subwidgets Class |
| 736 | ---------- ----- |
| 737 | dirbox DirSelectDialog""" |
| 738 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 739 | # FIXME: It should inherit -superclass tixDialogShell |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 740 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 741 | TixWidget.__init__(self, master, 'tixDirSelectDialog', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 742 | ['options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 743 | self.subwidget_list['dirbox'] = _dummyDirSelectBox(self, 'dirbox') |
| 744 | # cancel and ok buttons are missing |
| 745 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 746 | def popup(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 747 | self.tk.call(self._w, 'popup') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 748 | |
| 749 | def popdown(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 750 | self.tk.call(self._w, 'popdown') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 751 | |
| 752 | |
| 753 | # Should inherit from a Dialog class |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 754 | class ExFileSelectDialog(TixWidget): |
| 755 | """ExFileSelectDialog - MS Windows style file select dialog. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 756 | It provides an convenient method for the user to select files. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 757 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 758 | Subwidgets Class |
| 759 | ---------- ----- |
| 760 | fsbox ExFileSelectBox""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 761 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 762 | # FIXME: It should inherit -superclass tixDialogShell |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 763 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 764 | TixWidget.__init__(self, master, 'tixExFileSelectDialog', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 765 | ['options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 766 | self.subwidget_list['fsbox'] = _dummyExFileSelectBox(self, 'fsbox') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 767 | |
| 768 | def popup(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 769 | self.tk.call(self._w, 'popup') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 770 | |
| 771 | def popdown(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 772 | self.tk.call(self._w, 'popdown') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 773 | |
| 774 | class FileSelectBox(TixWidget): |
| 775 | """ExFileSelectBox - Motif style file select box. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 776 | It is generally used for |
| 777 | the user to choose a file. FileSelectBox stores the files mostly |
| 778 | recently selected into a ComboBox widget so that they can be quickly |
| 779 | selected again. |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 780 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 781 | Subwidget Class |
| 782 | --------- ----- |
| 783 | selection ComboBox |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 784 | filter ComboBox |
| 785 | dirlist ScrolledListBox |
| 786 | filelist ScrolledListBox""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 787 | |
| 788 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 789 | TixWidget.__init__(self, master, 'tixFileSelectBox', ['options'], cnf, kw) |
| 790 | self.subwidget_list['dirlist'] = _dummyScrolledListBox(self, 'dirlist') |
| 791 | self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist') |
| 792 | self.subwidget_list['filter'] = _dummyComboBox(self, 'filter') |
| 793 | self.subwidget_list['selection'] = _dummyComboBox(self, 'selection') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 794 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 795 | def apply_filter(self): # name of subwidget is same as command |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 796 | self.tk.call(self._w, 'filter') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 797 | |
| 798 | def invoke(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 799 | self.tk.call(self._w, 'invoke') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 800 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 801 | # Should inherit from a Dialog class |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 802 | class FileSelectDialog(TixWidget): |
| 803 | """FileSelectDialog - Motif style file select dialog. |
| 804 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 805 | Subwidgets Class |
| 806 | ---------- ----- |
| 807 | btns StdButtonBox |
| 808 | fsbox FileSelectBox""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 809 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 810 | # FIXME: It should inherit -superclass tixStdDialogShell |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 811 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 812 | TixWidget.__init__(self, master, 'tixFileSelectDialog', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 813 | ['options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 814 | self.subwidget_list['btns'] = _dummyStdButtonBox(self, 'btns') |
| 815 | self.subwidget_list['fsbox'] = _dummyFileSelectBox(self, 'fsbox') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 816 | |
| 817 | def popup(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 818 | self.tk.call(self._w, 'popup') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 819 | |
| 820 | def popdown(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 821 | self.tk.call(self._w, 'popdown') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 822 | |
| 823 | class FileEntry(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 824 | """FileEntry - Entry field with button that invokes a FileSelectDialog. |
| 825 | The user can type in the filename manually. Alternatively, the user can |
| 826 | press the button widget that sits next to the entry, which will bring |
| 827 | up a file selection dialog. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 828 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 829 | Subwidgets Class |
| 830 | ---------- ----- |
| 831 | button Button |
| 832 | entry Entry""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 833 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 834 | # FIXME: It should inherit -superclass tixLabelWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 835 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 836 | TixWidget.__init__(self, master, 'tixFileEntry', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 837 | ['dialogtype', 'options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 838 | self.subwidget_list['button'] = _dummyButton(self, 'button') |
| 839 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 840 | |
| 841 | def invoke(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 842 | self.tk.call(self._w, 'invoke') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 843 | |
| 844 | def file_dialog(self): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 845 | # FIXME: return python object |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 846 | pass |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 847 | |
| 848 | class HList(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 849 | """HList - Hierarchy display widget can be used to display any data |
| 850 | that have a hierarchical structure, for example, file system directory |
| 851 | trees. The list entries are indented and connected by branch lines |
| 852 | according to their places in the hierachy. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 853 | |
| 854 | Subwidgets - None""" |
| 855 | |
| 856 | def __init__ (self,master=None,cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 857 | TixWidget.__init__(self, master, 'tixHList', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 858 | ['columns', 'options'], cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 859 | |
| 860 | def add(self, entry, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 861 | return apply(self.tk.call, |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 862 | (self._w, 'add', entry) + self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 863 | |
| 864 | def add_child(self, parent=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 865 | if not parent: |
| 866 | parent = '' |
| 867 | return apply(self.tk.call, |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 868 | (self._w, 'addchild', parent) + self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 869 | |
| 870 | def anchor_set(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 871 | self.tk.call(self._w, 'anchor', 'set', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 872 | |
| 873 | def anchor_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 874 | self.tk.call(self._w, 'anchor', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 875 | |
| 876 | def column_width(self, col=0, width=None, chars=None): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 877 | if not chars: |
| 878 | return self.tk.call(self._w, 'column', 'width', col, width) |
| 879 | else: |
| 880 | return self.tk.call(self._w, 'column', 'width', col, |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 881 | '-char', chars) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 882 | |
| 883 | def delete_all(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 884 | self.tk.call(self._w, 'delete', 'all') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 885 | |
| 886 | def delete_entry(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 887 | self.tk.call(self._w, 'delete', 'entry', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 888 | |
| 889 | def delete_offsprings(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 890 | self.tk.call(self._w, 'delete', 'offsprings', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 891 | |
| 892 | def delete_siblings(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 893 | self.tk.call(self._w, 'delete', 'siblings', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 894 | |
| 895 | def dragsite_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 896 | self.tk.call(self._w, 'dragsite', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 897 | |
| 898 | def dragsite_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 899 | self.tk.call(self._w, 'dragsite', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 900 | |
| 901 | def dropsite_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 902 | self.tk.call(self._w, 'dropsite', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 903 | |
| 904 | def dropsite_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 905 | self.tk.call(self._w, 'dropsite', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 906 | |
| 907 | def header_create(self, col, cnf={}, **kw): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 908 | apply(self.tk.call, |
| 909 | (self._w, 'header', 'create', col) + self._options(cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 910 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 911 | def header_configure(self, col, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 912 | if cnf is None: |
| 913 | return _lst2dict( |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 914 | self.tk.split( |
| 915 | self.tk.call(self._w, 'header', 'configure', col))) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 916 | apply(self.tk.call, (self._w, 'header', 'configure', col) |
| 917 | + self._options(cnf, kw)) |
| 918 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 919 | def header_cget(self, col, opt): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 920 | return self.tk.call(self._w, 'header', 'cget', col, opt) |
| 921 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 922 | def header_exists(self, col): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 923 | return self.tk.call(self._w, 'header', 'exists', col) |
| 924 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 925 | def header_delete(self, col): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 926 | self.tk.call(self._w, 'header', 'delete', col) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 927 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 928 | def header_size(self, col): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 929 | return self.tk.call(self._w, 'header', 'size', col) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 930 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 931 | def hide_entry(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 932 | self.tk.call(self._w, 'hide', 'entry', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 933 | |
| 934 | def indicator_create(self, entry, cnf={}, **kw): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 935 | apply(self.tk.call, |
| 936 | (self._w, 'indicator', 'create', entry) + self._options(cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 937 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 938 | def indicator_configure(self, entry, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 939 | if cnf is None: |
| 940 | return _lst2dict( |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 941 | self.tk.split( |
| 942 | self.tk.call(self._w, 'indicator', 'configure', entry))) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 943 | apply(self.tk.call, |
| 944 | (self._w, 'indicator', 'configure', entry) + self._options(cnf, kw)) |
| 945 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 946 | def indicator_cget(self, entry, opt): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 947 | return self.tk.call(self._w, 'indicator', 'cget', entry, opt) |
| 948 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 949 | def indicator_exists(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 950 | return self.tk.call (self._w, 'indicator', 'exists', entry) |
| 951 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 952 | def indicator_delete(self, entry): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 953 | self.tk.call(self._w, 'indicator', 'delete', entry) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 954 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 955 | def indicator_size(self, entry): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 956 | return self.tk.call(self._w, 'indicator', 'size', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 957 | |
| 958 | def info_anchor(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 959 | return self.tk.call(self._w, 'info', 'anchor') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 960 | |
| 961 | def info_children(self, entry=None): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 962 | c = self.tk.call(self._w, 'info', 'children', entry) |
| 963 | return self.tk.splitlist(c) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 964 | |
| 965 | def info_data(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 966 | return self.tk.call(self._w, 'info', 'data', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 967 | |
| 968 | def info_exists(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 969 | return self.tk.call(self._w, 'info', 'exists', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 970 | |
| 971 | def info_hidden(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 972 | return self.tk.call(self._w, 'info', 'hidden', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 973 | |
| 974 | def info_next(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 975 | return self.tk.call(self._w, 'info', 'next', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 976 | |
| 977 | def info_parent(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 978 | return self.tk.call(self._w, 'info', 'parent', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 979 | |
| 980 | def info_prev(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 981 | return self.tk.call(self._w, 'info', 'prev', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 982 | |
| 983 | def info_selection(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 984 | c = self.tk.call(self._w, 'info', 'selection') |
| 985 | return self.tk.splitlist(c) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 986 | |
Martin v. Löwis | 3e04848 | 2001-10-09 11:50:55 +0000 | [diff] [blame] | 987 | def item_cget(self, entry, col, opt): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 988 | return self.tk.call(self._w, 'item', 'cget', entry, col, opt) |
| 989 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 990 | def item_configure(self, entry, col, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 991 | if cnf is None: |
| 992 | return _lst2dict( |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 993 | self.tk.split( |
| 994 | self.tk.call(self._w, 'item', 'configure', entry, col))) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 995 | apply(self.tk.call, (self._w, 'item', 'configure', entry, col) + |
| 996 | self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 997 | |
| 998 | def item_create(self, entry, col, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 999 | apply(self.tk.call, |
| 1000 | (self._w, 'item', 'create', entry, col) + self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1001 | |
| 1002 | def item_exists(self, entry, col): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1003 | return self.tk.call(self._w, 'item', 'exists', entry, col) |
| 1004 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1005 | def item_delete(self, entry, col): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1006 | self.tk.call(self._w, 'item', 'delete', entry, col) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1007 | |
| 1008 | def nearest(self, y): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1009 | return self.tk.call(self._w, 'nearest', y) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1010 | |
| 1011 | def see(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1012 | self.tk.call(self._w, 'see', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1013 | |
| 1014 | def selection_clear(self, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1015 | apply(self.tk.call, |
| 1016 | (self._w, 'selection', 'clear') + self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1017 | |
| 1018 | def selection_includes(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1019 | return self.tk.call(self._w, 'selection', 'includes', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1020 | |
| 1021 | def selection_set(self, first, last=None): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1022 | self.tk.call(self._w, 'selection', 'set', first, last) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1023 | |
| 1024 | def show_entry(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1025 | return self.tk.call(self._w, 'show', 'entry', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1026 | |
| 1027 | def xview(self, *args): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1028 | apply(self.tk.call, (self._w, 'xview') + args) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1029 | |
| 1030 | def yview(self, *args): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1031 | apply(self.tk.call, (self._w, 'yview') + args) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1032 | |
| 1033 | class InputOnly(TixWidget): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1034 | """InputOnly - Invisible widget. Unix only. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1035 | |
| 1036 | Subwidgets - None""" |
| 1037 | |
| 1038 | def __init__ (self,master=None,cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1039 | TixWidget.__init__(self, master, 'tixInputOnly', None, cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1040 | |
| 1041 | class LabelEntry(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1042 | """LabelEntry - Entry field with label. Packages an entry widget |
| 1043 | and a label into one mega widget. It can beused be used to simplify |
| 1044 | the creation of ``entry-form'' type of interface. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1045 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1046 | Subwidgets Class |
| 1047 | ---------- ----- |
| 1048 | label Label |
| 1049 | entry Entry""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1050 | |
| 1051 | def __init__ (self,master=None,cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1052 | TixWidget.__init__(self, master, 'tixLabelEntry', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1053 | ['labelside','options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1054 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 1055 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1056 | |
| 1057 | class LabelFrame(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1058 | """LabelFrame - Labelled Frame container. Packages a frame widget |
| 1059 | and a label into one mega widget. To create widgets inside a |
| 1060 | LabelFrame widget, one creates the new widgets relative to the |
| 1061 | frame subwidget and manage them inside the frame subwidget. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1062 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1063 | Subwidgets Class |
| 1064 | ---------- ----- |
| 1065 | label Label |
| 1066 | frame Frame""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1067 | |
| 1068 | def __init__ (self,master=None,cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1069 | TixWidget.__init__(self, master, 'tixLabelFrame', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1070 | ['labelside','options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1071 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 1072 | self.subwidget_list['frame'] = _dummyFrame(self, 'frame') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1073 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1074 | |
| 1075 | class ListNoteBook(TixWidget): |
| 1076 | """A ListNoteBook widget is very similar to the TixNoteBook widget: |
| 1077 | it can be used to display many windows in a limited space using a |
| 1078 | notebook metaphor. The notebook is divided into a stack of pages |
| 1079 | (windows). At one time only one of these pages can be shown. |
| 1080 | The user can navigate through these pages by |
| 1081 | choosing the name of the desired page in the hlist subwidget.""" |
| 1082 | |
| 1083 | def __init__(self, master, cnf={}, **kw): |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1084 | TixWidget.__init__(self, master, 'tixListNoteBook', ['options'], cnf, kw) |
| 1085 | # Is this necessary? It's not an exposed subwidget in Tix. |
| 1086 | self.subwidget_list['pane'] = _dummyPanedWindow(self, 'pane', |
| 1087 | destroy_physically=0) |
| 1088 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1089 | self.subwidget_list['shlist'] = _dummyScrolledHList(self, 'shlist') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1090 | |
| 1091 | def add(self, name, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1092 | apply(self.tk.call, |
| 1093 | (self._w, 'add', name) + self._options(cnf, kw)) |
| 1094 | self.subwidget_list[name] = TixSubWidget(self, name) |
| 1095 | return self.subwidget_list[name] |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1096 | |
Martin v. Löwis | 01824bf | 2002-09-19 08:12:55 +0000 | [diff] [blame] | 1097 | def page(self, name): |
| 1098 | return self.subwidget(name) |
| 1099 | |
| 1100 | def pages(self): |
| 1101 | # Can't call subwidgets_all directly because we don't want .nbframe |
| 1102 | names = self.tk.split(self.tk.call(self._w, 'pages')) |
| 1103 | ret = [] |
| 1104 | for x in names: |
| 1105 | ret.append(self.subwidget(x)) |
| 1106 | return ret |
| 1107 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1108 | def raise_page(self, name): # raise is a python keyword |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1109 | self.tk.call(self._w, 'raise', name) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1110 | |
| 1111 | class Meter(TixWidget): |
| 1112 | """The Meter widget can be used to show the progress of a background |
| 1113 | job which may take a long time to execute. |
| 1114 | """ |
| 1115 | |
| 1116 | def __init__(self, master=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1117 | TixWidget.__init__(self, master, 'tixMeter', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1118 | ['options'], cnf, kw) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1119 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1120 | class NoteBook(TixWidget): |
| 1121 | """NoteBook - Multi-page container widget (tabbed notebook metaphor). |
| 1122 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1123 | Subwidgets Class |
| 1124 | ---------- ----- |
| 1125 | nbframe NoteBookFrame |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1126 | <pages> page widgets added dynamically with the add method""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1127 | |
| 1128 | def __init__ (self,master=None,cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1129 | TixWidget.__init__(self,master,'tixNoteBook', ['options'], cnf, kw) |
| 1130 | self.subwidget_list['nbframe'] = TixSubWidget(self, 'nbframe', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1131 | destroy_physically=0) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1132 | |
| 1133 | def add(self, name, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1134 | apply(self.tk.call, |
| 1135 | (self._w, 'add', name) + self._options(cnf, kw)) |
| 1136 | self.subwidget_list[name] = TixSubWidget(self, name) |
| 1137 | return self.subwidget_list[name] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1138 | |
| 1139 | def delete(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1140 | self.tk.call(self._w, 'delete', name) |
| 1141 | self.subwidget_list[name].destroy() |
| 1142 | del self.subwidget_list[name] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1143 | |
| 1144 | def page(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1145 | return self.subwidget(name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1146 | |
| 1147 | def pages(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1148 | # Can't call subwidgets_all directly because we don't want .nbframe |
| 1149 | names = self.tk.split(self.tk.call(self._w, 'pages')) |
| 1150 | ret = [] |
| 1151 | for x in names: |
| 1152 | ret.append(self.subwidget(x)) |
| 1153 | return ret |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1154 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1155 | def raise_page(self, name): # raise is a python keyword |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1156 | self.tk.call(self._w, 'raise', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1157 | |
| 1158 | def raised(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1159 | return self.tk.call(self._w, 'raised') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1160 | |
| 1161 | class NoteBookFrame(TixWidget): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1162 | # FIXME: This is dangerous to expose to be called on its own. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1163 | pass |
| 1164 | |
| 1165 | class OptionMenu(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1166 | """OptionMenu - creates a menu button of options. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1167 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1168 | Subwidget Class |
| 1169 | --------- ----- |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1170 | menubutton Menubutton |
| 1171 | menu Menu""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1172 | |
| 1173 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1174 | TixWidget.__init__(self, master, 'tixOptionMenu', ['options'], cnf, kw) |
| 1175 | self.subwidget_list['menubutton'] = _dummyMenubutton(self, 'menubutton') |
| 1176 | self.subwidget_list['menu'] = _dummyMenu(self, 'menu') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1177 | |
| 1178 | def add_command(self, name, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1179 | apply(self.tk.call, |
| 1180 | (self._w, 'add', 'command', name) + self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1181 | |
| 1182 | def add_separator(self, name, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1183 | apply(self.tk.call, |
| 1184 | (self._w, 'add', 'separator', name) + self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1185 | |
| 1186 | def delete(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1187 | self.tk.call(self._w, 'delete', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1188 | |
| 1189 | def disable(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1190 | self.tk.call(self._w, 'disable', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1191 | |
| 1192 | def enable(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1193 | self.tk.call(self._w, 'enable', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1194 | |
| 1195 | class PanedWindow(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1196 | """PanedWindow - Multi-pane container widget |
| 1197 | allows the user to interactively manipulate the sizes of several |
| 1198 | panes. The panes can be arranged either vertically or horizontally.The |
| 1199 | user changes the sizes of the panes by dragging the resize handle |
| 1200 | between two panes. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1201 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1202 | Subwidgets Class |
| 1203 | ---------- ----- |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1204 | <panes> g/p widgets added dynamically with the add method.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1205 | |
| 1206 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1207 | TixWidget.__init__(self, master, 'tixPanedWindow', ['orientation', 'options'], cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1208 | |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1209 | # add delete forget panecget paneconfigure panes setsize |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1210 | def add(self, name, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1211 | apply(self.tk.call, |
| 1212 | (self._w, 'add', name) + self._options(cnf, kw)) |
| 1213 | self.subwidget_list[name] = TixSubWidget(self, name, |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1214 | check_intermediate=0) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1215 | return self.subwidget_list[name] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1216 | |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1217 | def delete(self, name): |
| 1218 | self.tk.call(self._w, 'delete', name) |
| 1219 | self.subwidget_list[name].destroy() |
| 1220 | del self.subwidget_list[name] |
| 1221 | |
| 1222 | def forget(self, name): |
| 1223 | self.tk.call(self._w, 'forget', name) |
| 1224 | |
| 1225 | def panecget(self, entry, opt): |
| 1226 | return self.tk.call(self._w, 'panecget', entry, opt) |
| 1227 | |
| 1228 | def paneconfigure(self, entry, cnf={}, **kw): |
| 1229 | if cnf is None: |
| 1230 | return _lst2dict( |
| 1231 | self.tk.split( |
| 1232 | self.tk.call(self._w, 'paneconfigure', entry))) |
| 1233 | apply(self.tk.call, |
| 1234 | (self._w, 'paneconfigure', entry) + self._options(cnf, kw)) |
| 1235 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1236 | def panes(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1237 | names = self.tk.call(self._w, 'panes') |
| 1238 | ret = [] |
| 1239 | for x in names: |
| 1240 | ret.append(self.subwidget(x)) |
| 1241 | return ret |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1242 | |
| 1243 | class PopupMenu(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1244 | """PopupMenu widget can be used as a replacement of the tk_popup command. |
| 1245 | The advantage of the Tix PopupMenu widget is it requires less application |
| 1246 | code to manipulate. |
| 1247 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1248 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1249 | Subwidgets Class |
| 1250 | ---------- ----- |
| 1251 | menubutton Menubutton |
| 1252 | menu Menu""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1253 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1254 | # FIXME: It should inherit -superclass tixShell |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1255 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1256 | TixWidget.__init__(self, master, 'tixPopupMenu', ['options'], cnf, kw) |
| 1257 | self.subwidget_list['menubutton'] = _dummyMenubutton(self, 'menubutton') |
| 1258 | self.subwidget_list['menu'] = _dummyMenu(self, 'menu') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1259 | |
| 1260 | def bind_widget(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1261 | self.tk.call(self._w, 'bind', widget._w) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1262 | |
| 1263 | def unbind_widget(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1264 | self.tk.call(self._w, 'unbind', widget._w) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1265 | |
| 1266 | def post_widget(self, widget, x, y): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1267 | self.tk.call(self._w, 'post', widget._w, x, y) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1268 | |
| 1269 | class ResizeHandle(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1270 | """Internal widget to draw resize handles on Scrolled widgets.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1271 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1272 | # There seems to be a Tix bug rejecting the configure method |
| 1273 | # Let's try making the flags -static |
| 1274 | flags = ['options', 'command', 'cursorfg', 'cursorbg', |
| 1275 | 'handlesize', 'hintcolor', 'hintwidth', |
| 1276 | 'x', 'y'] |
| 1277 | # In fact, x y height width are configurable |
| 1278 | TixWidget.__init__(self, master, 'tixResizeHandle', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1279 | flags, cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1280 | |
| 1281 | def attach_widget(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1282 | self.tk.call(self._w, 'attachwidget', widget._w) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1283 | |
Martin v. Löwis | 652e191 | 2001-11-25 14:50:56 +0000 | [diff] [blame] | 1284 | def detach_widget(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1285 | self.tk.call(self._w, 'detachwidget', widget._w) |
Martin v. Löwis | 652e191 | 2001-11-25 14:50:56 +0000 | [diff] [blame] | 1286 | |
| 1287 | def hide(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1288 | self.tk.call(self._w, 'hide', widget._w) |
Martin v. Löwis | 652e191 | 2001-11-25 14:50:56 +0000 | [diff] [blame] | 1289 | |
| 1290 | def show(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1291 | self.tk.call(self._w, 'show', widget._w) |
Martin v. Löwis | 652e191 | 2001-11-25 14:50:56 +0000 | [diff] [blame] | 1292 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1293 | class ScrolledHList(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1294 | """ScrolledHList - HList with automatic scrollbars.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1295 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1296 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1297 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1298 | TixWidget.__init__(self, master, 'tixScrolledHList', ['options'], |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1299 | cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1300 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1301 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1302 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1303 | |
| 1304 | class ScrolledListBox(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1305 | """ScrolledListBox - Listbox with automatic scrollbars.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1306 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1307 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1308 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1309 | TixWidget.__init__(self, master, 'tixScrolledListBox', ['options'], cnf, kw) |
| 1310 | self.subwidget_list['listbox'] = _dummyListbox(self, 'listbox') |
| 1311 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1312 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1313 | |
| 1314 | class ScrolledText(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1315 | """ScrolledText - Text with automatic scrollbars.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1316 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1317 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1318 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1319 | TixWidget.__init__(self, master, 'tixScrolledText', ['options'], cnf, kw) |
| 1320 | self.subwidget_list['text'] = _dummyText(self, 'text') |
| 1321 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1322 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1323 | |
| 1324 | class ScrolledTList(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1325 | """ScrolledTList - TList with automatic scrollbars.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1326 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1327 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1328 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1329 | TixWidget.__init__(self, master, 'tixScrolledTList', ['options'], |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1330 | cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1331 | self.subwidget_list['tlist'] = _dummyTList(self, 'tlist') |
| 1332 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1333 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1334 | |
| 1335 | class ScrolledWindow(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1336 | """ScrolledWindow - Window with automatic scrollbars.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1337 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1338 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1339 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1340 | TixWidget.__init__(self, master, 'tixScrolledWindow', ['options'], cnf, kw) |
| 1341 | self.subwidget_list['window'] = _dummyFrame(self, 'window') |
| 1342 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1343 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1344 | |
| 1345 | class Select(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1346 | """Select - Container of button subwidgets. It can be used to provide |
| 1347 | radio-box or check-box style of selection options for the user. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1348 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1349 | Subwidgets are buttons added dynamically using the add method.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1350 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1351 | # FIXME: It should inherit -superclass tixLabelWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1352 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1353 | TixWidget.__init__(self, master, 'tixSelect', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1354 | ['allowzero', 'radio', 'orientation', 'labelside', |
| 1355 | 'options'], |
| 1356 | cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1357 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1358 | |
| 1359 | def add(self, name, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1360 | apply(self.tk.call, |
| 1361 | (self._w, 'add', name) + self._options(cnf, kw)) |
| 1362 | self.subwidget_list[name] = _dummyButton(self, name) |
| 1363 | return self.subwidget_list[name] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1364 | |
| 1365 | def invoke(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1366 | self.tk.call(self._w, 'invoke', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1367 | |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1368 | class Shell(TixWidget): |
| 1369 | """Toplevel window. |
| 1370 | |
| 1371 | Subwidgets - None""" |
| 1372 | |
| 1373 | def __init__ (self,master=None,cnf={}, **kw): |
| 1374 | TixWidget.__init__(self, master, 'tixShell', ['options', 'title'], cnf, kw) |
| 1375 | |
| 1376 | class DialogShell(TixWidget): |
| 1377 | """Toplevel window, with popup popdown and center methods. |
| 1378 | It tells the window manager that it is a dialog window and should be |
| 1379 | treated specially. The exact treatment depends on the treatment of |
| 1380 | the window manager. |
| 1381 | |
| 1382 | Subwidgets - None""" |
| 1383 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1384 | # FIXME: It should inherit from Shell |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1385 | def __init__ (self,master=None,cnf={}, **kw): |
| 1386 | TixWidget.__init__(self, master, |
| 1387 | 'tixDialogShell', |
| 1388 | ['options', 'title', 'mapped', |
| 1389 | 'minheight', 'minwidth', |
| 1390 | 'parent', 'transient'], cnf, kw) |
| 1391 | |
| 1392 | def popdown(self): |
| 1393 | self.tk.call(self._w, 'popdown') |
| 1394 | |
| 1395 | def popup(self): |
| 1396 | self.tk.call(self._w, 'popup') |
| 1397 | |
| 1398 | def center(self): |
| 1399 | self.tk.call(self._w, 'center') |
| 1400 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1401 | class StdButtonBox(TixWidget): |
| 1402 | """StdButtonBox - Standard Button Box (OK, Apply, Cancel and Help) """ |
| 1403 | |
| 1404 | def __init__(self, master=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1405 | TixWidget.__init__(self, master, 'tixStdButtonBox', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1406 | ['orientation', 'options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1407 | self.subwidget_list['ok'] = _dummyButton(self, 'ok') |
| 1408 | self.subwidget_list['apply'] = _dummyButton(self, 'apply') |
| 1409 | self.subwidget_list['cancel'] = _dummyButton(self, 'cancel') |
| 1410 | self.subwidget_list['help'] = _dummyButton(self, 'help') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1411 | |
| 1412 | def invoke(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1413 | if self.subwidget_list.has_key(name): |
| 1414 | self.tk.call(self._w, 'invoke', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1415 | |
| 1416 | class TList(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1417 | """TList - Hierarchy display widget which can be |
| 1418 | used to display data in a tabular format. The list entries of a TList |
| 1419 | widget are similar to the entries in the Tk listbox widget. The main |
| 1420 | differences are (1) the TList widget can display the list entries in a |
| 1421 | two dimensional format and (2) you can use graphical images as well as |
| 1422 | multiple colors and fonts for the list entries. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1423 | |
| 1424 | Subwidgets - None""" |
| 1425 | |
| 1426 | def __init__ (self,master=None,cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1427 | TixWidget.__init__(self, master, 'tixTList', ['options'], cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1428 | |
| 1429 | def active_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1430 | self.tk.call(self._w, 'active', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1431 | |
| 1432 | def active_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1433 | self.tk.call(self._w, 'active', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1434 | |
| 1435 | def anchor_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1436 | self.tk.call(self._w, 'anchor', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1437 | |
| 1438 | def anchor_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1439 | self.tk.call(self._w, 'anchor', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1440 | |
| 1441 | def delete(self, from_, to=None): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1442 | self.tk.call(self._w, 'delete', from_, to) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1443 | |
| 1444 | def dragsite_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1445 | self.tk.call(self._w, 'dragsite', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1446 | |
| 1447 | def dragsite_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1448 | self.tk.call(self._w, 'dragsite', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1449 | |
| 1450 | def dropsite_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1451 | self.tk.call(self._w, 'dropsite', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1452 | |
| 1453 | def dropsite_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1454 | self.tk.call(self._w, 'dropsite', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1455 | |
| 1456 | def insert(self, index, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1457 | apply(self.tk.call, |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1458 | (self._w, 'insert', index) + self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1459 | |
| 1460 | def info_active(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1461 | return self.tk.call(self._w, 'info', 'active') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1462 | |
| 1463 | def info_anchor(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1464 | return self.tk.call(self._w, 'info', 'anchor') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1465 | |
| 1466 | def info_down(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1467 | return self.tk.call(self._w, 'info', 'down', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1468 | |
| 1469 | def info_left(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1470 | return self.tk.call(self._w, 'info', 'left', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1471 | |
| 1472 | def info_right(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1473 | return self.tk.call(self._w, 'info', 'right', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1474 | |
| 1475 | def info_selection(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1476 | c = self.tk.call(self._w, 'info', 'selection') |
| 1477 | return self.tk.splitlist(c) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1478 | |
| 1479 | def info_size(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1480 | return self.tk.call(self._w, 'info', 'size') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1481 | |
| 1482 | def info_up(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1483 | return self.tk.call(self._w, 'info', 'up', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1484 | |
| 1485 | def nearest(self, x, y): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1486 | return self.tk.call(self._w, 'nearest', x, y) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1487 | |
| 1488 | def see(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1489 | self.tk.call(self._w, 'see', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1490 | |
| 1491 | def selection_clear(self, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1492 | apply(self.tk.call, |
| 1493 | (self._w, 'selection', 'clear') + self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1494 | |
| 1495 | def selection_includes(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1496 | return self.tk.call(self._w, 'selection', 'includes', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1497 | |
| 1498 | def selection_set(self, first, last=None): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1499 | self.tk.call(self._w, 'selection', 'set', first, last) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1500 | |
| 1501 | def xview(self, *args): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1502 | apply(self.tk.call, (self._w, 'xview') + args) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1503 | |
| 1504 | def yview(self, *args): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1505 | apply(self.tk.call, (self._w, 'yview') + args) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1506 | |
| 1507 | class Tree(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1508 | """Tree - The tixTree widget can be used to display hierachical |
| 1509 | data in a tree form. The user can adjust |
| 1510 | the view of the tree by opening or closing parts of the tree.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1511 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1512 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1513 | def __init__(self, master=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1514 | TixWidget.__init__(self, master, 'tixTree', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1515 | ['options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1516 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1517 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1518 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1519 | |
| 1520 | def autosetmode(self): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1521 | '''This command calls the setmode method for all the entries in this |
| 1522 | Tree widget: if an entry has no child entries, its mode is set to |
| 1523 | none. Otherwise, if the entry has any hidden child entries, its mode is |
| 1524 | set to open; otherwise its mode is set to close.''' |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1525 | self.tk.call(self._w, 'autosetmode') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1526 | |
| 1527 | def close(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1528 | '''Close the entry given by entryPath if its mode is close.''' |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1529 | self.tk.call(self._w, 'close', entrypath) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1530 | |
| 1531 | def getmode(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1532 | '''Returns the current mode of the entry given by entryPath.''' |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1533 | return self.tk.call(self._w, 'getmode', entrypath) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1534 | |
| 1535 | def open(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1536 | '''Open the entry given by entryPath if its mode is open.''' |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1537 | self.tk.call(self._w, 'open', entrypath) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1538 | |
| 1539 | def setmode(self, entrypath, mode='none'): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1540 | '''This command is used to indicate whether the entry given by |
| 1541 | entryPath has children entries and whether the children are visible. mode |
| 1542 | must be one of open, close or none. If mode is set to open, a (+) |
| 1543 | indicator is drawn next the the entry. If mode is set to close, a (-) |
| 1544 | indicator is drawn next the the entry. If mode is set to none, no |
| 1545 | indicators will be drawn for this entry. The default mode is none. The |
| 1546 | open mode indicates the entry has hidden children and this entry can be |
| 1547 | opened by the user. The close mode indicates that all the children of the |
| 1548 | entry are now visible and the entry can be closed by the user.''' |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1549 | self.tk.call(self._w, 'setmode', entrypath, mode) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1550 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1551 | |
| 1552 | # Could try subclassing Tree for CheckList - would need another arg to init |
| 1553 | class CheckList(TixWidget): |
| 1554 | """The CheckList widget |
| 1555 | displays a list of items to be selected by the user. CheckList acts |
| 1556 | similarly to the Tk checkbutton or radiobutton widgets, except it is |
| 1557 | capable of handling many more items than checkbuttons or radiobuttons. |
| 1558 | """ |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1559 | # FIXME: It should inherit -superclass tixTree |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1560 | def __init__(self, master=None, cnf={}, **kw): |
| 1561 | TixWidget.__init__(self, master, 'tixCheckList', |
| 1562 | ['options'], cnf, kw) |
| 1563 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1564 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1565 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1566 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1567 | def autosetmode(self): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1568 | '''This command calls the setmode method for all the entries in this |
| 1569 | Tree widget: if an entry has no child entries, its mode is set to |
| 1570 | none. Otherwise, if the entry has any hidden child entries, its mode is |
| 1571 | set to open; otherwise its mode is set to close.''' |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1572 | self.tk.call(self._w, 'autosetmode') |
| 1573 | |
| 1574 | def close(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1575 | '''Close the entry given by entryPath if its mode is close.''' |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1576 | self.tk.call(self._w, 'close', entrypath) |
| 1577 | |
| 1578 | def getmode(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1579 | '''Returns the current mode of the entry given by entryPath.''' |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1580 | return self.tk.call(self._w, 'getmode', entrypath) |
| 1581 | |
| 1582 | def open(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1583 | '''Open the entry given by entryPath if its mode is open.''' |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1584 | self.tk.call(self._w, 'open', entrypath) |
| 1585 | |
| 1586 | def getselection(self, mode='on'): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1587 | '''Returns a list of items whose status matches status. If status is |
| 1588 | not specified, the list of items in the "on" status will be returned. |
| 1589 | Mode can be on, off, default''' |
| 1590 | c = self.tk.split(self.tk.call(self._w, 'getselection', mode)) |
| 1591 | return self.tk.splitlist(c) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1592 | |
| 1593 | def getstatus(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1594 | '''Returns the current status of entryPath.''' |
| 1595 | return self.tk.call(self._w, 'getstatus', entrypath) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1596 | |
| 1597 | def setstatus(self, entrypath, mode='on'): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1598 | '''Sets the status of entryPath to be status. A bitmap will be |
| 1599 | displayed next to the entry its status is on, off or default.''' |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1600 | self.tk.call(self._w, 'setstatus', entrypath, mode) |
| 1601 | |
| 1602 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1603 | ########################################################################### |
| 1604 | ### The subclassing below is used to instantiate the subwidgets in each ### |
| 1605 | ### mega widget. This allows us to access their methods directly. ### |
| 1606 | ########################################################################### |
| 1607 | |
| 1608 | class _dummyButton(Button, TixSubWidget): |
| 1609 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1610 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1611 | |
| 1612 | class _dummyCheckbutton(Checkbutton, TixSubWidget): |
| 1613 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1614 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1615 | |
| 1616 | class _dummyEntry(Entry, TixSubWidget): |
| 1617 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1618 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1619 | |
| 1620 | class _dummyFrame(Frame, TixSubWidget): |
| 1621 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1622 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1623 | |
| 1624 | class _dummyLabel(Label, TixSubWidget): |
| 1625 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1626 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1627 | |
| 1628 | class _dummyListbox(Listbox, TixSubWidget): |
| 1629 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1630 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1631 | |
| 1632 | class _dummyMenu(Menu, TixSubWidget): |
| 1633 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1634 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1635 | |
| 1636 | class _dummyMenubutton(Menubutton, TixSubWidget): |
| 1637 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1638 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1639 | |
| 1640 | class _dummyScrollbar(Scrollbar, TixSubWidget): |
| 1641 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1642 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1643 | |
| 1644 | class _dummyText(Text, TixSubWidget): |
| 1645 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1646 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1647 | |
| 1648 | class _dummyScrolledListBox(ScrolledListBox, TixSubWidget): |
| 1649 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1650 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1651 | self.subwidget_list['listbox'] = _dummyListbox(self, 'listbox') |
| 1652 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1653 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1654 | |
| 1655 | class _dummyHList(HList, TixSubWidget): |
| 1656 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1657 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1658 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1659 | class _dummyScrolledHList(ScrolledHList, TixSubWidget): |
| 1660 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1661 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1662 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1663 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1664 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1665 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1666 | class _dummyTList(TList, TixSubWidget): |
| 1667 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1668 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1669 | |
| 1670 | class _dummyComboBox(ComboBox, TixSubWidget): |
| 1671 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1672 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1673 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
| 1674 | self.subwidget_list['arrow'] = _dummyButton(self, 'arrow') |
| 1675 | # I'm not sure about this destroy_physically=0 in all cases; |
| 1676 | # it may depend on if -dropdown is true; I've added as a trial |
| 1677 | self.subwidget_list['slistbox'] = _dummyScrolledListBox(self, |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1678 | 'slistbox', |
| 1679 | destroy_physically=0) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1680 | self.subwidget_list['listbox'] = _dummyListbox(self, 'listbox', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1681 | destroy_physically=0) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1682 | |
| 1683 | class _dummyDirList(DirList, TixSubWidget): |
| 1684 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1685 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1686 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1687 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1688 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1689 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1690 | class _dummyDirSelectBox(DirSelectBox, TixSubWidget): |
| 1691 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1692 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1693 | self.subwidget_list['dirlist'] = _dummyDirList(self, 'dirlist') |
| 1694 | self.subwidget_list['dircbx'] = _dummyFileComboBox(self, 'dircbx') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1695 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1696 | class _dummyExFileSelectBox(ExFileSelectBox, TixSubWidget): |
| 1697 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1698 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1699 | self.subwidget_list['cancel'] = _dummyButton(self, 'cancel') |
| 1700 | self.subwidget_list['ok'] = _dummyButton(self, 'ok') |
| 1701 | self.subwidget_list['hidden'] = _dummyCheckbutton(self, 'hidden') |
| 1702 | self.subwidget_list['types'] = _dummyComboBox(self, 'types') |
| 1703 | self.subwidget_list['dir'] = _dummyComboBox(self, 'dir') |
| 1704 | self.subwidget_list['dirlist'] = _dummyScrolledListBox(self, 'dirlist') |
| 1705 | self.subwidget_list['file'] = _dummyComboBox(self, 'file') |
| 1706 | self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1707 | |
| 1708 | class _dummyFileSelectBox(FileSelectBox, TixSubWidget): |
| 1709 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1710 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1711 | self.subwidget_list['dirlist'] = _dummyScrolledListBox(self, 'dirlist') |
| 1712 | self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist') |
| 1713 | self.subwidget_list['filter'] = _dummyComboBox(self, 'filter') |
| 1714 | self.subwidget_list['selection'] = _dummyComboBox(self, 'selection') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1715 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1716 | class _dummyFileComboBox(ComboBox, TixSubWidget): |
| 1717 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1718 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1719 | self.subwidget_list['dircbx'] = _dummyComboBox(self, 'dircbx') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1720 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1721 | class _dummyStdButtonBox(StdButtonBox, TixSubWidget): |
| 1722 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1723 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1724 | self.subwidget_list['ok'] = _dummyButton(self, 'ok') |
| 1725 | self.subwidget_list['apply'] = _dummyButton(self, 'apply') |
| 1726 | self.subwidget_list['cancel'] = _dummyButton(self, 'cancel') |
| 1727 | self.subwidget_list['help'] = _dummyButton(self, 'help') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1728 | |
| 1729 | class _dummyNoteBookFrame(NoteBookFrame, TixSubWidget): |
| 1730 | def __init__(self, master, name, destroy_physically=0): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1731 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1732 | |
Martin v. Löwis | 01824bf | 2002-09-19 08:12:55 +0000 | [diff] [blame] | 1733 | class _dummyPanedWindow(PanedWindow, TixSubWidget): |
| 1734 | def __init__(self, master, name, destroy_physically=1): |
| 1735 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1736 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1737 | ######################## |
| 1738 | ### Utility Routines ### |
| 1739 | ######################## |
| 1740 | |
| 1741 | # Returns the qualified path name for the widget. Normally used to set |
| 1742 | # default options for subwidgets. See tixwidgets.py |
| 1743 | def OptionName(widget): |
| 1744 | return widget.tk.call('tixOptionName', widget._w) |
| 1745 | |
| 1746 | # Called with a dictionary argument of the form |
| 1747 | # {'*.c':'C source files', '*.txt':'Text Files', '*':'All files'} |
| 1748 | # returns a string which can be used to configure the fsbox file types |
| 1749 | # in an ExFileSelectBox. i.e., |
| 1750 | # '{{*} {* - All files}} {{*.c} {*.c - C source files}} {{*.txt} {*.txt - Text Files}}' |
| 1751 | def FileTypeList(dict): |
| 1752 | s = '' |
| 1753 | for type in dict.keys(): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1754 | s = s + '{{' + type + '} {' + type + ' - ' + dict[type] + '}} ' |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1755 | return s |
| 1756 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1757 | # Still to be done: |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1758 | # tixIconView |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1759 | class CObjView(TixWidget): |
| 1760 | """This file implements the Canvas Object View widget. This is a base |
| 1761 | class of IconView. It implements automatic placement/adjustment of the |
| 1762 | scrollbars according to the canvas objects inside the canvas subwidget. |
| 1763 | The scrollbars are adjusted so that the canvas is just large enough |
| 1764 | to see all the objects. |
| 1765 | """ |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1766 | # FIXME: It should inherit -superclass tixScrolledWidget |
| 1767 | pass |
| 1768 | |
| 1769 | class ScrolledGrid(TixWidget): |
| 1770 | '''Scrolled Grid widgets''' |
| 1771 | |
| 1772 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1773 | pass |