]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: listbook.h | |
e54c96f1 | 3 | // Purpose: interface of wxListbook |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | @class wxListbook | |
11 | @wxheader{listbook.h} | |
7c913512 | 12 | |
23324ae1 FM |
13 | wxListbook is a class similar to wxNotebook but which |
14 | uses a wxListCtrl to show the labels instead of the | |
15 | tabs. | |
7c913512 | 16 | |
23324ae1 FM |
17 | There is no documentation for this class yet but its usage is |
18 | identical to wxNotebook (except for the features clearly related to tabs | |
19 | only), so please refer to that class documentation for now. You can also | |
20 | use the @ref overview_samplenotebook "notebook sample" to see wxListbook in | |
21 | action. | |
7c913512 | 22 | |
23324ae1 | 23 | @beginStyleTable |
8c6791e4 | 24 | @style{wxLB_DEFAULT} |
23324ae1 FM |
25 | Choose the default location for the labels depending on the current |
26 | platform (left everywhere except Mac where it is top). | |
8c6791e4 | 27 | @style{wxLB_TOP} |
23324ae1 | 28 | Place labels above the page area. |
8c6791e4 | 29 | @style{wxLB_LEFT} |
23324ae1 | 30 | Place labels on the left side. |
8c6791e4 | 31 | @style{wxLB_RIGHT} |
23324ae1 | 32 | Place labels on the right side. |
8c6791e4 | 33 | @style{wxLB_BOTTOM} |
23324ae1 FM |
34 | Place labels below the page area. |
35 | @endStyleTable | |
7c913512 | 36 | |
23324ae1 FM |
37 | @library{wxcore} |
38 | @category{miscwnd} | |
7c913512 | 39 | |
e54c96f1 | 40 | @see wxBookCtrl(), wxNotebook, @ref overview_samplenotebook "notebook sample" |
23324ae1 FM |
41 | */ |
42 | class wxListbook : public wxBookCtrl overview | |
43 | { | |
44 | public: | |
45 | //@{ | |
46 | /** | |
47 | Constructs a listbook control. | |
48 | */ | |
49 | wxListbook(); | |
7c913512 FM |
50 | wxListbook(wxWindow* parent, wxWindowID id, |
51 | const wxPoint& pos = wxDefaultPosition, | |
52 | const wxSize& size = wxDefaultSize, | |
53 | long style = 0, | |
54 | const wxString& name = wxEmptyStr); | |
23324ae1 FM |
55 | //@} |
56 | }; | |
e54c96f1 | 57 |