Lines Matching full:tix

1 # Tix.py -- Tix widget wrappers.
3 # For Tix, see http://tix.sourceforge.net
12 # The Tix widgets are represented by a class hierarchy in python with proper
33 'The Tix Tk extension is unmaintained, and the tkinter.tix wrapper module'
79 """The tix commands provide access to miscellaneous elements
80 of Tix's internal state and the Tix application context.
90 """Tix maintains a list of directories under which
99 return self.tk.call('tix', 'addbitmapdir', directory)
106 return self.tk.call('tix', 'cget', option)
109 """Query or modify the configuration options of the Tix application
125 return self._getconfigure('tix', 'configure')
127 return self._getconfigure1('tix', 'configure', '-'+cnf)
128 return self.tk.call(('tix', 'configure') + self._options(cnf))
137 tix FileSelectDialog or tixExFileSelectDialog.
140 return self.tk.call('tix', 'filedialog', dlgclass)
142 return self.tk.call('tix', 'filedialog')
151 option of the TK and Tix widgets.
153 return self.tk.call('tix', 'getbitmap', name)
165 configure the -image option of the Tk and Tix widgets.
167 return self.tk.call('tix', 'getimage', name)
170 """Gets the options maintained by the Tix
184 return self.tk.call('tix', 'option', 'get', name)
187 """Resets the scheme and fontset of the Tix application to
190 resetoptions command before the creation of any widgets in a Tix
194 priority level of the Tk options set by the Tix schemes.
196 Because of the way Tk handles the X option database, after Tix has
198 schemes and font sets using the tix config command. Instead, the
202 return self.tk.call('tix', 'resetoptions', newScheme, newFontSet, newScmPrio)
204 return self.tk.call('tix', 'resetoptions', newScheme, newFontSet)
207 """Toplevel widget of Tix which represents mostly the main window
209 def __init__(self, screenName=None, baseName=None, className='Tix'):
216 # Load Tix - this should work dynamically or statically
218 # 'load {} Tix'
220 # 'load libtix8.1.8.3.so Tix'
221 self.tk.eval('package require Tix')
228 # The Tix 'tixForm' geometry manager
230 """The Tix Form geometry manager
233 See Tix documentation for complete details"""
277 """A TixWidget class is used to package all (or most) Tix widgets.
281 the creation command (so called Tix 'static' options). These cannot be
284 child widgets created automatically by a Tix mega-widget. The Tk call
316 # corresponding Tk widget has already been created by Tix
325 # use the children list because the public Tix names may not be the
415 # existence in Tk/Tix.
420 by Tix/Tk as part of a mega-widget in Python (which is not informed
516 ### The Tix Widget classes - in alphabetical order ###
927 # A workaround to Tix library bug (issue #25464).
1102 # Is this necessary? It's not an exposed subwidget in Tix.
1251 The advantage of the Tix PopupMenu widget is it requires less application
1278 # There seems to be a Tix bug rejecting the configure method
1773 '''The Tix Grid command creates a new window and makes it into a
1779 Each cell may contain one Tix display item, which may be in text,
1781 about Tix display items. Individual cells, or groups of cells, can be