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

class tkinter.tix.NoteBook The NoteBook widget can be used to display many windows in a limited space using a notebook metaphor. The notebook is divided into a stack of pages. At one time only one of these pages can be shown. The user can navigate through these pages by choosing the visual “tabs” at the top of the NoteBook widget.

tkinter.tix.OptionMenu

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

tkinter.tix.FileSelectBox

class tkinter.tix.FileSelectBox The FileSelectBox is similar to the standard Motif(TM) file-selection box. It is generally used for the user to choose a file. FileSelectBox stores the files mostly recently selected into a ComboBox widget so that they can be quickly selected again.

tkinter.tix.InputOnly

class tkinter.tix.InputOnly The InputOnly widgets are to accept inputs from the user, which can be done with the bind command (Unix only).

tkinter.tix.HList

class tkinter.tix.HList The HList widget can be used to display any data that have a hierarchical structure, for example, file system directory trees. The list entries are indented and connected by branch lines according to their places in the hierarchy.

tkinter.tix.LabelFrame

class tkinter.tix.LabelFrame The LabelFrame widget packages a frame widget and a label into one mega widget. To create widgets inside a LabelFrame widget, one creates the new widgets relative to the frame subwidget and manage them inside the frame subwidget.

tkinter.tix.LabelEntry

class tkinter.tix.LabelEntry The LabelEntry widget packages an entry widget and a label into one mega widget. It can be used to simplify the creation of “entry-form” type of interface.

tkinter.tix.ExFileSelectBox

class tkinter.tix.ExFileSelectBox The ExFileSelectBox widget is usually embedded in a tixExFileSelectDialog widget. It provides a convenient method for the user to select files. The style of the ExFileSelectBox widget is very similar to the standard file dialog on MS Windows 3.1.

tkinter.tix.FileEntry

class tkinter.tix.FileEntry The FileEntry widget can be used to input a filename. The user can type in the filename manually. Alternatively, the user can press the button widget that sits next to the entry, which will bring up a file selection dialog.