]>
Commit | Line | Data |
---|---|---|
23324ae1 FM |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: toolbook.h | |
e54c96f1 | 3 | // Purpose: interface of wxToolbook |
23324ae1 FM |
4 | // Author: wxWidgets team |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | @class wxToolbook | |
11 | @wxheader{toolbook.h} | |
7c913512 | 12 | |
23324ae1 FM |
13 | wxToolbook is a class similar to wxNotebook but which |
14 | uses a wxToolBar 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 wxToolbook in | |
21 | action. | |
7c913512 | 22 | |
23324ae1 FM |
23 | @beginStyleTable |
24 | @style{wxTBK_BUTTONBAR}: | |
25 | Use wxButtonToolBar-based implementation under Mac OS (ignored | |
26 | under other platforms.) | |
27 | @style{wxTBK_HORZ_LAYOUT}: | |
28 | Shows the text and the icons alongside, not vertically stacked | |
29 | (only implement under Windows and GTK 2 platforms as it relies on | |
30 | wxTB_HORZ_LAYOUT flag support). | |
31 | @endStyleTable | |
7c913512 | 32 | |
23324ae1 FM |
33 | @library{wxcore} |
34 | @category{FIXME} | |
7c913512 | 35 | |
e54c96f1 | 36 | @see wxBookCtrl(), wxNotebook, @ref overview_samplenotebook "notebook sample" |
23324ae1 FM |
37 | */ |
38 | class wxToolbook : public wxBookCtrl overview | |
39 | { | |
40 | public: | |
7c913512 | 41 | |
23324ae1 | 42 | }; |
e54c96f1 | 43 |