X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/1d6fcbcc7088e9c104b3dc5b4704a07f728d55ae..5b464d6bbd088e122bca53f2a4a4ce1f09378de4:/include/wx/choicebk.h diff --git a/include/wx/choicebk.h b/include/wx/choicebk.h index 06a071c237..fc6490cf8a 100644 --- a/include/wx/choicebk.h +++ b/include/wx/choicebk.h @@ -17,18 +17,26 @@ #if wxUSE_CHOICEBOOK #include "wx/bookctrl.h" +#include "wx/choice.h" -class WXDLLEXPORT wxChoice; +class WXDLLIMPEXP_FWD_CORE wxChoice; extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED; extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGING; +// wxChoicebook flags +#define wxCHB_DEFAULT wxBK_DEFAULT +#define wxCHB_TOP wxBK_TOP +#define wxCHB_BOTTOM wxBK_BOTTOM +#define wxCHB_LEFT wxBK_LEFT +#define wxCHB_RIGHT wxBK_RIGHT +#define wxCHB_ALIGN_MASK wxBK_ALIGN_MASK // ---------------------------------------------------------------------------- // wxChoicebook // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxChoicebook : public wxBookCtrlBase +class WXDLLIMPEXP_CORE wxChoicebook : public wxBookCtrlBase { public: wxChoicebook() @@ -83,18 +91,14 @@ protected: // get the size which the choice control should have virtual wxSize GetControllerSize() const; - int DoSetSelection(size_t nPage, int flags = 0); - void UpdateSelectedPage(size_t newsel) { m_selection = newsel; GetChoiceCtrl()->Select(newsel); } - void MakeChangedEvent(wxBookCtrlBaseEvent &event) - { - event.SetEventType(wxEVT_COMMAND_CHOICEBOOK_PAGE_CHANGED); - } + wxBookCtrlBaseEvent* CreatePageChangingEvent() const; + void MakeChangedEvent(wxBookCtrlBaseEvent &event); // event handlers void OnChoiceSelected(wxCommandEvent& event); @@ -114,7 +118,7 @@ private: // choicebook event class and related stuff // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxChoicebookEvent : public wxBookCtrlBaseEvent +class WXDLLIMPEXP_CORE wxChoicebookEvent : public wxBookCtrlBaseEvent { public: wxChoicebookEvent(wxEventType commandType = wxEVT_NULL, int id = 0,