- NAME
- tixNBFrame - Create and manipulate Tix NoteBook Frame widgets
- SYNOPSIS
- tixNBFrame pathName ?options?
- STANDARD OPTIONS
-
-
-
-
- -background or -bg, background, Background
- -borderWidth
- -cursor, cursor, Cursor
- -disabledForeground
- -font, font, Font
- -foreground or -fg, foreground, Foreground
- -height
- -highlightColor
- -highlightThickness
- -relief, relief, Relief
- -takeFocus
- -width
- WIDGET-SPECIFIC OPTIONS
- -backpagecolor, backPageColor, BackPageColor
- -focuscolor, focusColor, FocusColor
- -inactivebackground, inactiveBackground, InactiveBackground
- -tabpadx, tabPadX, Pad
- -tabpady, tabPadY, Pad
- DESCRIPTION
- EXAMPLE
- KEYWORDS
tixNBFrame - Create and manipulate Tix NoteBook Frame widgets
tixNBFrame pathName ?options?
-
-
-
-
- -background or -bg, background, Background
- -borderWidth
- -cursor, cursor, Cursor
- -disabledForeground
- -font, font, Font
- -foreground or -fg, foreground, Foreground
- -height
- -highlightColor
- -highlightThickness
- -relief, relief, Relief
- -takeFocus
- -width
- Command-Line Name: -backpagecolor
- Database Name: backPageColor
- Database Class: BackPageColor
- Specifies the color for the extra space on the row of tabs which is
not covered by any page tabs.
- Command-Line Name: -focuscolor
- Database Name: focusColor
- Database Class: FocusColor
- Specifies the color for the focus highlight.
- Command-Line Name: -inactivebackground
- Database Name: inactiveBackground
- Database Class: InactiveBackground
- Specifies the color for the inactive tabs (the active tab always have
the same background color as the notebook).
- Command-Line Name: -tabpadx
- Database Name: tabPadX
- Database Class: Pad
- The horizontal padding around the text labels on the page tabs.
- Command-Line Name: -tabpady
- Database Name: tabPadY
- Database Class: Pad
- The vertical padding around the text labels on the page tabs.
The NBFrame widget is used privately inside the TixNoteBook
widget to display the page tabs. The application programmer should
never create a NBFrame widget directly. The sole purpose of this maual
page is to describe the options that can be used to configure the
appearance of the TixNoteBook widget.
The name of the NBFrame subwidget inside the TixNoteBook widget is
called nbframe. It can be accessed using the subwidget
command of the TixNoteBook widget or the -options switch. See
below for an example.
set nb [tixNoteBook .nb -options {
nbframe.BackPageColor gray60
}]
$nb subwidget nbframe config -font fixed
$nb add page1 -label "Page1"
set page [$nb subwidget page1]
button $page.b1
pack $page.b1
pack $nb -expand yes -fill both
Tix(n), tixNoteBook(n)
Copyright © 1993-1999 Ioi Kim Lam.
Copyright © 2000-2001 Tix Project Group.
Copyright © 1995-1997 Roger E. Critchlow Jr.