2008-03-08 13:52:38 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: choicebk.h
|
2008-03-10 15:24:38 +00:00
|
|
|
// Purpose: interface of wxChoicebook
|
2008-03-08 13:52:38 +00:00
|
|
|
// Author: wxWidgets team
|
|
|
|
// RCS-ID: $Id$
|
|
|
|
// Licence: wxWindows license
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
/**
|
|
|
|
@class wxChoicebook
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-04-05 09:12:23 +00:00
|
|
|
wxChoicebook is a class similar to wxNotebook, but uses a wxChoice control
|
|
|
|
to show the labels instead of the tabs.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-10-13 10:27:19 +00:00
|
|
|
For usage documentation of this class, please refer to the base abstract class
|
|
|
|
wxBookCtrl. You can also use the @ref page_samples_notebook to see wxChoicebook in
|
|
|
|
action.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-04-05 09:12:23 +00:00
|
|
|
wxChoicebook allows the use of wxBookCtrlBase::GetControlSizer(), allowing
|
|
|
|
a program to add other controls next to the choice control. This is
|
|
|
|
particularly useful when screen space is restricted, as it often is when
|
|
|
|
wxChoicebook is being employed.
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@beginStyleTable
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxCHB_DEFAULT}
|
2008-03-08 13:52:38 +00:00
|
|
|
Choose the default location for the labels depending on the current
|
|
|
|
platform (left everywhere except Mac where it is top).
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxCHB_TOP}
|
2008-03-08 13:52:38 +00:00
|
|
|
Place labels above the page area.
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxCHB_LEFT}
|
2008-03-08 13:52:38 +00:00
|
|
|
Place labels on the left side.
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxCHB_RIGHT}
|
2008-03-08 13:52:38 +00:00
|
|
|
Place labels on the right side.
|
2008-04-06 14:43:04 +00:00
|
|
|
@style{wxCHB_BOTTOM}
|
2008-03-08 13:52:38 +00:00
|
|
|
Place labels below the page area.
|
|
|
|
@endStyleTable
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-08-01 13:46:46 +00:00
|
|
|
@beginEventTable{wxBookCtrlEvent}
|
2008-04-06 14:43:04 +00:00
|
|
|
@event{EVT_CHOICEBOOK_PAGE_CHANGED(id, func)}
|
2008-10-13 10:27:19 +00:00
|
|
|
The page selection was changed.
|
|
|
|
Processes a @c wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED event.
|
2008-04-06 14:43:04 +00:00
|
|
|
@event{EVT_CHOICEBOOK_PAGE_CHANGING(id, func)}
|
2008-10-13 10:27:19 +00:00
|
|
|
The page selection is about to be changed.
|
|
|
|
Processes a @c wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING event.
|
|
|
|
This event can be vetoed (using wxNotifyEvent::Veto()).
|
2008-04-05 09:12:23 +00:00
|
|
|
@endEventTable
|
|
|
|
|
2008-03-08 13:52:38 +00:00
|
|
|
@library{wxcore}
|
|
|
|
@category{miscwnd}
|
2008-10-13 19:55:46 +00:00
|
|
|
@appearance{choicebook.png}
|
2008-03-08 14:43:31 +00:00
|
|
|
|
2008-04-05 09:12:23 +00:00
|
|
|
@see @ref overview_bookctrl, wxNotebook, @ref page_samples_notebook
|
2008-03-08 13:52:38 +00:00
|
|
|
*/
|
2008-04-05 09:12:23 +00:00
|
|
|
class wxChoicebook : public wxBookCtrlBase
|
2008-03-08 13:52:38 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
//@{
|
|
|
|
/**
|
|
|
|
Constructs a choicebook control.
|
|
|
|
*/
|
|
|
|
wxChoicebook();
|
2008-03-08 14:43:31 +00:00
|
|
|
wxChoicebook(wxWindow* parent, wxWindowID id,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxString& name = wxEmptyStr);
|
2008-03-08 13:52:38 +00:00
|
|
|
//@}
|
2008-04-05 09:12:23 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
Returns the wxChoice associated with the control.
|
|
|
|
*/
|
|
|
|
wxChoice * GetChoiceCtrl() const;
|
2008-03-08 13:52:38 +00:00
|
|
|
};
|
2008-03-10 15:24:38 +00:00
|
|
|
|