]>
Commit | Line | Data |
---|---|---|
f5e0b4bc WS |
1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
2 | %% Name: choicebk.tex | |
3 | %% Purpose: wxChoicebook documentation | |
4 | %% Author: Vadim Zeitlin | |
5 | %% Modified by: Wlodzimierz ABX Skiba from listbook.tex | |
6 | %% Created: 15.09.04 | |
7 | %% RCS-ID: $Id$ | |
8 | %% Copyright: (c) Vadim Zeitlin, Wlodzimierz Skiba | |
9 | %% License: wxWidgets license | |
10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
11 | ||
12 | \section{\class{wxChoicebook}}\label{wxchoicebook} | |
13 | ||
14 | wxChoicebook is a class similar to \helpref{wxNotebook}{wxnotebook} but which | |
15 | uses a \helpref{wxChoice}{wxchoice} to show the labels instead of the | |
16 | tabs. | |
17 | ||
18 | There is no documentation for this class yet but its usage is | |
19 | identical to wxNotebook (except for the features clearly related to tabs | |
20 | only), so please refer to that class documentation for now. You can also | |
21 | use the \helpref{notebook sample}{samplenotebook} to see wxChoicebook in action. | |
22 | ||
23 | \wxheading{Derived from} | |
24 | ||
25 | \helpref{wxControl}{wxcontrol}\\ | |
26 | \helpref{wxWindow}{wxwindow}\\ | |
27 | \helpref{wxEvtHandler}{wxevthandler}\\ | |
28 | \helpref{wxObject}{wxobject} | |
29 | ||
30 | \wxheading{Include files} | |
31 | ||
32 | <wx/choicebk.h> | |
33 | ||
34 | \wxheading{Window styles} | |
35 | ||
36 | \twocolwidtha{5cm} | |
37 | \begin{twocollist}\itemsep=0pt | |
38 | ||
39 | \twocolitem{\windowstyle{wxCHB\_DEFAULT}}{Choose the default location for the | |
40 | labels depending on the current platform (left everywhere except Mac where | |
41 | it is top).} | |
42 | \twocolitem{\windowstyle{wxCHB\_TOP}}{Place labels above the page area.} | |
43 | \twocolitem{\windowstyle{wxCHB\_LEFT}}{Place labels on the left side.} | |
44 | \twocolitem{\windowstyle{wxCHB\_RIGHT}}{Place labels on the right side.} | |
45 | \twocolitem{\windowstyle{wxCHB\_BOTTOM}}{Place labels below the page area.} | |
46 | ||
47 | \end{twocollist} | |
48 | ||
49 | \wxheading{See also} | |
50 | ||
b742a43b | 51 | \helpref{wxBookCtrl}{wxbookctrloverview}, \helpref{wxNotebook}{wxnotebook}, \helpref{notebook sample}{samplenotebook} |
f5e0b4bc | 52 |