]> git.saurik.com Git - wxWidgets.git/blob - interface/toolbook.h
improved rendering of styles and events sections: put the description of those items...
[wxWidgets.git] / interface / toolbook.h
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
14 uses a wxToolBar to show the labels instead of the
15 tabs.
16
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.
22
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
32
33 @library{wxcore}
34 @category{FIXME}
35
36 @see wxBookCtrl(), wxNotebook, @ref overview_samplenotebook "notebook sample"
37 */
38 class wxToolbook : public wxBookCtrl overview
39 {
40 public:
41
42 };
43