]> git.saurik.com Git - wxWidgets.git/blame - interface/choicebk.h
added convenient wxON_BLOCK_EXIT_THISn() macros wrapping wxON_BLOCK_EXIT_OBJn(*this)
[wxWidgets.git] / interface / choicebk.h
CommitLineData
23324ae1
FM
1/////////////////////////////////////////////////////////////////////////////
2// Name: choicebk.h
e54c96f1 3// Purpose: interface of wxChoicebook
23324ae1
FM
4// Author: wxWidgets team
5// RCS-ID: $Id$
6// Licence: wxWindows license
7/////////////////////////////////////////////////////////////////////////////
8
9/**
10 @class wxChoicebook
11 @wxheader{choicebk.h}
7c913512 12
23324ae1
FM
13 wxChoicebook is a class similar to wxNotebook but which
14 uses a wxChoice 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 wxChoicebook in
21 action.
7c913512 22
23324ae1
FM
23 wxChoicebook allows the use of wxBookCtrl::GetControlSizer, allowing a program
24 to add other controls next to the choice control. This is particularly useful
25 when screen space is restricted, as it often is when wxChoicebook is being
26 employed.
7c913512 27
23324ae1
FM
28 @beginStyleTable
29 @style{wxCHB_DEFAULT}:
30 Choose the default location for the labels depending on the current
31 platform (left everywhere except Mac where it is top).
32 @style{wxCHB_TOP}:
33 Place labels above the page area.
34 @style{wxCHB_LEFT}:
35 Place labels on the left side.
36 @style{wxCHB_RIGHT}:
37 Place labels on the right side.
38 @style{wxCHB_BOTTOM}:
39 Place labels below the page area.
40 @endStyleTable
7c913512 41
23324ae1
FM
42 @library{wxcore}
43 @category{miscwnd}
7c913512 44
e54c96f1 45 @see wxBookCtrl(), wxNotebook, @ref overview_samplenotebook "notebook sample"
23324ae1
FM
46*/
47class wxChoicebook : public wxBookCtrl overview
48{
49public:
50 //@{
51 /**
52 Constructs a choicebook control.
53 */
54 wxChoicebook();
7c913512
FM
55 wxChoicebook(wxWindow* parent, wxWindowID id,
56 const wxPoint& pos = wxDefaultPosition,
57 const wxSize& size = wxDefaultSize,
58 long style = 0,
59 const wxString& name = wxEmptyStr);
23324ae1
FM
60 //@}
61};
e54c96f1 62