Guido van Rossum | d77d699 | 2007-07-16 23:10:57 +0000 | [diff] [blame] | 1 | # -*-mode: python; fill-column: 75; tab-width: 8 -*- |
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 | |
Georg Brandl | 14fc427 | 2008-05-17 18:39:55 +0000 | [diff] [blame] | 29 | from tkinter import * |
| 30 | from tkinter import _flatten, _cnfmerge, _default_root |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 31 | |
| 32 | # WARNING - TkVersion is a limited precision floating point number |
| 33 | if TkVersion < 3.999: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 34 | raise ImportError("This version of Tix.py requires Tk 4.0 or higher") |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 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. |
Georg Brandl | 14fc427 | 2008-05-17 18:39:55 +0000 | [diff] [blame] | 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 | |
Georg Brandl | 14fc427 | 2008-05-17 18:39:55 +0000 | [diff] [blame] | 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'): |
Georg Brandl | 14fc427 | 2008-05-17 18:39:55 +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 |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 206 | # If it's static, tcl/tix8.1/pkgIndex.tcl should have |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 207 | # 'load {} Tix' |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 208 | # If it's dynamic under Unix, tcl/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 | |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 212 | def destroy(self): |
| 213 | # For safety, remove an delete_window binding before destroy |
| 214 | self.protocol("WM_DELETE_WINDOW", "") |
Georg Brandl | 14fc427 | 2008-05-17 18:39:55 +0000 | [diff] [blame] | 215 | tkinter.Tk.destroy(self) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 216 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 217 | # The Tix 'tixForm' geometry manager |
| 218 | class Form: |
| 219 | """The Tix Form geometry manager |
| 220 | |
| 221 | Widgets can be arranged by specifying attachments to other widgets. |
| 222 | See Tix documentation for complete details""" |
| 223 | |
| 224 | def config(self, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 225 | self.tk.call('tixForm', self._w, *self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 226 | |
| 227 | form = config |
| 228 | |
| 229 | def __setitem__(self, key, value): |
Guido van Rossum | 49fa2bd | 2001-08-13 14:12:35 +0000 | [diff] [blame] | 230 | Form.form(self, {key: value}) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 231 | |
| 232 | def check(self): |
| 233 | return self.tk.call('tixForm', 'check', self._w) |
| 234 | |
| 235 | def forget(self): |
| 236 | self.tk.call('tixForm', 'forget', self._w) |
| 237 | |
| 238 | def grid(self, xsize=0, ysize=0): |
| 239 | if (not xsize) and (not ysize): |
| 240 | x = self.tk.call('tixForm', 'grid', self._w) |
| 241 | y = self.tk.splitlist(x) |
| 242 | z = () |
| 243 | for x in y: |
| 244 | z = z + (self.tk.getint(x),) |
| 245 | return z |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 246 | return self.tk.call('tixForm', 'grid', self._w, xsize, ysize) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 247 | |
| 248 | def info(self, option=None): |
| 249 | if not option: |
| 250 | return self.tk.call('tixForm', 'info', self._w) |
| 251 | if option[0] != '-': |
| 252 | option = '-' + option |
| 253 | return self.tk.call('tixForm', 'info', self._w, option) |
| 254 | |
| 255 | def slaves(self): |
| 256 | return map(self._nametowidget, |
| 257 | self.tk.splitlist( |
| 258 | self.tk.call( |
| 259 | 'tixForm', 'slaves', self._w))) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 260 | |
| 261 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 262 | |
Georg Brandl | 14fc427 | 2008-05-17 18:39:55 +0000 | [diff] [blame] | 263 | tkinter.Widget.__bases__ = tkinter.Widget.__bases__ + (Form,) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 264 | |
Georg Brandl | 14fc427 | 2008-05-17 18:39:55 +0000 | [diff] [blame] | 265 | class TixWidget(tkinter.Widget): |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 266 | """A TixWidget class is used to package all (or most) Tix widgets. |
| 267 | |
| 268 | Widget initialization is extended in two ways: |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 269 | 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] | 270 | the creation command (so called Tix 'static' options). These cannot be |
| 271 | given as a 'config' command later. |
| 272 | 2) It is possible to give the name of an existing TK widget. These are |
| 273 | child widgets created automatically by a Tix mega-widget. The Tk call |
| 274 | to create these widgets is therefore bypassed in TixWidget.__init__ |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 275 | |
| 276 | Both options are for use by subclasses only. |
| 277 | """ |
| 278 | def __init__ (self, master=None, widgetName=None, |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 279 | static_options=None, cnf={}, kw={}): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 280 | # Merge keywords and dictionary arguments |
| 281 | if kw: |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 282 | cnf = _cnfmerge((cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 283 | else: |
| 284 | cnf = _cnfmerge(cnf) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 285 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 286 | # Move static options into extra. static_options must be |
| 287 | # a list of keywords (or None). |
| 288 | extra=() |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 289 | |
| 290 | # 'options' is always a static option |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 291 | if static_options: |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 292 | static_options.append('options') |
| 293 | else: |
| 294 | static_options = ['options'] |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 295 | |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 296 | for k,v in cnf.items()[:]: |
| 297 | if k in static_options: |
| 298 | extra = extra + ('-' + k, v) |
| 299 | del cnf[k] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 300 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 301 | self.widgetName = widgetName |
| 302 | Widget._setup(self, master, cnf) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 303 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 304 | # If widgetName is None, this is a dummy creation call where the |
| 305 | # corresponding Tk widget has already been created by Tix |
| 306 | if widgetName: |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 307 | self.tk.call(widgetName, self._w, *extra) |
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 | # Non-static options - to be done via a 'config' command |
| 310 | if cnf: |
| 311 | Widget.config(self, cnf) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 312 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 313 | # Dictionary to hold subwidget names for easier access. We can't |
| 314 | # use the children list because the public Tix names may not be the |
| 315 | # same as the pathname component |
| 316 | self.subwidget_list = {} |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 317 | |
| 318 | # We set up an attribute access function so that it is possible to |
| 319 | # do w.ok['text'] = 'Hello' rather than w.subwidget('ok')['text'] = 'Hello' |
| 320 | # when w is a StdButtonBox. |
| 321 | # We can even do w.ok.invoke() because w.ok is subclassed from the |
| 322 | # Button class if you go through the proper constructors |
| 323 | def __getattr__(self, name): |
Guido van Rossum | e014a13 | 2006-08-19 16:53:45 +0000 | [diff] [blame] | 324 | if name in self.subwidget_list: |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 325 | return self.subwidget_list[name] |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 326 | raise AttributeError(name) |
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 set_silent(self, value): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 329 | """Set a variable without calling its action routine""" |
| 330 | self.tk.call('tixSetSilent', self._w, value) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 331 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 332 | def subwidget(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 333 | """Return the named subwidget (which must have been created by |
| 334 | the sub-class).""" |
| 335 | n = self._subwidget_name(name) |
| 336 | if not n: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 337 | raise TclError("Subwidget " + name + " not child of " + self._name) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 338 | # Remove header of name and leading dot |
| 339 | n = n[len(self._w)+1:] |
| 340 | return self._nametowidget(n) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 341 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 342 | def subwidgets_all(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 343 | """Return all subwidgets.""" |
| 344 | names = self._subwidget_names() |
| 345 | if not names: |
| 346 | return [] |
| 347 | retlist = [] |
| 348 | for name in names: |
| 349 | name = name[len(self._w)+1:] |
| 350 | try: |
| 351 | retlist.append(self._nametowidget(name)) |
| 352 | except: |
| 353 | # some of the widgets are unknown e.g. border in LabelFrame |
| 354 | pass |
| 355 | return retlist |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 356 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 357 | def _subwidget_name(self,name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 358 | """Get a subwidget name (returns a String, not a Widget !)""" |
| 359 | try: |
| 360 | return self.tk.call(self._w, 'subwidget', name) |
| 361 | except TclError: |
| 362 | return None |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 363 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 364 | def _subwidget_names(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 365 | """Return the name of all subwidgets.""" |
| 366 | try: |
| 367 | x = self.tk.call(self._w, 'subwidgets', '-all') |
| 368 | return self.tk.split(x) |
| 369 | except TclError: |
| 370 | return None |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 371 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 372 | def config_all(self, option, value): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 373 | """Set configuration options for all subwidgets (and self).""" |
| 374 | if option == '': |
| 375 | return |
| 376 | elif not isinstance(option, StringType): |
Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 377 | option = repr(option) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 378 | if not isinstance(value, StringType): |
Walter Dörwald | 70a6b49 | 2004-02-12 17:35:32 +0000 | [diff] [blame] | 379 | value = repr(value) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 380 | names = self._subwidget_names() |
| 381 | for name in names: |
| 382 | self.tk.call(name, 'configure', '-' + option, value) |
Neal Norwitz | 731a986 | 2002-12-10 02:18:49 +0000 | [diff] [blame] | 383 | # These are missing from Tkinter |
| 384 | def image_create(self, imgtype, cnf={}, master=None, **kw): |
| 385 | if not master: |
Georg Brandl | 14fc427 | 2008-05-17 18:39:55 +0000 | [diff] [blame] | 386 | master = tkinter._default_root |
Neal Norwitz | 731a986 | 2002-12-10 02:18:49 +0000 | [diff] [blame] | 387 | if not master: |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 388 | raise RuntimeError('Too early to create image') |
Neal Norwitz | 731a986 | 2002-12-10 02:18:49 +0000 | [diff] [blame] | 389 | if kw and cnf: cnf = _cnfmerge((cnf, kw)) |
| 390 | elif kw: cnf = kw |
| 391 | options = () |
| 392 | for k, v in cnf.items(): |
Guido van Rossum | d59da4b | 2007-05-22 18:11:13 +0000 | [diff] [blame] | 393 | if hasattr(v, '__call__'): |
Neal Norwitz | 731a986 | 2002-12-10 02:18:49 +0000 | [diff] [blame] | 394 | v = self._register(v) |
| 395 | options = options + ('-'+k, v) |
| 396 | return master.tk.call(('image', 'create', imgtype,) + options) |
| 397 | def image_delete(self, imgname): |
| 398 | try: |
| 399 | self.tk.call('image', 'delete', imgname) |
| 400 | except TclError: |
| 401 | # May happen if the root was destroyed |
| 402 | pass |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 403 | |
| 404 | # Subwidgets are child widgets created automatically by mega-widgets. |
| 405 | # In python, we have to create these subwidgets manually to mirror their |
| 406 | # existence in Tk/Tix. |
| 407 | class TixSubWidget(TixWidget): |
| 408 | """Subwidget class. |
| 409 | |
| 410 | This is used to mirror child widgets automatically created |
| 411 | by Tix/Tk as part of a mega-widget in Python (which is not informed |
| 412 | of this)""" |
| 413 | |
| 414 | def __init__(self, master, name, |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 415 | destroy_physically=1, check_intermediate=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 416 | if check_intermediate: |
| 417 | path = master._subwidget_name(name) |
| 418 | try: |
| 419 | path = path[len(master._w)+1:] |
Neal Norwitz | ebb4190 | 2002-05-31 20:51:31 +0000 | [diff] [blame] | 420 | plist = path.split('.') |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 421 | except: |
| 422 | plist = [] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 423 | |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 424 | if not check_intermediate: |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 425 | # immediate descendant |
| 426 | TixWidget.__init__(self, master, None, None, {'name' : name}) |
| 427 | else: |
| 428 | # Ensure that the intermediate widgets exist |
| 429 | parent = master |
| 430 | for i in range(len(plist) - 1): |
Neal Norwitz | ebb4190 | 2002-05-31 20:51:31 +0000 | [diff] [blame] | 431 | n = '.'.join(plist[:i+1]) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 432 | try: |
| 433 | w = master._nametowidget(n) |
| 434 | parent = w |
| 435 | except KeyError: |
| 436 | # Create the intermediate widget |
| 437 | parent = TixSubWidget(parent, plist[i], |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 438 | destroy_physically=0, |
| 439 | check_intermediate=0) |
Thomas Wouters | 89f507f | 2006-12-13 04:49:30 +0000 | [diff] [blame] | 440 | # The Tk widget name is in plist, not in name |
| 441 | if plist: |
| 442 | name = plist[-1] |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 443 | TixWidget.__init__(self, parent, None, None, {'name' : name}) |
| 444 | self.destroy_physically = destroy_physically |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 445 | |
| 446 | def destroy(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 447 | # For some widgets e.g., a NoteBook, when we call destructors, |
| 448 | # we must be careful not to destroy the frame widget since this |
| 449 | # also destroys the parent NoteBook thus leading to an exception |
| 450 | # in Tkinter when it finally calls Tcl to destroy the NoteBook |
| 451 | for c in self.children.values(): c.destroy() |
Guido van Rossum | e014a13 | 2006-08-19 16:53:45 +0000 | [diff] [blame] | 452 | if self._name in self.master.children: |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 453 | del self.master.children[self._name] |
Guido van Rossum | e014a13 | 2006-08-19 16:53:45 +0000 | [diff] [blame] | 454 | if self._name in self.master.subwidget_list: |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 455 | del self.master.subwidget_list[self._name] |
| 456 | if self.destroy_physically: |
| 457 | # This is bypassed only for a few widgets |
| 458 | self.tk.call('destroy', self._w) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 459 | |
| 460 | |
| 461 | # Useful func. to split Tcl lists and return as a dict. From Tkinter.py |
| 462 | def _lst2dict(lst): |
| 463 | dict = {} |
| 464 | for x in lst: |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 465 | dict[x[0][1:]] = (x[0][1:],) + x[1:] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 466 | return dict |
| 467 | |
| 468 | # Useful class to create a display style - later shared by many items. |
| 469 | # Contributed by Steffen Kremser |
| 470 | class DisplayStyle: |
| 471 | """DisplayStyle - handle configuration options shared by |
| 472 | (multiple) Display Items""" |
| 473 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 474 | def __init__(self, itemtype, cnf={}, **kw): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 475 | master = _default_root # global from Tkinter |
Guido van Rossum | e014a13 | 2006-08-19 16:53:45 +0000 | [diff] [blame] | 476 | if not master and 'refwindow' in cnf: master=cnf['refwindow'] |
| 477 | elif not master and 'refwindow' in kw: master= kw['refwindow'] |
Collin Winter | ce36ad8 | 2007-08-30 01:19:48 +0000 | [diff] [blame] | 478 | elif not master: raise RuntimeError("Too early to create display style: no root window") |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 479 | self.tk = master.tk |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 480 | self.stylename = self.tk.call('tixDisplayStyle', itemtype, |
| 481 | *self._options(cnf,kw) ) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 482 | |
| 483 | def __str__(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 484 | return self.stylename |
| 485 | |
Thomas Wouters | 73e5a5b | 2006-06-08 15:35:45 +0000 | [diff] [blame] | 486 | def _options(self, cnf, kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 487 | if kw and cnf: |
| 488 | cnf = _cnfmerge((cnf, kw)) |
| 489 | elif kw: |
| 490 | cnf = kw |
| 491 | opts = () |
| 492 | for k, v in cnf.items(): |
| 493 | opts = opts + ('-'+k, v) |
| 494 | return opts |
| 495 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 496 | def delete(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 497 | self.tk.call(self.stylename, 'delete') |
| 498 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 499 | def __setitem__(self,key,value): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 500 | self.tk.call(self.stylename, 'configure', '-%s'%key, value) |
| 501 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 502 | def config(self, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 503 | return _lst2dict( |
| 504 | self.tk.split( |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 505 | self.tk.call( |
| 506 | self.stylename, 'configure', *self._options(cnf,kw)))) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 507 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 508 | def __getitem__(self,key): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 509 | return self.tk.call(self.stylename, 'cget', '-%s'%key) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 510 | |
| 511 | |
| 512 | ###################################################### |
| 513 | ### The Tix Widget classes - in alphabetical order ### |
| 514 | ###################################################### |
| 515 | |
| 516 | class Balloon(TixWidget): |
| 517 | """Balloon help widget. |
| 518 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 519 | Subwidget Class |
| 520 | --------- ----- |
Fred Drake | 723293c | 2001-12-13 04:53:07 +0000 | [diff] [blame] | 521 | label Label |
| 522 | message Message""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 523 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 524 | # FIXME: It should inherit -superclass tixShell |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 525 | def __init__(self, master=None, cnf={}, **kw): |
Martin v. Löwis | 652e191 | 2001-11-25 14:50:56 +0000 | [diff] [blame] | 526 | # static seem to be -installcolormap -initwait -statusbar -cursor |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 527 | static = ['options', 'installcolormap', 'initwait', 'statusbar', |
| 528 | 'cursor'] |
| 529 | TixWidget.__init__(self, master, 'tixBalloon', static, cnf, kw) |
| 530 | self.subwidget_list['label'] = _dummyLabel(self, 'label', |
| 531 | destroy_physically=0) |
| 532 | self.subwidget_list['message'] = _dummyLabel(self, 'message', |
| 533 | destroy_physically=0) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 534 | |
| 535 | def bind_widget(self, widget, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 536 | """Bind balloon widget to another. |
| 537 | One balloon widget may be bound to several widgets at the same time""" |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 538 | self.tk.call(self._w, 'bind', widget._w, *self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 539 | |
| 540 | def unbind_widget(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 541 | self.tk.call(self._w, 'unbind', widget._w) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 542 | |
| 543 | class ButtonBox(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 544 | """ButtonBox - A container for pushbuttons. |
| 545 | Subwidgets are the buttons added with the add method. |
| 546 | """ |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 547 | def __init__(self, master=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 548 | TixWidget.__init__(self, master, 'tixButtonBox', |
| 549 | ['orientation', 'options'], cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 550 | |
| 551 | def add(self, name, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 552 | """Add a button with given name to box.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 553 | |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 554 | btn = self.tk.call(self._w, 'add', name, *self._options(cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 555 | self.subwidget_list[name] = _dummyButton(self, name) |
| 556 | return btn |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 557 | |
| 558 | def invoke(self, name): |
Guido van Rossum | e014a13 | 2006-08-19 16:53:45 +0000 | [diff] [blame] | 559 | if name in self.subwidget_list: |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 560 | self.tk.call(self._w, 'invoke', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 561 | |
| 562 | class ComboBox(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 563 | """ComboBox - an Entry field with a dropdown menu. The user can select a |
| 564 | choice by either typing in the entry subwdget or selecting from the |
| 565 | listbox subwidget. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 566 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 567 | Subwidget Class |
| 568 | --------- ----- |
| 569 | entry Entry |
| 570 | arrow Button |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 571 | slistbox ScrolledListBox |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 572 | tick Button |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 573 | cross Button : present if created with the fancy option""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 574 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 575 | # FIXME: It should inherit -superclass tixLabelWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 576 | def __init__ (self, master=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 577 | TixWidget.__init__(self, master, 'tixComboBox', |
| 578 | ['editable', 'dropdown', 'fancy', 'options'], |
| 579 | cnf, kw) |
| 580 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 581 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
| 582 | self.subwidget_list['arrow'] = _dummyButton(self, 'arrow') |
| 583 | self.subwidget_list['slistbox'] = _dummyScrolledListBox(self, |
| 584 | 'slistbox') |
| 585 | try: |
| 586 | self.subwidget_list['tick'] = _dummyButton(self, 'tick') |
| 587 | self.subwidget_list['cross'] = _dummyButton(self, 'cross') |
| 588 | except TypeError: |
| 589 | # unavailable when -fancy not specified |
| 590 | pass |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 591 | |
Neal Norwitz | 731a986 | 2002-12-10 02:18:49 +0000 | [diff] [blame] | 592 | # align |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 593 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 594 | def add_history(self, str): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 595 | self.tk.call(self._w, 'addhistory', str) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 596 | |
| 597 | def append_history(self, str): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 598 | self.tk.call(self._w, 'appendhistory', str) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 599 | |
| 600 | def insert(self, index, str): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 601 | self.tk.call(self._w, 'insert', index, str) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 602 | |
| 603 | def pick(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 604 | self.tk.call(self._w, 'pick', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 605 | |
| 606 | class Control(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 607 | """Control - An entry field with value change arrows. The user can |
| 608 | adjust the value by pressing the two arrow buttons or by entering |
| 609 | the value directly into the entry. The new value will be checked |
| 610 | against the user-defined upper and lower limits. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 611 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 612 | Subwidget Class |
| 613 | --------- ----- |
| 614 | incr Button |
| 615 | decr Button |
| 616 | entry Entry |
| 617 | label Label""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 618 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 619 | # FIXME: It should inherit -superclass tixLabelWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 620 | def __init__ (self, master=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 621 | TixWidget.__init__(self, master, 'tixControl', ['options'], cnf, kw) |
| 622 | self.subwidget_list['incr'] = _dummyButton(self, 'incr') |
| 623 | self.subwidget_list['decr'] = _dummyButton(self, 'decr') |
| 624 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 625 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 626 | |
| 627 | def decrement(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 628 | self.tk.call(self._w, 'decr') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 629 | |
| 630 | def increment(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 631 | self.tk.call(self._w, 'incr') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 632 | |
| 633 | def invoke(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 634 | self.tk.call(self._w, 'invoke') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 635 | |
| 636 | def update(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 637 | self.tk.call(self._w, 'update') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 638 | |
| 639 | class DirList(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 640 | """DirList - displays a list view of a directory, its previous |
| 641 | directories and its sub-directories. The user can choose one of |
| 642 | 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] | 643 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 644 | Subwidget Class |
| 645 | --------- ----- |
| 646 | hlist HList |
| 647 | hsb Scrollbar |
| 648 | vsb Scrollbar""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 649 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 650 | # FIXME: It should inherit -superclass tixScrolledHList |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 651 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 652 | TixWidget.__init__(self, master, 'tixDirList', ['options'], cnf, kw) |
| 653 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 654 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 655 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 656 | |
| 657 | def chdir(self, dir): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 658 | self.tk.call(self._w, 'chdir', dir) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 659 | |
| 660 | class DirTree(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 661 | """DirTree - Directory Listing in a hierarchical view. |
| 662 | Displays a tree view of a directory, its previous directories and its |
| 663 | sub-directories. The user can choose one of the directories displayed |
| 664 | in the list or change to another directory. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 665 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 666 | Subwidget Class |
| 667 | --------- ----- |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 668 | hlist HList |
| 669 | hsb Scrollbar |
| 670 | vsb Scrollbar""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 671 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 672 | # FIXME: It should inherit -superclass tixScrolledHList |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 673 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 674 | TixWidget.__init__(self, master, 'tixDirTree', ['options'], cnf, kw) |
| 675 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 676 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 677 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 678 | |
| 679 | def chdir(self, dir): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 680 | self.tk.call(self._w, 'chdir', dir) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 681 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 682 | class DirSelectBox(TixWidget): |
| 683 | """DirSelectBox - Motif style file select box. |
| 684 | It is generally used for |
| 685 | the user to choose a file. FileSelectBox stores the files mostly |
| 686 | recently selected into a ComboBox widget so that they can be quickly |
| 687 | selected again. |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 688 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 689 | Subwidget Class |
| 690 | --------- ----- |
| 691 | selection ComboBox |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 692 | filter ComboBox |
| 693 | dirlist ScrolledListBox |
| 694 | filelist ScrolledListBox""" |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 695 | |
| 696 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 697 | TixWidget.__init__(self, master, 'tixDirSelectBox', ['options'], cnf, kw) |
| 698 | self.subwidget_list['dirlist'] = _dummyDirList(self, 'dirlist') |
| 699 | self.subwidget_list['dircbx'] = _dummyFileComboBox(self, 'dircbx') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 700 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 701 | class ExFileSelectBox(TixWidget): |
| 702 | """ExFileSelectBox - MS Windows style file select box. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 703 | 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] | 704 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 705 | Subwidget Class |
| 706 | --------- ----- |
| 707 | cancel Button |
| 708 | ok Button |
| 709 | hidden Checkbutton |
| 710 | types ComboBox |
| 711 | dir ComboBox |
| 712 | file ComboBox |
| 713 | dirlist ScrolledListBox |
| 714 | filelist ScrolledListBox""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 715 | |
| 716 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 717 | TixWidget.__init__(self, master, 'tixExFileSelectBox', ['options'], cnf, kw) |
| 718 | self.subwidget_list['cancel'] = _dummyButton(self, 'cancel') |
| 719 | self.subwidget_list['ok'] = _dummyButton(self, 'ok') |
| 720 | self.subwidget_list['hidden'] = _dummyCheckbutton(self, 'hidden') |
| 721 | self.subwidget_list['types'] = _dummyComboBox(self, 'types') |
| 722 | self.subwidget_list['dir'] = _dummyComboBox(self, 'dir') |
| 723 | self.subwidget_list['dirlist'] = _dummyDirList(self, 'dirlist') |
| 724 | self.subwidget_list['file'] = _dummyComboBox(self, 'file') |
| 725 | self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 726 | |
| 727 | def filter(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 728 | self.tk.call(self._w, 'filter') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 729 | |
| 730 | def invoke(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 731 | self.tk.call(self._w, 'invoke') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 732 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 733 | |
| 734 | # Should inherit from a Dialog class |
| 735 | class DirSelectDialog(TixWidget): |
| 736 | """The DirSelectDialog widget presents the directories in the file |
| 737 | system in a dialog window. The user can use this dialog window to |
| 738 | navigate through the file system to select the desired directory. |
| 739 | |
| 740 | Subwidgets Class |
| 741 | ---------- ----- |
| 742 | dirbox DirSelectDialog""" |
| 743 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 744 | # FIXME: It should inherit -superclass tixDialogShell |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 745 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 746 | TixWidget.__init__(self, master, 'tixDirSelectDialog', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 747 | ['options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 748 | self.subwidget_list['dirbox'] = _dummyDirSelectBox(self, 'dirbox') |
| 749 | # cancel and ok buttons are missing |
| 750 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 751 | def popup(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 752 | self.tk.call(self._w, 'popup') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 753 | |
| 754 | def popdown(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 755 | self.tk.call(self._w, 'popdown') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 756 | |
| 757 | |
| 758 | # Should inherit from a Dialog class |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 759 | class ExFileSelectDialog(TixWidget): |
| 760 | """ExFileSelectDialog - MS Windows style file select dialog. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 761 | 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] | 762 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 763 | Subwidgets Class |
| 764 | ---------- ----- |
| 765 | fsbox ExFileSelectBox""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 766 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 767 | # FIXME: It should inherit -superclass tixDialogShell |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 768 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 769 | TixWidget.__init__(self, master, 'tixExFileSelectDialog', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 770 | ['options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 771 | self.subwidget_list['fsbox'] = _dummyExFileSelectBox(self, 'fsbox') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 772 | |
| 773 | def popup(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 774 | self.tk.call(self._w, 'popup') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 775 | |
| 776 | def popdown(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 777 | self.tk.call(self._w, 'popdown') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 778 | |
| 779 | class FileSelectBox(TixWidget): |
| 780 | """ExFileSelectBox - Motif style file select box. |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 781 | It is generally used for |
| 782 | the user to choose a file. FileSelectBox stores the files mostly |
| 783 | recently selected into a ComboBox widget so that they can be quickly |
| 784 | selected again. |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 785 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 786 | Subwidget Class |
| 787 | --------- ----- |
| 788 | selection ComboBox |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 789 | filter ComboBox |
| 790 | dirlist ScrolledListBox |
| 791 | filelist ScrolledListBox""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 792 | |
| 793 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 794 | TixWidget.__init__(self, master, 'tixFileSelectBox', ['options'], cnf, kw) |
| 795 | self.subwidget_list['dirlist'] = _dummyScrolledListBox(self, 'dirlist') |
| 796 | self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist') |
| 797 | self.subwidget_list['filter'] = _dummyComboBox(self, 'filter') |
| 798 | self.subwidget_list['selection'] = _dummyComboBox(self, 'selection') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 799 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 800 | 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] | 801 | self.tk.call(self._w, 'filter') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 802 | |
| 803 | def invoke(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 804 | self.tk.call(self._w, 'invoke') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 805 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 806 | # Should inherit from a Dialog class |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 807 | class FileSelectDialog(TixWidget): |
| 808 | """FileSelectDialog - Motif style file select dialog. |
| 809 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 810 | Subwidgets Class |
| 811 | ---------- ----- |
| 812 | btns StdButtonBox |
| 813 | fsbox FileSelectBox""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 814 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 815 | # FIXME: It should inherit -superclass tixStdDialogShell |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 816 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 817 | TixWidget.__init__(self, master, 'tixFileSelectDialog', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 818 | ['options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 819 | self.subwidget_list['btns'] = _dummyStdButtonBox(self, 'btns') |
| 820 | self.subwidget_list['fsbox'] = _dummyFileSelectBox(self, 'fsbox') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 821 | |
| 822 | def popup(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 823 | self.tk.call(self._w, 'popup') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 824 | |
| 825 | def popdown(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 826 | self.tk.call(self._w, 'popdown') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 827 | |
| 828 | class FileEntry(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 829 | """FileEntry - Entry field with button that invokes a FileSelectDialog. |
| 830 | The user can type in the filename manually. Alternatively, the user can |
| 831 | press the button widget that sits next to the entry, which will bring |
| 832 | up a file selection dialog. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 833 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 834 | Subwidgets Class |
| 835 | ---------- ----- |
| 836 | button Button |
| 837 | entry Entry""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 838 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 839 | # FIXME: It should inherit -superclass tixLabelWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 840 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 841 | TixWidget.__init__(self, master, 'tixFileEntry', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 842 | ['dialogtype', 'options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 843 | self.subwidget_list['button'] = _dummyButton(self, 'button') |
| 844 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 845 | |
| 846 | def invoke(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 847 | self.tk.call(self._w, 'invoke') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 848 | |
| 849 | def file_dialog(self): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 850 | # FIXME: return python object |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 851 | pass |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 852 | |
| 853 | class HList(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 854 | """HList - Hierarchy display widget can be used to display any data |
| 855 | that have a hierarchical structure, for example, file system directory |
| 856 | trees. The list entries are indented and connected by branch lines |
| 857 | according to their places in the hierachy. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 858 | |
| 859 | Subwidgets - None""" |
| 860 | |
| 861 | def __init__ (self,master=None,cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 862 | TixWidget.__init__(self, master, 'tixHList', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 863 | ['columns', 'options'], cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 864 | |
| 865 | def add(self, entry, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 866 | return self.tk.call(self._w, 'add', entry, *self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 867 | |
| 868 | def add_child(self, parent=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 869 | if not parent: |
| 870 | parent = '' |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 871 | return self.tk.call( |
| 872 | self._w, 'addchild', parent, *self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 873 | |
| 874 | def anchor_set(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 875 | self.tk.call(self._w, 'anchor', 'set', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 876 | |
| 877 | def anchor_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 878 | self.tk.call(self._w, 'anchor', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 879 | |
| 880 | def column_width(self, col=0, width=None, chars=None): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 881 | if not chars: |
| 882 | return self.tk.call(self._w, 'column', 'width', col, width) |
| 883 | else: |
| 884 | return self.tk.call(self._w, 'column', 'width', col, |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 885 | '-char', chars) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 886 | |
| 887 | def delete_all(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 888 | self.tk.call(self._w, 'delete', 'all') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 889 | |
| 890 | def delete_entry(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 891 | self.tk.call(self._w, 'delete', 'entry', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 892 | |
| 893 | def delete_offsprings(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 894 | self.tk.call(self._w, 'delete', 'offsprings', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 895 | |
| 896 | def delete_siblings(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 897 | self.tk.call(self._w, 'delete', 'siblings', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 898 | |
| 899 | def dragsite_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 900 | self.tk.call(self._w, 'dragsite', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 901 | |
| 902 | def dragsite_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 903 | self.tk.call(self._w, 'dragsite', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 904 | |
| 905 | def dropsite_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 906 | self.tk.call(self._w, 'dropsite', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 907 | |
| 908 | def dropsite_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 909 | self.tk.call(self._w, 'dropsite', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 910 | |
| 911 | def header_create(self, col, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 912 | self.tk.call(self._w, 'header', 'create', col, *self._options(cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 913 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 914 | def header_configure(self, col, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 915 | if cnf is None: |
| 916 | return _lst2dict( |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 917 | self.tk.split( |
| 918 | self.tk.call(self._w, 'header', 'configure', col))) |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 919 | self.tk.call(self._w, 'header', 'configure', col, |
| 920 | *self._options(cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 921 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 922 | def header_cget(self, col, opt): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 923 | return self.tk.call(self._w, 'header', 'cget', col, opt) |
| 924 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 925 | def header_exists(self, col): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 926 | return self.tk.call(self._w, 'header', 'exists', col) |
| 927 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 928 | def header_delete(self, col): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 929 | self.tk.call(self._w, 'header', 'delete', 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 header_size(self, col): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 932 | return self.tk.call(self._w, 'header', 'size', col) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 933 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 934 | def hide_entry(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 935 | self.tk.call(self._w, 'hide', 'entry', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 936 | |
| 937 | def indicator_create(self, entry, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 938 | self.tk.call( |
| 939 | self._w, 'indicator', 'create', entry, *self._options(cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 940 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 941 | def indicator_configure(self, entry, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 942 | if cnf is None: |
| 943 | return _lst2dict( |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 944 | self.tk.split( |
| 945 | self.tk.call(self._w, 'indicator', 'configure', entry))) |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 946 | self.tk.call( |
| 947 | self._w, 'indicator', 'configure', entry, *self._options(cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 948 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 949 | def indicator_cget(self, entry, opt): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 950 | return self.tk.call(self._w, 'indicator', 'cget', entry, opt) |
| 951 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 952 | def indicator_exists(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 953 | return self.tk.call (self._w, 'indicator', 'exists', entry) |
| 954 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 955 | def indicator_delete(self, entry): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 956 | self.tk.call(self._w, 'indicator', 'delete', entry) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 957 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 958 | def indicator_size(self, entry): |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 959 | return self.tk.call(self._w, 'indicator', 'size', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 960 | |
| 961 | def info_anchor(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 962 | return self.tk.call(self._w, 'info', 'anchor') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 963 | |
| 964 | def info_children(self, entry=None): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 965 | c = self.tk.call(self._w, 'info', 'children', entry) |
| 966 | return self.tk.splitlist(c) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 967 | |
| 968 | def info_data(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 969 | return self.tk.call(self._w, 'info', 'data', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 970 | |
| 971 | def info_exists(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 972 | return self.tk.call(self._w, 'info', 'exists', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 973 | |
| 974 | def info_hidden(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 975 | return self.tk.call(self._w, 'info', 'hidden', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 976 | |
| 977 | def info_next(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 978 | return self.tk.call(self._w, 'info', 'next', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 979 | |
| 980 | def info_parent(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 981 | return self.tk.call(self._w, 'info', 'parent', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 982 | |
| 983 | def info_prev(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 984 | return self.tk.call(self._w, 'info', 'prev', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 985 | |
| 986 | def info_selection(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 987 | c = self.tk.call(self._w, 'info', 'selection') |
| 988 | return self.tk.splitlist(c) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 989 | |
Martin v. Löwis | 3e04848 | 2001-10-09 11:50:55 +0000 | [diff] [blame] | 990 | def item_cget(self, entry, col, opt): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 991 | return self.tk.call(self._w, 'item', 'cget', entry, col, opt) |
| 992 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 993 | def item_configure(self, entry, col, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 994 | if cnf is None: |
| 995 | return _lst2dict( |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 996 | self.tk.split( |
| 997 | self.tk.call(self._w, 'item', 'configure', entry, col))) |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 998 | self.tk.call(self._w, 'item', 'configure', entry, col, |
| 999 | *self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1000 | |
| 1001 | def item_create(self, entry, col, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1002 | self.tk.call( |
| 1003 | self._w, 'item', 'create', entry, col, *self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1004 | |
| 1005 | def item_exists(self, entry, col): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1006 | return self.tk.call(self._w, 'item', 'exists', entry, col) |
| 1007 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1008 | def item_delete(self, entry, col): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1009 | self.tk.call(self._w, 'item', 'delete', entry, col) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1010 | |
Martin v. Löwis | 433fa69 | 2004-03-21 15:26:44 +0000 | [diff] [blame] | 1011 | def entrycget(self, entry, opt): |
| 1012 | return self.tk.call(self._w, 'entrycget', entry, opt) |
| 1013 | |
| 1014 | def entryconfigure(self, entry, cnf={}, **kw): |
| 1015 | if cnf is None: |
| 1016 | return _lst2dict( |
| 1017 | self.tk.split( |
| 1018 | self.tk.call(self._w, 'entryconfigure', entry))) |
| 1019 | self.tk.call(self._w, 'entryconfigure', entry, |
| 1020 | *self._options(cnf, kw)) |
| 1021 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1022 | def nearest(self, y): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1023 | return self.tk.call(self._w, 'nearest', y) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1024 | |
| 1025 | def see(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1026 | self.tk.call(self._w, 'see', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1027 | |
| 1028 | def selection_clear(self, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1029 | self.tk.call(self._w, 'selection', 'clear', *self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1030 | |
| 1031 | def selection_includes(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1032 | return self.tk.call(self._w, 'selection', 'includes', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1033 | |
| 1034 | def selection_set(self, first, last=None): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1035 | self.tk.call(self._w, 'selection', 'set', first, last) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1036 | |
| 1037 | def show_entry(self, entry): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1038 | return self.tk.call(self._w, 'show', 'entry', entry) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1039 | |
| 1040 | def xview(self, *args): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1041 | self.tk.call(self._w, 'xview', *args) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1042 | |
| 1043 | def yview(self, *args): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1044 | self.tk.call(self._w, 'yview', *args) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1045 | |
| 1046 | class InputOnly(TixWidget): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1047 | """InputOnly - Invisible widget. Unix only. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1048 | |
| 1049 | Subwidgets - None""" |
| 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, 'tixInputOnly', None, cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1053 | |
| 1054 | class LabelEntry(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1055 | """LabelEntry - Entry field with label. Packages an entry widget |
| 1056 | and a label into one mega widget. It can beused be used to simplify |
| 1057 | the creation of ``entry-form'' type of interface. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1058 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1059 | Subwidgets Class |
| 1060 | ---------- ----- |
| 1061 | label Label |
| 1062 | entry Entry""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1063 | |
| 1064 | def __init__ (self,master=None,cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1065 | TixWidget.__init__(self, master, 'tixLabelEntry', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1066 | ['labelside','options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1067 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 1068 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1069 | |
| 1070 | class LabelFrame(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1071 | """LabelFrame - Labelled Frame container. Packages a frame widget |
| 1072 | and a label into one mega widget. To create widgets inside a |
| 1073 | LabelFrame widget, one creates the new widgets relative to the |
| 1074 | frame subwidget and manage them inside the frame subwidget. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1075 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1076 | Subwidgets Class |
| 1077 | ---------- ----- |
| 1078 | label Label |
| 1079 | frame Frame""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1080 | |
| 1081 | def __init__ (self,master=None,cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1082 | TixWidget.__init__(self, master, 'tixLabelFrame', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1083 | ['labelside','options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1084 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
| 1085 | self.subwidget_list['frame'] = _dummyFrame(self, 'frame') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1086 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1087 | |
| 1088 | class ListNoteBook(TixWidget): |
| 1089 | """A ListNoteBook widget is very similar to the TixNoteBook widget: |
| 1090 | it can be used to display many windows in a limited space using a |
| 1091 | notebook metaphor. The notebook is divided into a stack of pages |
| 1092 | (windows). At one time only one of these pages can be shown. |
| 1093 | The user can navigate through these pages by |
| 1094 | choosing the name of the desired page in the hlist subwidget.""" |
| 1095 | |
| 1096 | def __init__(self, master, cnf={}, **kw): |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1097 | TixWidget.__init__(self, master, 'tixListNoteBook', ['options'], cnf, kw) |
| 1098 | # Is this necessary? It's not an exposed subwidget in Tix. |
| 1099 | self.subwidget_list['pane'] = _dummyPanedWindow(self, 'pane', |
| 1100 | destroy_physically=0) |
| 1101 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1102 | self.subwidget_list['shlist'] = _dummyScrolledHList(self, 'shlist') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1103 | |
| 1104 | def add(self, name, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1105 | self.tk.call(self._w, 'add', name, *self._options(cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1106 | self.subwidget_list[name] = TixSubWidget(self, name) |
| 1107 | return self.subwidget_list[name] |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1108 | |
Martin v. Löwis | 01824bf | 2002-09-19 08:12:55 +0000 | [diff] [blame] | 1109 | def page(self, name): |
Tim Peters | 182b5ac | 2004-07-18 06:16:08 +0000 | [diff] [blame] | 1110 | return self.subwidget(name) |
Martin v. Löwis | 01824bf | 2002-09-19 08:12:55 +0000 | [diff] [blame] | 1111 | |
| 1112 | def pages(self): |
Tim Peters | 182b5ac | 2004-07-18 06:16:08 +0000 | [diff] [blame] | 1113 | # Can't call subwidgets_all directly because we don't want .nbframe |
| 1114 | names = self.tk.split(self.tk.call(self._w, 'pages')) |
| 1115 | ret = [] |
| 1116 | for x in names: |
| 1117 | ret.append(self.subwidget(x)) |
| 1118 | return ret |
Martin v. Löwis | 01824bf | 2002-09-19 08:12:55 +0000 | [diff] [blame] | 1119 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1120 | def raise_page(self, name): # raise is a python keyword |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1121 | self.tk.call(self._w, 'raise', name) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1122 | |
| 1123 | class Meter(TixWidget): |
| 1124 | """The Meter widget can be used to show the progress of a background |
| 1125 | job which may take a long time to execute. |
| 1126 | """ |
| 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, 'tixMeter', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1130 | ['options'], cnf, kw) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1131 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1132 | class NoteBook(TixWidget): |
| 1133 | """NoteBook - Multi-page container widget (tabbed notebook metaphor). |
| 1134 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1135 | Subwidgets Class |
| 1136 | ---------- ----- |
| 1137 | nbframe NoteBookFrame |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1138 | <pages> page widgets added dynamically with the add method""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1139 | |
| 1140 | def __init__ (self,master=None,cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1141 | TixWidget.__init__(self,master,'tixNoteBook', ['options'], cnf, kw) |
| 1142 | self.subwidget_list['nbframe'] = TixSubWidget(self, 'nbframe', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1143 | destroy_physically=0) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1144 | |
| 1145 | def add(self, name, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1146 | self.tk.call(self._w, 'add', name, *self._options(cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1147 | self.subwidget_list[name] = TixSubWidget(self, name) |
| 1148 | return self.subwidget_list[name] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1149 | |
| 1150 | def delete(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1151 | self.tk.call(self._w, 'delete', name) |
| 1152 | self.subwidget_list[name].destroy() |
| 1153 | del self.subwidget_list[name] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1154 | |
| 1155 | def page(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1156 | return self.subwidget(name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1157 | |
| 1158 | def pages(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1159 | # Can't call subwidgets_all directly because we don't want .nbframe |
| 1160 | names = self.tk.split(self.tk.call(self._w, 'pages')) |
| 1161 | ret = [] |
| 1162 | for x in names: |
| 1163 | ret.append(self.subwidget(x)) |
| 1164 | return ret |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1165 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1166 | def raise_page(self, name): # raise is a python keyword |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1167 | self.tk.call(self._w, 'raise', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1168 | |
| 1169 | def raised(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1170 | return self.tk.call(self._w, 'raised') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1171 | |
| 1172 | class NoteBookFrame(TixWidget): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1173 | # 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] | 1174 | pass |
| 1175 | |
| 1176 | class OptionMenu(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1177 | """OptionMenu - creates a menu button of options. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1178 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1179 | Subwidget Class |
| 1180 | --------- ----- |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1181 | menubutton Menubutton |
| 1182 | menu Menu""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1183 | |
| 1184 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1185 | TixWidget.__init__(self, master, 'tixOptionMenu', ['options'], cnf, kw) |
| 1186 | self.subwidget_list['menubutton'] = _dummyMenubutton(self, 'menubutton') |
| 1187 | self.subwidget_list['menu'] = _dummyMenu(self, 'menu') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1188 | |
| 1189 | def add_command(self, name, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1190 | self.tk.call(self._w, 'add', 'command', name, *self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1191 | |
| 1192 | def add_separator(self, name, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1193 | self.tk.call(self._w, 'add', 'separator', name, *self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1194 | |
| 1195 | def delete(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1196 | self.tk.call(self._w, 'delete', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1197 | |
| 1198 | def disable(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1199 | self.tk.call(self._w, 'disable', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1200 | |
| 1201 | def enable(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1202 | self.tk.call(self._w, 'enable', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1203 | |
| 1204 | class PanedWindow(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1205 | """PanedWindow - Multi-pane container widget |
| 1206 | allows the user to interactively manipulate the sizes of several |
| 1207 | panes. The panes can be arranged either vertically or horizontally.The |
| 1208 | user changes the sizes of the panes by dragging the resize handle |
| 1209 | between two panes. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1210 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1211 | Subwidgets Class |
| 1212 | ---------- ----- |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1213 | <panes> g/p widgets added dynamically with the add method.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1214 | |
| 1215 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1216 | TixWidget.__init__(self, master, 'tixPanedWindow', ['orientation', 'options'], cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1217 | |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1218 | # add delete forget panecget paneconfigure panes setsize |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1219 | def add(self, name, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1220 | self.tk.call(self._w, 'add', name, *self._options(cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1221 | self.subwidget_list[name] = TixSubWidget(self, name, |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1222 | check_intermediate=0) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1223 | return self.subwidget_list[name] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1224 | |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1225 | def delete(self, name): |
| 1226 | self.tk.call(self._w, 'delete', name) |
| 1227 | self.subwidget_list[name].destroy() |
| 1228 | del self.subwidget_list[name] |
| 1229 | |
| 1230 | def forget(self, name): |
| 1231 | self.tk.call(self._w, 'forget', name) |
| 1232 | |
| 1233 | def panecget(self, entry, opt): |
| 1234 | return self.tk.call(self._w, 'panecget', entry, opt) |
| 1235 | |
| 1236 | def paneconfigure(self, entry, cnf={}, **kw): |
| 1237 | if cnf is None: |
| 1238 | return _lst2dict( |
| 1239 | self.tk.split( |
| 1240 | self.tk.call(self._w, 'paneconfigure', entry))) |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1241 | self.tk.call(self._w, 'paneconfigure', entry, *self._options(cnf, kw)) |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1242 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1243 | def panes(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1244 | names = self.tk.call(self._w, 'panes') |
| 1245 | ret = [] |
| 1246 | for x in names: |
| 1247 | ret.append(self.subwidget(x)) |
| 1248 | return ret |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1249 | |
| 1250 | class PopupMenu(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1251 | """PopupMenu widget can be used as a replacement of the tk_popup command. |
| 1252 | The advantage of the Tix PopupMenu widget is it requires less application |
| 1253 | code to manipulate. |
| 1254 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1255 | |
Moshe Zadka | 2271082 | 2001-03-21 17:24:49 +0000 | [diff] [blame] | 1256 | Subwidgets Class |
| 1257 | ---------- ----- |
| 1258 | menubutton Menubutton |
| 1259 | menu Menu""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1260 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1261 | # FIXME: It should inherit -superclass tixShell |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1262 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1263 | TixWidget.__init__(self, master, 'tixPopupMenu', ['options'], cnf, kw) |
| 1264 | self.subwidget_list['menubutton'] = _dummyMenubutton(self, 'menubutton') |
| 1265 | self.subwidget_list['menu'] = _dummyMenu(self, 'menu') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1266 | |
| 1267 | def bind_widget(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1268 | self.tk.call(self._w, 'bind', widget._w) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1269 | |
| 1270 | def unbind_widget(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1271 | self.tk.call(self._w, 'unbind', widget._w) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1272 | |
| 1273 | def post_widget(self, widget, x, y): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1274 | self.tk.call(self._w, 'post', widget._w, x, y) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1275 | |
| 1276 | class ResizeHandle(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1277 | """Internal widget to draw resize handles on Scrolled widgets.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1278 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1279 | # There seems to be a Tix bug rejecting the configure method |
| 1280 | # Let's try making the flags -static |
| 1281 | flags = ['options', 'command', 'cursorfg', 'cursorbg', |
| 1282 | 'handlesize', 'hintcolor', 'hintwidth', |
| 1283 | 'x', 'y'] |
| 1284 | # In fact, x y height width are configurable |
| 1285 | TixWidget.__init__(self, master, 'tixResizeHandle', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1286 | flags, cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1287 | |
| 1288 | def attach_widget(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1289 | self.tk.call(self._w, 'attachwidget', widget._w) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1290 | |
Martin v. Löwis | 652e191 | 2001-11-25 14:50:56 +0000 | [diff] [blame] | 1291 | def detach_widget(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1292 | self.tk.call(self._w, 'detachwidget', widget._w) |
Martin v. Löwis | 652e191 | 2001-11-25 14:50:56 +0000 | [diff] [blame] | 1293 | |
| 1294 | def hide(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1295 | self.tk.call(self._w, 'hide', widget._w) |
Martin v. Löwis | 652e191 | 2001-11-25 14:50:56 +0000 | [diff] [blame] | 1296 | |
| 1297 | def show(self, widget): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1298 | self.tk.call(self._w, 'show', widget._w) |
Martin v. Löwis | 652e191 | 2001-11-25 14:50:56 +0000 | [diff] [blame] | 1299 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1300 | class ScrolledHList(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1301 | """ScrolledHList - HList with automatic scrollbars.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1302 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1303 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1304 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1305 | TixWidget.__init__(self, master, 'tixScrolledHList', ['options'], |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1306 | cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1307 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1308 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1309 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1310 | |
| 1311 | class ScrolledListBox(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1312 | """ScrolledListBox - Listbox with automatic scrollbars.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1313 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1314 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1315 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1316 | TixWidget.__init__(self, master, 'tixScrolledListBox', ['options'], cnf, kw) |
| 1317 | self.subwidget_list['listbox'] = _dummyListbox(self, 'listbox') |
| 1318 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1319 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1320 | |
| 1321 | class ScrolledText(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1322 | """ScrolledText - Text with automatic scrollbars.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1323 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1324 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1325 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1326 | TixWidget.__init__(self, master, 'tixScrolledText', ['options'], cnf, kw) |
| 1327 | self.subwidget_list['text'] = _dummyText(self, 'text') |
| 1328 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1329 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1330 | |
| 1331 | class ScrolledTList(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1332 | """ScrolledTList - TList with automatic scrollbars.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1333 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1334 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1335 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1336 | TixWidget.__init__(self, master, 'tixScrolledTList', ['options'], |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1337 | cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1338 | self.subwidget_list['tlist'] = _dummyTList(self, 'tlist') |
| 1339 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1340 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1341 | |
| 1342 | class ScrolledWindow(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1343 | """ScrolledWindow - Window with automatic scrollbars.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1344 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1345 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1346 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1347 | TixWidget.__init__(self, master, 'tixScrolledWindow', ['options'], cnf, kw) |
| 1348 | self.subwidget_list['window'] = _dummyFrame(self, 'window') |
| 1349 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1350 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1351 | |
| 1352 | class Select(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1353 | """Select - Container of button subwidgets. It can be used to provide |
| 1354 | 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] | 1355 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1356 | Subwidgets are buttons added dynamically using the add method.""" |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1357 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1358 | # FIXME: It should inherit -superclass tixLabelWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1359 | def __init__(self, master, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1360 | TixWidget.__init__(self, master, 'tixSelect', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1361 | ['allowzero', 'radio', 'orientation', 'labelside', |
| 1362 | 'options'], |
| 1363 | cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1364 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1365 | |
| 1366 | def add(self, name, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1367 | self.tk.call(self._w, 'add', name, *self._options(cnf, kw)) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1368 | self.subwidget_list[name] = _dummyButton(self, name) |
| 1369 | return self.subwidget_list[name] |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1370 | |
| 1371 | def invoke(self, name): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1372 | self.tk.call(self._w, 'invoke', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1373 | |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1374 | class Shell(TixWidget): |
| 1375 | """Toplevel window. |
| 1376 | |
| 1377 | Subwidgets - None""" |
| 1378 | |
| 1379 | def __init__ (self,master=None,cnf={}, **kw): |
| 1380 | TixWidget.__init__(self, master, 'tixShell', ['options', 'title'], cnf, kw) |
| 1381 | |
| 1382 | class DialogShell(TixWidget): |
| 1383 | """Toplevel window, with popup popdown and center methods. |
| 1384 | It tells the window manager that it is a dialog window and should be |
| 1385 | treated specially. The exact treatment depends on the treatment of |
| 1386 | the window manager. |
| 1387 | |
| 1388 | Subwidgets - None""" |
| 1389 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1390 | # FIXME: It should inherit from Shell |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1391 | def __init__ (self,master=None,cnf={}, **kw): |
| 1392 | TixWidget.__init__(self, master, |
| 1393 | 'tixDialogShell', |
| 1394 | ['options', 'title', 'mapped', |
| 1395 | 'minheight', 'minwidth', |
| 1396 | 'parent', 'transient'], cnf, kw) |
| 1397 | |
| 1398 | def popdown(self): |
| 1399 | self.tk.call(self._w, 'popdown') |
| 1400 | |
| 1401 | def popup(self): |
| 1402 | self.tk.call(self._w, 'popup') |
| 1403 | |
| 1404 | def center(self): |
| 1405 | self.tk.call(self._w, 'center') |
| 1406 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1407 | class StdButtonBox(TixWidget): |
| 1408 | """StdButtonBox - Standard Button Box (OK, Apply, Cancel and Help) """ |
| 1409 | |
| 1410 | def __init__(self, master=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1411 | TixWidget.__init__(self, master, 'tixStdButtonBox', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1412 | ['orientation', 'options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1413 | self.subwidget_list['ok'] = _dummyButton(self, 'ok') |
| 1414 | self.subwidget_list['apply'] = _dummyButton(self, 'apply') |
| 1415 | self.subwidget_list['cancel'] = _dummyButton(self, 'cancel') |
| 1416 | self.subwidget_list['help'] = _dummyButton(self, 'help') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1417 | |
| 1418 | def invoke(self, name): |
Guido van Rossum | e014a13 | 2006-08-19 16:53:45 +0000 | [diff] [blame] | 1419 | if name in self.subwidget_list: |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1420 | self.tk.call(self._w, 'invoke', name) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1421 | |
| 1422 | class TList(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1423 | """TList - Hierarchy display widget which can be |
| 1424 | used to display data in a tabular format. The list entries of a TList |
| 1425 | widget are similar to the entries in the Tk listbox widget. The main |
| 1426 | differences are (1) the TList widget can display the list entries in a |
| 1427 | two dimensional format and (2) you can use graphical images as well as |
| 1428 | multiple colors and fonts for the list entries. |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1429 | |
| 1430 | Subwidgets - None""" |
| 1431 | |
| 1432 | def __init__ (self,master=None,cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1433 | TixWidget.__init__(self, master, 'tixTList', ['options'], cnf, kw) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1434 | |
| 1435 | def active_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1436 | self.tk.call(self._w, 'active', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1437 | |
| 1438 | def active_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1439 | self.tk.call(self._w, 'active', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1440 | |
| 1441 | def anchor_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1442 | self.tk.call(self._w, 'anchor', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1443 | |
| 1444 | def anchor_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1445 | self.tk.call(self._w, 'anchor', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1446 | |
| 1447 | def delete(self, from_, to=None): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1448 | self.tk.call(self._w, 'delete', from_, to) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1449 | |
| 1450 | def dragsite_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1451 | self.tk.call(self._w, 'dragsite', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1452 | |
| 1453 | def dragsite_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1454 | self.tk.call(self._w, 'dragsite', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1455 | |
| 1456 | def dropsite_set(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1457 | self.tk.call(self._w, 'dropsite', 'set', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1458 | |
| 1459 | def dropsite_clear(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1460 | self.tk.call(self._w, 'dropsite', 'clear') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1461 | |
| 1462 | def insert(self, index, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1463 | self.tk.call(self._w, 'insert', index, *self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1464 | |
| 1465 | def info_active(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1466 | return self.tk.call(self._w, 'info', 'active') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1467 | |
| 1468 | def info_anchor(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1469 | return self.tk.call(self._w, 'info', 'anchor') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1470 | |
| 1471 | def info_down(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1472 | return self.tk.call(self._w, 'info', 'down', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1473 | |
| 1474 | def info_left(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1475 | return self.tk.call(self._w, 'info', 'left', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1476 | |
| 1477 | def info_right(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1478 | return self.tk.call(self._w, 'info', 'right', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1479 | |
| 1480 | def info_selection(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1481 | c = self.tk.call(self._w, 'info', 'selection') |
| 1482 | return self.tk.splitlist(c) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1483 | |
| 1484 | def info_size(self): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1485 | return self.tk.call(self._w, 'info', 'size') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1486 | |
| 1487 | def info_up(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1488 | return self.tk.call(self._w, 'info', 'up', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1489 | |
| 1490 | def nearest(self, x, y): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1491 | return self.tk.call(self._w, 'nearest', x, y) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1492 | |
| 1493 | def see(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1494 | self.tk.call(self._w, 'see', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1495 | |
| 1496 | def selection_clear(self, cnf={}, **kw): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1497 | self.tk.call(self._w, 'selection', 'clear', *self._options(cnf, kw)) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1498 | |
| 1499 | def selection_includes(self, index): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1500 | return self.tk.call(self._w, 'selection', 'includes', index) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1501 | |
| 1502 | def selection_set(self, first, last=None): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1503 | self.tk.call(self._w, 'selection', 'set', first, last) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1504 | |
| 1505 | def xview(self, *args): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1506 | self.tk.call(self._w, 'xview', *args) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1507 | |
| 1508 | def yview(self, *args): |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1509 | self.tk.call(self._w, 'yview', *args) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1510 | |
| 1511 | class Tree(TixWidget): |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1512 | """Tree - The tixTree widget can be used to display hierachical |
| 1513 | data in a tree form. The user can adjust |
| 1514 | 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] | 1515 | |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1516 | # FIXME: It should inherit -superclass tixScrolledWidget |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1517 | def __init__(self, master=None, cnf={}, **kw): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1518 | TixWidget.__init__(self, master, 'tixTree', |
Neal Norwitz | f539bde | 2002-11-14 02:43:40 +0000 | [diff] [blame] | 1519 | ['options'], cnf, kw) |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1520 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1521 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1522 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1523 | |
| 1524 | def autosetmode(self): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1525 | '''This command calls the setmode method for all the entries in this |
| 1526 | Tree widget: if an entry has no child entries, its mode is set to |
| 1527 | none. Otherwise, if the entry has any hidden child entries, its mode is |
| 1528 | set to open; otherwise its mode is set to close.''' |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1529 | self.tk.call(self._w, 'autosetmode') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1530 | |
| 1531 | def close(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1532 | '''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] | 1533 | self.tk.call(self._w, 'close', entrypath) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1534 | |
| 1535 | def getmode(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1536 | '''Returns the current mode of the entry given by entryPath.''' |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1537 | return self.tk.call(self._w, 'getmode', entrypath) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1538 | |
| 1539 | def open(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1540 | '''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] | 1541 | self.tk.call(self._w, 'open', entrypath) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1542 | |
| 1543 | def setmode(self, entrypath, mode='none'): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1544 | '''This command is used to indicate whether the entry given by |
| 1545 | entryPath has children entries and whether the children are visible. mode |
| 1546 | must be one of open, close or none. If mode is set to open, a (+) |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1547 | indicator is drawn next the the entry. If mode is set to close, a (-) |
| 1548 | indicator is drawn next the the entry. If mode is set to none, no |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1549 | indicators will be drawn for this entry. The default mode is none. The |
| 1550 | open mode indicates the entry has hidden children and this entry can be |
| 1551 | opened by the user. The close mode indicates that all the children of the |
| 1552 | 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] | 1553 | self.tk.call(self._w, 'setmode', entrypath, mode) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1554 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1555 | |
| 1556 | # Could try subclassing Tree for CheckList - would need another arg to init |
| 1557 | class CheckList(TixWidget): |
| 1558 | """The CheckList widget |
| 1559 | displays a list of items to be selected by the user. CheckList acts |
| 1560 | similarly to the Tk checkbutton or radiobutton widgets, except it is |
| 1561 | capable of handling many more items than checkbuttons or radiobuttons. |
| 1562 | """ |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1563 | # FIXME: It should inherit -superclass tixTree |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1564 | def __init__(self, master=None, cnf={}, **kw): |
| 1565 | TixWidget.__init__(self, master, 'tixCheckList', |
| 1566 | ['options'], cnf, kw) |
| 1567 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1568 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1569 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1570 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1571 | def autosetmode(self): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1572 | '''This command calls the setmode method for all the entries in this |
| 1573 | Tree widget: if an entry has no child entries, its mode is set to |
| 1574 | none. Otherwise, if the entry has any hidden child entries, its mode is |
| 1575 | set to open; otherwise its mode is set to close.''' |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1576 | self.tk.call(self._w, 'autosetmode') |
| 1577 | |
| 1578 | def close(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1579 | '''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] | 1580 | self.tk.call(self._w, 'close', entrypath) |
| 1581 | |
| 1582 | def getmode(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1583 | '''Returns the current mode of the entry given by entryPath.''' |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1584 | return self.tk.call(self._w, 'getmode', entrypath) |
| 1585 | |
| 1586 | def open(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1587 | '''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] | 1588 | self.tk.call(self._w, 'open', entrypath) |
| 1589 | |
| 1590 | def getselection(self, mode='on'): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1591 | '''Returns a list of items whose status matches status. If status is |
| 1592 | not specified, the list of items in the "on" status will be returned. |
| 1593 | Mode can be on, off, default''' |
| 1594 | c = self.tk.split(self.tk.call(self._w, 'getselection', mode)) |
| 1595 | return self.tk.splitlist(c) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1596 | |
| 1597 | def getstatus(self, entrypath): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1598 | '''Returns the current status of entryPath.''' |
| 1599 | return self.tk.call(self._w, 'getstatus', entrypath) |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1600 | |
| 1601 | def setstatus(self, entrypath, mode='on'): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1602 | '''Sets the status of entryPath to be status. A bitmap will be |
| 1603 | 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] | 1604 | self.tk.call(self._w, 'setstatus', entrypath, mode) |
| 1605 | |
| 1606 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1607 | ########################################################################### |
| 1608 | ### The subclassing below is used to instantiate the subwidgets in each ### |
| 1609 | ### mega widget. This allows us to access their methods directly. ### |
| 1610 | ########################################################################### |
| 1611 | |
| 1612 | class _dummyButton(Button, 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 _dummyCheckbutton(Checkbutton, 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 _dummyEntry(Entry, 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 _dummyFrame(Frame, 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 _dummyLabel(Label, 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 _dummyListbox(Listbox, 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 _dummyMenu(Menu, 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 _dummyMenubutton(Menubutton, 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 _dummyScrollbar(Scrollbar, 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 _dummyText(Text, 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) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1651 | |
| 1652 | class _dummyScrolledListBox(ScrolledListBox, TixSubWidget): |
| 1653 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1654 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1655 | self.subwidget_list['listbox'] = _dummyListbox(self, 'listbox') |
| 1656 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1657 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1658 | |
| 1659 | class _dummyHList(HList, 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) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1662 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1663 | class _dummyScrolledHList(ScrolledHList, TixSubWidget): |
| 1664 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1665 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1666 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1667 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1668 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1669 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1670 | class _dummyTList(TList, 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) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1673 | |
| 1674 | class _dummyComboBox(ComboBox, TixSubWidget): |
| 1675 | def __init__(self, master, name, destroy_physically=1): |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1676 | TixSubWidget.__init__(self, master, name, ['fancy',destroy_physically]) |
| 1677 | self.subwidget_list['label'] = _dummyLabel(self, 'label') |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1678 | self.subwidget_list['entry'] = _dummyEntry(self, 'entry') |
| 1679 | self.subwidget_list['arrow'] = _dummyButton(self, 'arrow') |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1680 | |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1681 | self.subwidget_list['slistbox'] = _dummyScrolledListBox(self, |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1682 | 'slistbox') |
| 1683 | try: |
| 1684 | self.subwidget_list['tick'] = _dummyButton(self, 'tick') |
| 1685 | #cross Button : present if created with the fancy option |
| 1686 | self.subwidget_list['cross'] = _dummyButton(self, 'cross') |
| 1687 | except TypeError: |
| 1688 | # unavailable when -fancy not specified |
| 1689 | pass |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1690 | |
| 1691 | class _dummyDirList(DirList, TixSubWidget): |
| 1692 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1693 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1694 | self.subwidget_list['hlist'] = _dummyHList(self, 'hlist') |
| 1695 | self.subwidget_list['vsb'] = _dummyScrollbar(self, 'vsb') |
| 1696 | self.subwidget_list['hsb'] = _dummyScrollbar(self, 'hsb') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1697 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1698 | class _dummyDirSelectBox(DirSelectBox, TixSubWidget): |
| 1699 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1700 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1701 | self.subwidget_list['dirlist'] = _dummyDirList(self, 'dirlist') |
| 1702 | self.subwidget_list['dircbx'] = _dummyFileComboBox(self, 'dircbx') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1703 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1704 | class _dummyExFileSelectBox(ExFileSelectBox, TixSubWidget): |
| 1705 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1706 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1707 | self.subwidget_list['cancel'] = _dummyButton(self, 'cancel') |
| 1708 | self.subwidget_list['ok'] = _dummyButton(self, 'ok') |
| 1709 | self.subwidget_list['hidden'] = _dummyCheckbutton(self, 'hidden') |
| 1710 | self.subwidget_list['types'] = _dummyComboBox(self, 'types') |
| 1711 | self.subwidget_list['dir'] = _dummyComboBox(self, 'dir') |
| 1712 | self.subwidget_list['dirlist'] = _dummyScrolledListBox(self, 'dirlist') |
| 1713 | self.subwidget_list['file'] = _dummyComboBox(self, 'file') |
| 1714 | self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1715 | |
| 1716 | class _dummyFileSelectBox(FileSelectBox, 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['dirlist'] = _dummyScrolledListBox(self, 'dirlist') |
| 1720 | self.subwidget_list['filelist'] = _dummyScrolledListBox(self, 'filelist') |
| 1721 | self.subwidget_list['filter'] = _dummyComboBox(self, 'filter') |
| 1722 | self.subwidget_list['selection'] = _dummyComboBox(self, 'selection') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1723 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1724 | class _dummyFileComboBox(ComboBox, TixSubWidget): |
| 1725 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1726 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1727 | self.subwidget_list['dircbx'] = _dummyComboBox(self, 'dircbx') |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1728 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1729 | class _dummyStdButtonBox(StdButtonBox, TixSubWidget): |
| 1730 | def __init__(self, master, name, destroy_physically=1): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1731 | TixSubWidget.__init__(self, master, name, destroy_physically) |
| 1732 | self.subwidget_list['ok'] = _dummyButton(self, 'ok') |
| 1733 | self.subwidget_list['apply'] = _dummyButton(self, 'apply') |
| 1734 | self.subwidget_list['cancel'] = _dummyButton(self, 'cancel') |
| 1735 | self.subwidget_list['help'] = _dummyButton(self, 'help') |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1736 | |
| 1737 | class _dummyNoteBookFrame(NoteBookFrame, TixSubWidget): |
| 1738 | def __init__(self, master, name, destroy_physically=0): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1739 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1740 | |
Martin v. Löwis | 01824bf | 2002-09-19 08:12:55 +0000 | [diff] [blame] | 1741 | class _dummyPanedWindow(PanedWindow, TixSubWidget): |
| 1742 | def __init__(self, master, name, destroy_physically=1): |
Tim Peters | 182b5ac | 2004-07-18 06:16:08 +0000 | [diff] [blame] | 1743 | TixSubWidget.__init__(self, master, name, destroy_physically) |
Martin v. Löwis | 01824bf | 2002-09-19 08:12:55 +0000 | [diff] [blame] | 1744 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1745 | ######################## |
| 1746 | ### Utility Routines ### |
| 1747 | ######################## |
| 1748 | |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1749 | #mike Should tixDestroy be exposed as a wrapper? - but not for widgets. |
| 1750 | |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1751 | def OptionName(widget): |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1752 | '''Returns the qualified path name for the widget. Normally used to set |
| 1753 | default options for subwidgets. See tixwidgets.py''' |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1754 | return widget.tk.call('tixOptionName', widget._w) |
| 1755 | |
| 1756 | # Called with a dictionary argument of the form |
| 1757 | # {'*.c':'C source files', '*.txt':'Text Files', '*':'All files'} |
| 1758 | # returns a string which can be used to configure the fsbox file types |
| 1759 | # in an ExFileSelectBox. i.e., |
| 1760 | # '{{*} {* - All files}} {{*.c} {*.c - C source files}} {{*.txt} {*.txt - Text Files}}' |
| 1761 | def FileTypeList(dict): |
| 1762 | s = '' |
| 1763 | for type in dict.keys(): |
Martin v. Löwis | 0c0d56a | 2002-03-28 16:26:40 +0000 | [diff] [blame] | 1764 | s = s + '{{' + type + '} {' + type + ' - ' + dict[type] + '}} ' |
Martin v. Löwis | b21cb5f | 2001-03-21 07:42:07 +0000 | [diff] [blame] | 1765 | return s |
| 1766 | |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1767 | # Still to be done: |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1768 | # tixIconView |
Martin v. Löwis | b7b3260 | 2001-11-02 23:48:20 +0000 | [diff] [blame] | 1769 | class CObjView(TixWidget): |
| 1770 | """This file implements the Canvas Object View widget. This is a base |
| 1771 | class of IconView. It implements automatic placement/adjustment of the |
| 1772 | scrollbars according to the canvas objects inside the canvas subwidget. |
| 1773 | The scrollbars are adjusted so that the canvas is just large enough |
| 1774 | to see all the objects. |
| 1775 | """ |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1776 | # FIXME: It should inherit -superclass tixScrolledWidget |
| 1777 | pass |
| 1778 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1779 | |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1780 | class Grid(TixWidget): |
| 1781 | '''The Tix Grid command creates a new window and makes it into a |
| 1782 | tixGrid widget. Additional options, may be specified on the command |
| 1783 | line or in the option database to configure aspects such as its cursor |
| 1784 | and relief. |
| 1785 | |
| 1786 | A Grid widget displays its contents in a two dimensional grid of cells. |
| 1787 | Each cell may contain one Tix display item, which may be in text, |
| 1788 | graphics or other formats. See the DisplayStyle class for more information |
| 1789 | about Tix display items. Individual cells, or groups of cells, can be |
| 1790 | formatted with a wide range of attributes, such as its color, relief and |
| 1791 | border. |
| 1792 | |
| 1793 | Subwidgets - None''' |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1794 | # valid specific resources as of Tk 8.4 |
| 1795 | # editdonecmd, editnotifycmd, floatingcols, floatingrows, formatcmd, |
| 1796 | # highlightbackground, highlightcolor, leftmargin, itemtype, selectmode, |
| 1797 | # selectunit, topmargin, |
| 1798 | def __init__(self, master=None, cnf={}, **kw): |
| 1799 | static= [] |
| 1800 | self.cnf= cnf |
| 1801 | TixWidget.__init__(self, master, 'tixGrid', static, cnf, kw) |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1802 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1803 | # valid options as of Tk 8.4 |
| 1804 | # anchor, bdtype, cget, configure, delete, dragsite, dropsite, entrycget, edit |
| 1805 | # entryconfigure, format, geometryinfo, info, index, move, nearest, selection |
| 1806 | # set, size, unset, xview, yview |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1807 | # def anchor option ?args ...? |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1808 | def anchor_get(self): |
| 1809 | "Get the (x,y) coordinate of the current anchor cell" |
| 1810 | return self._getints(self.tk.call(self, 'anchor', 'get')) |
| 1811 | |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1812 | # def bdtype |
| 1813 | # def delete dim from ?to? |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1814 | def delete_row(self, from_, to=None): |
| 1815 | """Delete rows between from_ and to inclusive. |
| 1816 | If to is not provided, delete only row at from_""" |
| 1817 | if to is None: |
| 1818 | self.tk.call(self, 'delete', 'row', from_) |
| 1819 | else: |
| 1820 | self.tk.call(self, 'delete', 'row', from_, to) |
| 1821 | def delete_column(self, from_, to=None): |
| 1822 | """Delete columns between from_ and to inclusive. |
| 1823 | If to is not provided, delete only column at from_""" |
| 1824 | if to is None: |
| 1825 | self.tk.call(self, 'delete', 'column', from_) |
| 1826 | else: |
| 1827 | self.tk.call(self, 'delete', 'column', from_, to) |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1828 | # def edit apply |
| 1829 | # def edit set x y |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1830 | |
| 1831 | def entrycget(self, x, y, option): |
| 1832 | "Get the option value for cell at (x,y)" |
| 1833 | return self.tk.call(self, 'entrycget', x, y, option) |
| 1834 | |
| 1835 | def entryconfigure(self, x, y, **kw): |
| 1836 | return self.tk.call(self, 'entryconfigure', x, y, *self._options(None, kw)) |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1837 | # def format |
| 1838 | # def index |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1839 | |
| 1840 | def info_exists(self, x, y): |
| 1841 | "Return True if display item exists at (x,y)" |
| 1842 | return bool(int(self.tk.call(self, 'info', 'exists', x, y))) |
| 1843 | |
| 1844 | def info_bbox(self, x, y): |
| 1845 | # This seems to always return '', at least for 'text' displayitems |
| 1846 | return self.tk.call(self, 'info', 'bbox', x, y) |
| 1847 | |
| 1848 | def nearest(self, x, y): |
| 1849 | "Return coordinate of cell nearest pixel coordinate (x,y)" |
| 1850 | return self._getints(self.tk.call(self, 'nearest', x, y)) |
| 1851 | |
| 1852 | # def selection adjust |
| 1853 | # def selection clear |
| 1854 | # def selection includes |
| 1855 | # def selection set |
| 1856 | # def selection toggle |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1857 | # def move dim from to offset |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1858 | |
| 1859 | def set(self, x, y, itemtype=None, **kw): |
| 1860 | args= self._options(self.cnf, kw) |
| 1861 | if itemtype is not None: |
| 1862 | args= ('-itemtype', itemtype) + args |
| 1863 | self.tk.call(self, 'set', x, y, *args) |
| 1864 | |
Neal Norwitz | d8b5e3f | 2002-12-30 23:52:01 +0000 | [diff] [blame] | 1865 | # def size dim index ?option value ...? |
| 1866 | # def unset x y |
Raymond Hettinger | ff41c48 | 2003-04-06 09:01:11 +0000 | [diff] [blame] | 1867 | |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1868 | def xview(self): |
| 1869 | return self._getdoubles(self.tk.call(self, 'xview')) |
| 1870 | def xview_moveto(self, fraction): |
| 1871 | self.tk.call(self,'xview', 'moveto', fraction) |
| 1872 | def xview_scroll(self, count, what="units"): |
| 1873 | "Scroll right (count>0) or left <count> of units|pages" |
| 1874 | self.tk.call(self, 'xview', 'scroll', count, what) |
| 1875 | |
| 1876 | def yview(self): |
| 1877 | return self._getdoubles(self.tk.call(self, 'yview')) |
| 1878 | def yview_moveto(self, fraction): |
| 1879 | self.tk.call(self,'ysview', 'moveto', fraction) |
| 1880 | def yview_scroll(self, count, what="units"): |
| 1881 | "Scroll down (count>0) or up <count> of units|pages" |
| 1882 | self.tk.call(self, 'yview', 'scroll', count, what) |
| 1883 | |
| 1884 | class ScrolledGrid(Grid): |
Martin v. Löwis | 4687428 | 2002-12-06 10:33:45 +0000 | [diff] [blame] | 1885 | '''Scrolled Grid widgets''' |
| 1886 | |
| 1887 | # FIXME: It should inherit -superclass tixScrolledWidget |
Thomas Wouters | 49fd7fa | 2006-04-21 10:40:58 +0000 | [diff] [blame] | 1888 | def __init__(self, master=None, cnf={}, **kw): |
| 1889 | static= [] |
| 1890 | self.cnf= cnf |
| 1891 | TixWidget.__init__(self, master, 'tixScrolledGrid', static, cnf, kw) |