tkinter.tix.tixCommand.tix_resetoptions()

tixCommand.tix_resetoptions(newScheme, newFontSet[, newScmPrio]) Resets the scheme and fontset of the Tix application to newScheme and newFontSet, respectively. This affects only those widgets created after this call. Therefore, it is best to call the resetoptions method before the creation of any widgets in a Tix application. The optional parameter newScmPrio can be given to reset the priority level of the Tk options set by the Tix schemes. Because of the way Tk handles the X option databas

tkinter.tix.tixCommand.tix_addbitmapdir()

tixCommand.tix_addbitmapdir(directory) Tix maintains a list of directories under which the tix_getimage() and tix_getbitmap() methods will search for image files. The standard bitmap directory is $TIX_LIBRARY/bitmaps. The tix_addbitmapdir() method adds directory into this list. By using this method, the image files of an applications can also be located using the tix_getimage() or tix_getbitmap() method.

tkinter.tix.tixCommand.tix_configure()

tixCommand.tix_configure(cnf=None, **kw) Query or modify the configuration options of the Tix application context. If no option is specified, returns a dictionary all of the available options. If option is specified with no value, then the method returns a list describing the one named option (this list will be identical to the corresponding sublist of the value returned if no option is specified). If one or more option-value pairs are specified, then the method modifies the given option(s)

tkinter.tix.StdButtonBox

class tkinter.tix.StdButtonBox The StdButtonBox widget is a group of standard buttons for Motif-like dialog boxes.

tkinter.tix.tixCommand.tix_cget()

tixCommand.tix_cget(option) Returns the current value of the configuration option given by option. Option may be any of the configuration options.

tkinter.tix.tixCommand

class tkinter.tix.tixCommand The tix commands provide access to miscellaneous elements of Tix‘s internal state and the Tix application context. Most of the information manipulated by these methods pertains to the application as a whole, or to a screen or display, rather than to a particular window. To view the current settings, the common usage is: from tkinter import tix root = tix.Tk() print(root.tix_configure())

tkinter.tix.Meter

class tkinter.tix.Meter The Meter widget can be used to show the progress of a background job which may take a long time to execute.

tkinter.tix.ListNoteBook

class tkinter.tix.ListNoteBook The ListNoteBook widget is very similar to the TixNoteBook widget: it can be used to display many windows in a limited space using a notebook metaphor. The notebook is divided into a stack of pages (windows). At one time only one of these pages can be shown. The user can navigate through these pages by choosing the name of the desired page in the hlist subwidget.

tkinter.tix.PopupMenu

class tkinter.tix.PopupMenu The PopupMenu widget can be used as a replacement of the tk_popup command. The advantage of the Tix PopupMenu widget is it requires less application code to manipulate.

tkinter.tix.Select

class tkinter.tix.Select The Select widget is a container of button subwidgets. It can be used to provide radio-box or check-box style of selection options for the user.