]>
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 | |
f992f2ae BP |
13 | wxToolbook is a class similar to wxNotebook but which uses a wxToolBar to |
14 | show the labels instead of the tabs. | |
7c913512 | 15 | |
f992f2ae BP |
16 | There is no documentation for this class yet but its usage is identical to |
17 | wxNotebook (except for the features clearly related to tabs only), so please | |
18 | refer to that class documentation for now. You can also use the | |
19 | @ref page_samples_notebook to see wxToolbook in action. | |
7c913512 | 20 | |
23324ae1 | 21 | @beginStyleTable |
8c6791e4 | 22 | @style{wxTBK_BUTTONBAR} |
f992f2ae BP |
23 | Use wxButtonToolBar-based implementation under Mac OS (ignored under |
24 | other platforms). | |
8c6791e4 | 25 | @style{wxTBK_HORZ_LAYOUT} |
f992f2ae BP |
26 | Shows the text and the icons alongside, not vertically stacked (only |
27 | implement under Windows and GTK 2 platforms as it relies on @c | |
28 | wxTB_HORZ_LAYOUT flag support). | |
23324ae1 | 29 | @endStyleTable |
7c913512 | 30 | |
f992f2ae BP |
31 | The common wxBookCtrl styles described in the @ref overview_bookctrl are |
32 | also supported. | |
33 | ||
23324ae1 | 34 | @library{wxcore} |
f992f2ae | 35 | @category{miscwnd} |
7c913512 | 36 | |
f992f2ae BP |
37 | @see @ref overview_bookctrl, wxBookCtrlBase, wxNotebook, |
38 | @ref page_samples_notebook | |
23324ae1 | 39 | */ |
f992f2ae | 40 | class wxToolbook : public wxBookCtrlBase |
23324ae1 FM |
41 | { |
42 | public: | |
7c913512 | 43 | |
23324ae1 | 44 | }; |
e54c96f1 | 45 |