tkinter.tix.tixCommand.tix_filedialog()

tixCommand.tix_filedialog([dlgclass]) Returns the file selection dialog that may be shared among different calls from this application. This method will create a file selection dialog widget when it is called the first time. This dialog will be returned by all subsequent calls to tix_filedialog(). An optional dlgclass parameter can be passed as a string to specified what type of file selection dialog widget is desired. Possible options are tix, FileSelectDialog or tixExFileSelectDialog.

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.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.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

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.StdButtonBox

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

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.

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.PanedWindow

class tkinter.tix.PanedWindow The PanedWindow widget allows the user to interactively manipulate the sizes of several panes. The panes can be arranged either vertically or horizontally. The user changes the sizes of the panes by dragging the resize handle between two panes.

tkinter.tix.OptionMenu

class tkinter.tix.OptionMenu The OptionMenu creates a menu button of options.