notebook - create and manipulate notebook widgets

SYNOPSIS

notebook pathName ?options?

INHERITANCE

itk::Widget <- notebook

STANDARD OPTIONS

background
cursor
foreground
height
scrollCommand
width

See the "options" manual entry for details on the standard options.

WIDGET-SPECIFIC OPTIONS

Name:                   auto
Class:                  Auto
Command-Line Switch:	-auto

DESCRIPTION

The notebook command creates a new window (given by the pathName argument) and makes it into a notebook widget. Additional options, described above may be specified on the command line or in the option database to configure aspects of the notebook such as its colors, font, and text. The notebook command returns its pathName argument. At the time this command is invoked, there must not exist a window named pathName, but pathName's parent must exist. A notebook is a widget that contains a set of pages. It displays one page from the set as the selected page. When a page is selected, the page's contents are displayed in the page area. When first created a notebook has no pages. Pages may be added or deleted using widget commands described below.

NOTEBOOK PAGES

A notebook's pages area contains a single child site frame. When a new page is created it is a child of this frame. The page's child site frame serves as a geometry container for applications to pack widgets into. It is this frame that is automatically unpacked or packed when the auto option is true. This creates the effect of one page being visible at a time. When a new page is selected, the previously selected page's child site frame is automatically unpacked from the notebook's child site frame and the newly selected page's child site is packed into the notebook's child site frame. However, sometimes it is desirable to handle page changes in a different manner. By specifying the auto option as false, child site packing can be disabled and done differently. For example, all widgets might be packed into the first page's child site frame. Then when a new page is selected, the application can reconfigure the widgets and give the appearance that the page was flipped. In both cases the command option for a page specifies a Tcl Command to execute when the page is selected. In the case of auto being true, it is called between the unpacking of the previously selected page and the packing of the newly selected page.

WIDGET-SPECIFIC METHODS

The notebookfR command creates a new Tcl command whose name is pathName. This command may be used to invoke various operations on the widget. It has the following general form:

pathName option ?arg arg ...?
option and the args determine the exact behavior of the command.

Many of the widget commands for a notebook take as one argument an indicator of which page of the notebook to operate on. These indicators are called indexes and may be specified in any of the following forms:

number
Specifies the index of the the component. For menus, 0 corresponds to the left-most menu of the menu bar. For entries, 0 corresponds to the top-most entry of the menu. number Specifies the page numerically, where 0 corresponds to the first page in the notebook, 1 to the second, and so on.
select
Specifies the currently selected page's index. If no page is currently selected, the value -1 is returned.
end
Specifes the last page in the notebooks's index. If the notebook is empty this will return -1.
pattern
If the index doesn't satisfy the form of a number, then this form is used. Pattern is pattern-matched against the label of each page in the notebook, in order from the first to the last page, until a matching entry is found. The rules of Tcl_StringMatch are used.

'............................................................................. The following commands are possible for notebook widgets:

pathName add ?option value?
Add a new page at the end of the notebook. A new child site frame is created. Returns the child site pathName. If additional arguments are present, they specify any of the following options:
pathName childSite ?index?
If passed no arguments, returns a list of pathNames for all the pages in the notebook. If the notebook is empty, an empty list is returned
pathName cget option
Returns the current value of the configuration option given by option.
pathName configure ?option? ?value option value ...?
Query or modify the configuration options of the widget. If no option is specified, returns a list describing all of the available options for pathName (see Tk_ConfigureInfo for information on the format of this list). If option is specified with no value, then the command 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 command modifies the given widget option(s) to have the given value(s); in this case the command returns an empty string. Option may have any of the values accepted by the notebook command.
pathName delete index1 ?index2?
Delete all of the pages between index1 and index2 inclusive. If index2 is omitted then it defaults to index1. Returns an empty string.
pathName index index
Returns the numerical index corresponding to index.
pathName insert index ?option value?
Insert a new page in the notebook before the page specified by index. A new child site frame is created. See the add command for valid options. Returns the child site pathName.
pathName next
Advances the selected page to the next page (order is determined by insertion order). If the currently selected page is the last page in the notebook, the selection wraps around to the first page in the notebook.
pathName pagecget index ?option?
Returns the current value of the configuration option given by option for the page specified by index. The valid available options are the same as available to the add command.
pathName pageconfigure index ?option? ?value option value ...?
This command is similar to the configure command, except that it applies to the options for an individual page, whereas configure applies to the options for the notebook. Options may have any of the values accepted by the add widget command. If options are specified, options are modified as indicated in the command and the command returns an empty string. If no options are specified, returns a list describing the current options for page index (see Tk_ConfigureInfo for information on the format of this list).
pathName prev
Moves the selected page to the previous page (order is determined by insertion order). If the currently selected page is the first page in the notebook, the selection wraps around to the last page in the notebook.
pathName select index
Selects the page specified by index as the currently selected page.
pathName view
Returns the currently selected page. This command is for compatibility with the scrollbar widget.
pathName view index
Selects the page specified by index as the currently selected page. This command is for compatibility with the scrollbar widget.
pathName view moveto fraction
Uses the fraction value to determine the corresponding page to move to. This command is for compatibility with the scrollbar widget.
pathName view scroll num what
Uses the num value to determine how many pages to move forward or backward (num can be negative or positive). The what argument is ignored. This command is for compatibility with the scrollbar widget.

EXAMPLE

Following is an example that creates a notebook with two pages. In this example, we use a scrollbar widget to control the notebook widget.

    the
    pack
    -width
    pack
    \\
    -expand
    left
    \\
    #
    to
    #
    "Page
    add
    .nb
    Two"
    Get
    frames
    pages.
    childsite
    [.nb

buttons
of
$page1CS.b
pack
-text
$page2CS.b
Select
of
select
#
and
#
together,
scrollbar
".nb
-scrollcommand
.scroll
yes

notebook
it.
100
.nb
-fill
yes
\\
-pady
Add
the
"Page
Two",
-label
add

the
of
set
0]
childsite

    on
    the
    -text
    $page1CS.b
    "Button

the
the
0
Create
associate
and
then
ScrollBar
view"
".scroll
-fill
-pady
#
widget
notebook
-height
-anchor
both
\\
-padx
10
two
notebook,
One"
respectively.
"Page
-label

    child
    these
    page1CS
    set
    "Page
    #
    each
    notebook
    "Button
    button
    Two"

      first
      notebook

    the
    teh
    the
    pack
    .scroll
    .nb
    set"
    y
    10
Create
and
.nb
100
nw
\\
-side
10

    pages
    labelled
    and
    .nb
    One"
    "Page
    #
    site
    two
    [.nb
    page2CS
    Two"]
    Create
    page
    button
    One"
    $page2CS.b
    pack
    #
    page
    .nb

      scrollbar
      scrollbar
      notebook
      the
      -command
      configure
      pack
      -expand

AUTHOR

Bill W. Scott

KEYWORDS

notebook page