wxAuiNotebook is part of the wxAUI class framework, which represents a notebook
control, managing multiple windows with associated tabs.
See also overview_aui.
wxAuiNotebook is a notebook control which implements many features common in
applications with dockable panes. Specifically, wxAuiNotebook implements functionality
which allows the user to rearrange tab order via drag-and-drop, split the tab window into
many different splitter configurations, and toggle through different themes to customize
the control's look and feel.
The default theme that is used is wxAuiDefaultTabArt (not implemented in wx), which
provides a modern, glossy look and feel. The theme can be changed by calling setArtProvider/2.
Styles
This class supports the following styles:
wxAUI_NB_DEFAULT_STYLE: Defined as wxAUI_NB_TOP | wxAUI_NB_TAB_SPLIT | wxAUI_NB_TAB_MOVE | wxAUI_NB_SCROLL_BUTTONS | wxAUI_NB_CLOSE_ON_ACTIVE_TAB | wxAUI_NB_MIDDLE_CLICK_CLOSE.
wxAUI_NB_TAB_SPLIT: Allows the tab control to be split by dragging a tab.
wxAUI_NB_TAB_MOVE: Allows a tab to be moved horizontally by dragging.
wxAUI_NB_TAB_EXTERNAL_MOVE: Allows a tab to be moved to another tab control.
wxAUI_NB_TAB_FIXED_WIDTH: With this style, all tabs have the same width.
wxAUI_NB_SCROLL_BUTTONS: With this style, left and right scroll buttons are displayed.
wxAUI_NB_WINDOWLIST_BUTTON: With this style, a drop-down list of windows is available.
wxAUI_NB_CLOSE_BUTTON: With this style, a close button is available on the tab bar.
wxAUI_NB_CLOSE_ON_ACTIVE_TAB: With this style, the close button is visible on the active tab.
wxAUI_NB_CLOSE_ON_ALL_TABS: With this style, the close button is visible on all tabs.
wxAUI_NB_MIDDLE_CLICK_CLOSE: With this style, middle click on a tab closes the tab.
wxAUI_NB_TOP: With this style, tabs are drawn along the top of the notebook.
wxAUI_NB_BOTTOM: With this style, tabs are drawn along the bottom of the notebook.
This class is derived, and can use functions, from:
wxWidgets docs: wxAuiNotebook
Events
Event types emitted from this class:
Summary
Functions
Adds a page.
Adds a new page.
Creates the notebook window.
Constructs the book control with the given parameters.
Deletes a page at the given index.
Destroys the object
Returns the associated art provider.
Returns the page specified by the given index.
Returns the tab bitmap for the page.
Returns the number of pages in the notebook.
Returns the page index for the specified window.
Returns the tab label for the page.
Returns the currently selected page.
insertPage/6 is similar to AddPage, but allows the ability to specify the insert
location.
Inserts a new page at the specified position.
Default ctor.
Constructor.
Removes a page, without deleting the window pointer.
Sets the art provider to be used by the notebook.
Sets the font for drawing the tab labels, using a bold version of the font for selected tab labels.
Sets the bitmap for the page.
Sets the tab label for the page.
Sets the page selection.
Sets the tab height.
Ensure that all tabs have the same height, even if some of them don't have bitmaps.
Types
-type wxAuiNotebook() :: wx:wx_object().
Functions
-spec addPage(This, Page, Caption) -> boolean() when This :: wxAuiNotebook(), Page :: wxWindow:wxWindow(), Caption :: unicode:chardata().
-spec addPage(This, Page, Caption, [Option]) -> boolean() when This :: wxAuiNotebook(), Page :: wxWindow:wxWindow(), Caption :: unicode:chardata(), Option :: {select, boolean()} | {bitmap, wxBitmap:wxBitmap()}.
Adds a page.
If the select parameter is true, calling this will generate a page change event.
addPage(This, Page, Text, Select, ImageId) -> boolean()
Types
This = wxAuiNotebook()
Page = wxWindow:wxWindow()
Text = unicode:chardata()
Select = boolean()
ImageId = integer()
Adds a new page.
The page must have the book control itself as the parent and must not have been added to this control previously.
The call to this function may generate the page changing events.
Return: true if successful, false otherwise.
Remark: Do not delete the page, it will be deleted by the book control.
See: insertPage/6
Since: 2.9.3
-spec create(This, Parent) -> boolean() when This :: wxAuiNotebook(), Parent :: wxWindow:wxWindow().
-spec create(This, Parent, Winid) -> boolean() when This :: wxAuiNotebook(), Parent :: wxWindow:wxWindow(), Winid :: integer(); (This, Parent, [Option]) -> boolean() when This :: wxAuiNotebook(), Parent :: wxWindow:wxWindow(), Option :: {id, integer()} | {pos, {X :: integer(), Y :: integer()}} | {size, {W :: integer(), H :: integer()}} | {style, integer()}.
Creates the notebook window.
-spec create(This, Parent, Winid, [Option]) -> boolean() when This :: wxAuiNotebook(), Parent :: wxWindow:wxWindow(), Winid :: integer(), Option :: {pos, {X :: integer(), Y :: integer()}} | {size, {W :: integer(), H :: integer()}} | {style, integer()}.
Constructs the book control with the given parameters.
deletePage(This :: wxAuiNotebook(), Page :: integer()) -> boolean()
Deletes a page at the given index.
Calling this method will generate a page change event.
destroy(This :: wxAuiNotebook()) -> ok
Destroys the object
getArtProvider(This :: wxAuiNotebook()) -> Result
Types
Result = wxAuiTabArt:wxAuiTabArt()
Returns the associated art provider.
getPage(This :: wxAuiNotebook(), Page_idx :: integer()) -> wxWindow:wxWindow()
Returns the page specified by the given index.
getPageBitmap(This :: wxAuiNotebook(), Page :: integer()) -> wxBitmap:wxBitmap()
Returns the tab bitmap for the page.
getPageCount(This :: wxAuiNotebook()) -> integer()
Returns the number of pages in the notebook.
getPageIndex(This, Page_wnd) -> integer()
Returns the page index for the specified window.
If the window is not found in the notebook, wxNOT_FOUND is returned.
getPageText(This :: wxAuiNotebook(), Page :: integer()) -> unicode:charlist()
Returns the tab label for the page.
getSelection(This :: wxAuiNotebook()) -> integer()
Returns the currently selected page.
-spec insertPage(This, Page_idx, Page, Caption) -> boolean() when This :: wxAuiNotebook(), Page_idx :: integer(), Page :: wxWindow:wxWindow(), Caption :: unicode:chardata().
-spec insertPage(This, Page_idx, Page, Caption, [Option]) -> boolean() when This :: wxAuiNotebook(), Page_idx :: integer(), Page :: wxWindow:wxWindow(), Caption :: unicode:chardata(), Option :: {select, boolean()} | {bitmap, wxBitmap:wxBitmap()}.
insertPage/6 is similar to AddPage, but allows the ability to specify the insert
location.
If the select parameter is true, calling this will generate a page change event.
insertPage(This, Index, Page, Text, Select, ImageId) -> boolean()
Types
This = wxAuiNotebook()
Index = ImageId = integer()
Page = wxWindow:wxWindow()
Text = unicode:chardata()
Select = boolean()
Inserts a new page at the specified position.
Return: true if successful, false otherwise.
Remark: Do not delete the page, it will be deleted by the book control.
See: addPage/5
Since: 2.9.3
new() -> wxAuiNotebook()
Default ctor.
-spec new(Parent) -> wxAuiNotebook() when Parent :: wxWindow:wxWindow().
-spec new(Parent, [Option]) -> wxAuiNotebook() when Parent :: wxWindow:wxWindow(), Option :: {id, integer()} | {pos, {X :: integer(), Y :: integer()}} | {size, {W :: integer(), H :: integer()}} | {style, integer()}.
Constructor.
Creates a wxAuiNotebok control.
removePage(This :: wxAuiNotebook(), Page :: integer()) -> boolean()
Removes a page, without deleting the window pointer.
setArtProvider(This :: wxAuiNotebook(), Art :: wxAuiTabArt:wxAuiTabArt()) -> ok
Sets the art provider to be used by the notebook.
setFont(This :: wxAuiNotebook(), Font :: wxFont:wxFont()) -> boolean()
Sets the font for drawing the tab labels, using a bold version of the font for selected tab labels.
setPageBitmap(This, Page, Bitmap) -> boolean()
Sets the bitmap for the page.
To remove a bitmap from the tab caption, pass wxNullBitmap.
setPageText(This, Page, Text) -> boolean()
Sets the tab label for the page.
setSelection(This :: wxAuiNotebook(), New_page :: integer()) -> integer()
Sets the page selection.
Calling this method will generate a page change event.
setTabCtrlHeight(This :: wxAuiNotebook(), Height :: integer()) -> ok
Sets the tab height.
By default, the tab control height is calculated by measuring the text height and bitmap
sizes on the tab captions. Calling this method will override that calculation and set the
tab control to the specified height parameter. A call to this method will override any
call to setUniformBitmapSize/2.
Specifying -1 as the height will return the control to its default auto-sizing behaviour.
Ensure that all tabs have the same height, even if some of them don't have bitmaps.
Passing ?wxDefaultSize as size undoes the effect of a previous call to this function
and instructs the control to use dynamic tab height.