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