|
See the file man.macros. NAMEtixListNoteBook - Create and manipulate tixListNoteBook widgetsSYNOPSIStixListNoteBook pathName ?options?STANDARD OPTIONSThe ListNoteBook widget supports all the standard options of a frame widget. See the options(n) manual entry for details on the standard options.WIDGET-SPECIFIC OPTIONS[-dynamicgeometry dynamicGeometry] If set to false, the size of the ListNotebook will match the size of the largest page. If set to true, the size of the ListNotebook will match the size of the current page (therefore, the size may change when the user selects different pages). The default value is false. A setting of true is discouraged. [-ipadx ipadX] The amount of internal horizontal paddings around the sides of the page subwidgets. [-ipady ipadY] The amount of internal vertical paddings around the sides of the page subwidgets.SUBWIDGETSName: hlist Class: TixHList
In addition, all the page subwidgets created as a result of the add command can be accessed by the subwidget command. They are identified by the pageName parameter to the add command. DESCRIPTIONThe tixListNoteBook command creates a new window (given by the pathName argument) and makes it into a ListNoteBook widget. Additional options, described above, may be specified on the command line or in the option database to configure aspects of the ListNoteBook widget such as its cursor and relief.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" metaphore. 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. WIDGET COMMANDSThe tixListNoteBook command creates a new Tcl command whose name is the same as the path name of the ListNoteBook widget's window. This command may be used to invoke various operations on the widget. It has the following general form:pathName option ?arg arg ...?
PathName is the name of the command, which is the same as the
ListNoteBook widget's path name. Option and the args determine
the exact behavior of the command. The following commands are possible for
ListNoteBook widgets:
EXAMPLEset n [tixListNoteBook .n]; pack $n $n subwidget hlist add page1 -text "Page 1" $n subwidget hlist add page2 -text "Page 2"set page1 [$n add page1] set page2 [$n add page2] button $page1.b -text "On page1" button $page2.b -text "On page2" pack $page1.b pack $page2.b $n raise page2 BINDINGSWhen the user activates an entry in the hlist subwidget, the page associated with that entry will be raised to the front. This can be done by using the mouse or keyboard. The hlist subwidget operates with its -selectmode option set to single. See the event bindings of the HList widget for more details.KEYWORDSTix(n), tixHList(n)
Visit the GSP FreeBSD Man Page Interface. |