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
32 raise ImportError, "This version of Tix.py requires Tk 4.0 or higher"
76 """The tix commands provide access to miscellaneous elements
77 of Tix's internal state and the Tix application context.
87 """Tix maintains a list of directories under which
96 return self.tk.call('tix', 'addbitmapdir', directory)
103 return self.tk.call('tix', 'cget', option)
106 """Query or modify the configuration options of the Tix application
122 return self._getconfigure('tix', 'configure')
124 return self._getconfigure1('tix', 'configure', '-'+cnf)
125 return self.tk.call(('tix', 'configure') + self._options(cnf))
134 tix FileSelectDialog or tixExFileSelectDialog.
137 return self.tk.call('tix', 'filedialog', dlgclass)
139 return self.tk.call('tix', 'filedialog')
148 option of the TK and Tix widgets.
150 return self.tk.call('tix', 'getbitmap', name)
162 configure the -image option of the Tk and Tix widgets.
164 return self.tk.call('tix', 'getimage', name)
167 """Gets the options maintained by the Tix
181 return self.tk.call('tix', 'option', 'get', name)
184 """Resets the scheme and fontset of the Tix application to
187 resetoptions command before the creation of any widgets in a Tix
191 priority level of the Tk options set by the Tix schemes.
193 Because of the way Tk handles the X option database, after Tix has
195 schemes and font sets using the tix config command. Instead, the
199 return self.tk.call('tix', 'resetoptions', newScheme, newFontSet, newScmPrio)
201 return self.tk.call('tix', 'resetoptions', newScheme, newFontSet)
204 """Toplevel widget of Tix which represents mostly the main window
206 def __init__(self, screenName=None, baseName=None, className='Tix'):
213 # Load Tix - this should work dynamically or statically
215 # 'load {} Tix'
217 # 'load libtix8.1.8.3.so Tix'
218 self.tk.eval('package require Tix')
225 # The Tix 'tixForm' geometry manager
227 """The Tix Form geometry manager
230 See Tix documentation for complete details"""
274 """A TixWidget class is used to package all (or most) Tix widgets.
278 the creation command (so called Tix 'static' options). These cannot be
281 child widgets created automatically by a Tix mega-widget. The Tk call
313 # corresponding Tk widget has already been created by Tix
322 # use the children list because the public Tix names may not be the
414 # existence in Tk/Tix.
419 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.
1252 The advantage of the Tix PopupMenu widget is it requires less application
1279 # There seems to be a Tix bug rejecting the configure method
1775 '''The Tix Grid command creates a new window and makes it into a
1781 Each cell may contain one Tix display item, which may be in text,
1783 about Tix display items. Individual cells, or groups of cells, can be