]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/auinotebook.tex
don't declare inline function with dllexport declaration, this provokes mingw32 warni...
[wxWidgets.git] / docs / latex / wx / auinotebook.tex
CommitLineData
c0d9896a
BW
1%
2% automatically generated by HelpGen $Revision$ from
3% auibook.h at 11/Nov/06 22:56:01
4%
5
c0d9896a
BW
6\section{\class{wxAuiNotebook}}\label{wxauinotebook}
7
b88d16d3 8wxAuiNotebook is part of the wxAUI class framework.
683b60e9
BW
9See also \helpref{wxAUI overview}{wxauioverview}.
10
8ffbb0f8
JS
11wxAuiNotebook is a notebook control which implements many features common in applications with dockable panes.
12Specifically, wxAuiNotebook implements functionality which allows the user to rearrange tab order via drag-and-drop,
13split the tab window into many different splitter configurations, and toggle through different themes to customize
14the control's look and feel.
574c6e1a
BW
15
16An effort has been made to try to maintain an API as similar to that of wxNotebook.
17
8ffbb0f8
JS
18The default theme that is used is wxAuiDefaultTabArt, which provides a modern, glossy look and feel.
19The theme can be changed by calling \helpref{wxAuiNotebook::SetArtProvider}{wxauinotebooksetartprovider}.
574c6e1a 20
c0d9896a
BW
21\wxheading{Derived from}
22
23\helpref{wxControl}{wxcontrol}
24
25\wxheading{Include files}
26
8ffbb0f8 27<wx/aui/auibook.h>
c0d9896a 28
b88d16d3
BW
29
30\wxheading{Window styles}
31
32\twocolwidtha{5cm}%
33\begin{twocollist}\itemsep=0pt
34\twocolitem{\windowstyle{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
35.}
36\twocolitem{\windowstyle{wxAUI\_NB\_TAB\_SPLIT}}{Allows the tab control to be split by dragging a tab.}
37\twocolitem{\windowstyle{wxAUI\_NB\_TAB\_MOVE}}{Allows a tab to be moved horizontally by dragging.}
38\twocolitem{\windowstyle{wxAUI\_NB\_TAB\_EXTERNAL\_MOVE}}{Allows a tab to be moved to another tab control.}
39\twocolitem{\windowstyle{wxAUI\_NB\_TAB\_FIXED\_WIDTH}}{With this style, all tabs have the same width.}
40\twocolitem{\windowstyle{wxAUI\_NB\_SCROLL\_BUTTONS}}{With this style, left and right scroll buttons are displayed.}
41\twocolitem{\windowstyle{wxAUI\_NB\_WINDOWLIST\_BUTTON}}{With this style, a drop-down list of windows is available.}
42\twocolitem{\windowstyle{wxAUI\_NB\_CLOSE\_BUTTON}}{With this style, a close button is available on the tab bar.}
43\twocolitem{\windowstyle{wxAUI\_NB\_CLOSE\_ON\_ACTIVE\_TAB}}{With this style, the close button is visible on the active tab.}
44\twocolitem{\windowstyle{wxAUI\_NB\_CLOSE\_ON\_ALL\_TABS}}{With this style, the close button is visible on all tabs.}
45\end{twocollist}
46
47
c0d9896a
BW
48\wxheading{Data structures}
49
50\latexignore{\rtfignore{\wxheading{Members}}}
51
c0d9896a
BW
52\membersection{wxAuiNotebook::wxAuiNotebook}\label{wxauinotebookwxauinotebook}
53
54\func{}{wxAuiNotebook}{\void}
55
c0d9896a
BW
56\func{}{wxAuiNotebook}{\param{wxWindow* }{parent}, \param{wxWindowID }{id = wxID\_ANY}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize}, \param{long }{style = wxAUI\_NB\_DEFAULT\_STYLE}}
57
8ffbb0f8 58Constructor. Creates a wxAuiNotebok control.
c0d9896a
BW
59
60\membersection{wxAuiNotebook::AddPage}\label{wxauinotebookaddpage}
61
62\func{bool}{AddPage}{\param{wxWindow* }{page}, \param{const wxString\& }{caption}, \param{bool }{select = false}, \param{const wxBitmap\& }{bitmap = wxNullBitmap}}
63
683b60e9 64Adds a page. If the {\it select} parameter is true, calling this will generate a page change event.
c0d9896a 65
c0d9896a
BW
66\membersection{wxAuiNotebook::Create}\label{wxauinotebookcreate}
67
68\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID }{id = wxID\_ANY}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize}, \param{long }{style = 0}}
69
8ffbb0f8 70Creates the notebook window.
c0d9896a
BW
71
72\membersection{wxAuiNotebook::DeletePage}\label{wxauinotebookdeletepage}
73
74\func{bool}{DeletePage}{\param{size\_t }{page}}
75
683b60e9 76Deletes a page at the given index. Calling this method will generate a page change event.
c0d9896a
BW
77
78\membersection{wxAuiNotebook::GetArtProvider}\label{wxauinotebookgetartprovider}
79
80\constfunc{wxAuiTabArt*}{GetArtProvider}{\void}
81
8ffbb0f8 82Returns the associated art provider.
c0d9896a
BW
83
84\membersection{wxAuiNotebook::GetPage}\label{wxauinotebookgetpage}
85
86\constfunc{wxWindow*}{GetPage}{\param{size\_t }{page\_idx}}
87
8ffbb0f8 88Returns the page specified by the given index.
c0d9896a 89
c3e016e4
JS
90\membersection{wxAuiNotebook::GetPageBitmap}\label{wxauinotebookgetpagebitmap}
91
92\constfunc{wxBitmap}{GetPageBitmap}{\param{size\_t }{page}}
93
94Returns the tab bitmap for the page.
95
c0d9896a
BW
96\membersection{wxAuiNotebook::GetPageCount}\label{wxauinotebookgetpagecount}
97
98\constfunc{size\_t}{GetPageCount}{\void}
99
b88d16d3 100Returns the number of pages in the notebook.
c0d9896a
BW
101
102\membersection{wxAuiNotebook::GetPageIndex}\label{wxauinotebookgetpageindex}
103
104\constfunc{int}{GetPageIndex}{\param{wxWindow* }{page\_wnd}}
105
e2622169
VZ
106Returns the page index for the specified window. If the window is not found in
107the notebook, wxNOT\_FOUND is returned.
c0d9896a 108
c3e016e4
JS
109\membersection{wxAuiNotebook::GetPageText}\label{wxauinotebookgetpagetext}
110
111\constfunc{wxString}{GetPageText}{\param{size\_t }{page}}
112
113Returns the tab label for the page.
114
c0d9896a
BW
115\membersection{wxAuiNotebook::GetSelection}\label{wxauinotebookgetselection}
116
117\constfunc{int}{GetSelection}{\void}
118
8ffbb0f8 119Returns the currently selected page.
c0d9896a
BW
120
121\membersection{wxAuiNotebook::InsertPage}\label{wxauinotebookinsertpage}
122
123\func{bool}{InsertPage}{\param{size\_t }{page\_idx}, \param{wxWindow* }{page}, \param{const wxString\& }{caption}, \param{bool }{select = false}, \param{const wxBitmap\& }{bitmap = wxNullBitmap}}
124
b88d16d3
BW
125InsertPage() is similar to AddPage, but allows the ability to specify the insert location.
126If the {\it select} parameter is true, calling this will generate a page change event.
c0d9896a 127
c0d9896a
BW
128\membersection{wxAuiNotebook::RemovePage}\label{wxauinotebookremovepage}
129
130\func{bool}{RemovePage}{\param{size\_t }{page}}
131
683b60e9 132Removes a page, without deleting the window pointer.
c0d9896a
BW
133
134\membersection{wxAuiNotebook::SetArtProvider}\label{wxauinotebooksetartprovider}
135
136\func{void}{SetArtProvider}{\param{wxAuiTabArt* }{art}}
137
8ffbb0f8 138Sets the art provider to be used by the notebook.
c0d9896a
BW
139
140\membersection{wxAuiNotebook::SetPageBitmap}\label{wxauinotebooksetpagebitmap}
141
142\func{bool}{SetPageBitmap}{\param{size\_t }{page}, \param{const wxBitmap\& }{bitmap}}
143
b88d16d3
BW
144Sets the bitmap for the page. To remove a bitmap from the tab caption, pass
145wxNullBitmap.
c0d9896a
BW
146
147\membersection{wxAuiNotebook::SetPageText}\label{wxauinotebooksetpagetext}
148
149\func{bool}{SetPageText}{\param{size\_t }{page}, \param{const wxString\& }{text}}
150
683b60e9 151Sets the tab label for the page.
c0d9896a
BW
152
153\membersection{wxAuiNotebook::SetSelection}\label{wxauinotebooksetselection}
154
155\func{size\_t}{SetSelection}{\param{size\_t }{new\_page}}
156
683b60e9 157Sets the page selection. Calling this method will generate a page change event.
c0d9896a
BW
158
159\membersection{wxAuiNotebook::SetTabCtrlHeight}\label{wxauinotebooksettabctrlheight}
160
161\func{void}{SetTabCtrlHeight}{\param{int }{height}}
162
b88d16d3
BW
163Sets the tab height. By default, the tab control height is calculated
164by measuring the text height and bitmap sizes on the tab captions. Calling this
165method will override that calculation and set the tab control to the specified
166height parameter. A call to this method will override any call to SetUniformBitmapSize().
167Specifying -1 as the height will return the control to its default auto-sizing behaviour.
168
169\membersection{wxAuiNotebook::SetUniformBitmapSize}\label{wxauinotebooksetuniformbitmapsize}
170
171\func{void}{SetUniformBitmapSize}{\param{const wxSize\& }{size}}
c0d9896a 172
b88d16d3
BW
173SetUniformBitmapSize() ensures that all tabs will have the same height, even
174if some tabs don't have bitmaps. Passing wxDefaultSize to this function will
175instruct the control to use dynamic tab height, which is the default behaviour.
176Under the default behaviour, when a tab with a large bitmap is added, the tab control's
177height will automatically increase to accommodate the larger bitmap.
2e56b9d7 178
e2622169 179\func{void}{Split}{\param{size\_t }{page}, \param{int }{direction}}
e319bb30
BW
180
181Split performs a split operation programmatically. The argument \arg{page} indicates
182the page that will be split off. This page will also become the active page after the
183split. The \arg{direction} argument specifies where the pane should go, it should be one
184of the following: wxTOP, wxBOTTOM, wxLEFT, or wxRIGHT.
185
186
187
188
189