]>
Commit | Line | Data |
---|---|---|
e9c0df38 VZ |
1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
2 | %% Name: listbook.tex | |
3 | %% Purpose: wxListbook documentation | |
4 | %% Author: Vadim Zeitlin | |
5 | %% Modified by: | |
6 | %% Created: 22.08.03 | |
7 | %% RCS-ID: $Id$ | |
8 | %% Copyright: (c) 2003 Vadim Zeitlin <vadim@wxwindows.org> | |
8795498c | 9 | %% License: wxWindows license |
e9c0df38 VZ |
10 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
11 | ||
12 | \section{\class{wxListbook}}\label{wxlistbook} | |
13 | ||
14 | wxListbook is a class similar to \helpref{wxNotebook}{wxnotebook} but which | |
15 | uses a \helpref{wxListCtrl}{wxlistctrl} to show the labels instead of the | |
16 | tabs. | |
17 | ||
6b960526 | 18 | There is no documentation for this class yet but its usage is |
e9c0df38 VZ |
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 wxListbook in action. | |
22 | ||
23 | \wxheading{Derived from} | |
24 | ||
2d9152d5 | 25 | wxBookCtrlBase (see \helpref{wxBookCtrl overview}{wxbookctrloverview})\\ |
e9c0df38 VZ |
26 | \helpref{wxControl}{wxcontrol}\\ |
27 | \helpref{wxWindow}{wxwindow}\\ | |
28 | \helpref{wxEvtHandler}{wxevthandler}\\ | |
29 | \helpref{wxObject}{wxobject} | |
30 | ||
31 | \wxheading{Include files} | |
32 | ||
33 | <wx/listbook.h> | |
34 | ||
a7af285d VZ |
35 | \wxheading{Library} |
36 | ||
37 | \helpref{wxCore}{librarieslist} | |
38 | ||
e9c0df38 VZ |
39 | \wxheading{Window styles} |
40 | ||
41 | \twocolwidtha{5cm} | |
42 | \begin{twocollist}\itemsep=0pt | |
43 | ||
44 | \twocolitem{\windowstyle{wxLB\_DEFAULT}}{Choose the default location for the | |
45 | labels depending on the current platform (left everywhere except Mac where | |
46 | it is top).} | |
47 | \twocolitem{\windowstyle{wxLB\_TOP}}{Place labels above the page area.} | |
48 | \twocolitem{\windowstyle{wxLB\_LEFT}}{Place labels on the left side.} | |
49 | \twocolitem{\windowstyle{wxLB\_RIGHT}}{Place labels on the right side.} | |
50 | \twocolitem{\windowstyle{wxLB\_BOTTOM}}{Place labels below the page area.} | |
51 | ||
52 | \end{twocollist} | |
53 | ||
f13a38a5 RR |
54 | \input listbevt.inc |
55 | ||
e9c0df38 VZ |
56 | \wxheading{See also} |
57 | ||
b742a43b | 58 | \helpref{wxBookCtrl}{wxbookctrloverview}, \helpref{wxNotebook}{wxnotebook}, \helpref{notebook sample}{samplenotebook} |
6b960526 | 59 | |
f13a38a5 RR |
60 | \latexignore{\rtfignore{\wxheading{Members}}} |
61 | ||
62 | \membersection{wxListbook::wxListbook}\label{wxlistbookctor} | |
63 | ||
64 | \func{}{wxListbook}{\void} | |
65 | ||
66 | Default constructor. | |
67 | ||
68 | \func{}{wxListbook}{\param{wxWindow*}{ parent}, \param{wxWindowID }{id}, \param{const wxPoint\&}{ pos = wxDefaultPosition}, | |
69 | \param{const wxSize\&}{ size = wxDefaultSize}, \param{long}{ style = 0}, \param{const wxString\& }{name = wxEmptyStr}} | |
70 | ||
71 | Constructs a listbook control. | |
72 | ||
73 | \membersection{wxListbook::GetListView}\label{wxlistbookgetlistview} | |
74 | ||
75 | \constfunc{wxListView *}{GetListView}{\void} | |
76 | ||
77 | Returns the \helpref{wxListView}{wxlistview} associated with the control. |