]>
Commit | Line | Data |
---|---|---|
1 | ///////////////////////////////////////////////////////////////////////////// | |
2 | // Name: toolbook.h | |
3 | // Purpose: interface of wxToolbook | |
4 | // Author: wxWidgets team | |
5 | // RCS-ID: $Id$ | |
6 | // Licence: wxWindows license | |
7 | ///////////////////////////////////////////////////////////////////////////// | |
8 | ||
9 | /** | |
10 | @class wxToolbook | |
11 | @wxheader{toolbook.h} | |
12 | ||
13 | wxToolbook is a class similar to wxNotebook but which uses a wxToolBar to | |
14 | show the labels instead of the tabs. | |
15 | ||
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. | |
20 | ||
21 | @beginStyleTable | |
22 | @style{wxTBK_BUTTONBAR} | |
23 | Use wxButtonToolBar-based implementation under Mac OS (ignored under | |
24 | other platforms). | |
25 | @style{wxTBK_HORZ_LAYOUT} | |
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). | |
29 | @endStyleTable | |
30 | ||
31 | The common wxBookCtrl styles described in the @ref overview_bookctrl are | |
32 | also supported. | |
33 | ||
34 | @library{wxcore} | |
35 | @category{miscwnd} | |
36 | ||
37 | @see @ref overview_bookctrl, wxBookCtrlBase, wxNotebook, | |
38 | @ref page_samples_notebook | |
39 | */ | |
40 | class wxToolbook : public wxBookCtrlBase | |
41 | { | |
42 | public: | |
43 | ||
44 | }; | |
45 |