X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/64d3ed176d5b88473b69c7ab63075d50608d2f66..13d4419b86d028b3e7e32b0f94cc45c40dd9551c:/include/wx/toolbook.h?ds=sidebyside diff --git a/include/wx/toolbook.h b/include/wx/toolbook.h index 472054e467..c6b60383d5 100644 --- a/include/wx/toolbook.h +++ b/include/wx/toolbook.h @@ -18,17 +18,29 @@ #include "wx/bookctrl.h" -class WXDLLEXPORT wxToolBarBase; -class WXDLLEXPORT wxCommandEvent; +class WXDLLIMPEXP_FWD_CORE wxToolBarBase; +class WXDLLIMPEXP_FWD_CORE wxCommandEvent; + +extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED; +extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING; + // Use wxButtonToolBar -#define wxBK_BUTTONBAR 0x0100 +#define wxTBK_BUTTONBAR 0x0100 + +// Use wxTB_HORZ_LAYOUT style for the controlling toolbar +#define wxTBK_HORZ_LAYOUT 0x8000 + +// deprecated synonym, don't use +#if WXWIN_COMPATIBILITY_2_8 + #define wxBK_BUTTONBAR wxTBK_BUTTONBAR +#endif // ---------------------------------------------------------------------------- // wxToolbook // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxToolbook : public wxBookCtrlBase +class WXDLLIMPEXP_CORE wxToolbook : public wxBookCtrlBase { public: wxToolbook() @@ -57,6 +69,7 @@ public: const wxString& name = wxEmptyString); + // implement base class virtuals virtual int GetSelection() const; virtual bool SetPageText(size_t n, const wxString& strText); virtual wxString GetPageText(size_t n) const; @@ -68,15 +81,21 @@ public: const wxString& text, bool bSelect = false, int imageId = -1); - virtual int SetSelection(size_t n); + virtual int SetSelection(size_t n) { return DoSetSelection(n, SetSelection_SendEvent); } + virtual int ChangeSelection(size_t n) { return DoSetSelection(n); } virtual void SetImageList(wxImageList *imageList); virtual bool DeleteAllPages(); + virtual int HitTest(const wxPoint& pt, long *flags = NULL) const; + + // methods which are not part of base wxBookctrl API + + // get the underlying toolbar wxToolBarBase* GetToolBar() const { return (wxToolBarBase*)m_bookctrl; } - // Not part of the wxBookctrl API, but must be called in OnIdle or - // by application to realize the toolbar and select the initial page. + // must be called in OnIdle or by application to realize the toolbar and + // select the initial page. void Realize(); protected: @@ -90,6 +109,11 @@ protected: void OnSize(wxSizeEvent& event); void OnIdle(wxIdleEvent& event); + void UpdateSelectedPage(size_t newsel); + + wxBookCtrlBaseEvent* CreatePageChangingEvent() const; + void MakeChangedEvent(wxBookCtrlBaseEvent &event); + // the currently selected page or wxNOT_FOUND if none int m_selection; @@ -97,7 +121,7 @@ protected: bool m_needsRealizing; // maximum bitmap size - wxSize m_maxBitmapSize; + wxSize m_maxBitmapSize; private: // common part of all constructors @@ -111,7 +135,7 @@ private: // listbook event class and related stuff // ---------------------------------------------------------------------------- -class WXDLLEXPORT wxToolbookEvent : public wxBookCtrlBaseEvent +class WXDLLIMPEXP_CORE wxToolbookEvent : public wxBookCtrlBaseEvent { public: wxToolbookEvent(wxEventType commandType = wxEVT_NULL, int id = 0, @@ -131,9 +155,6 @@ private: DECLARE_DYNAMIC_CLASS_NO_ASSIGN(wxToolbookEvent) }; -extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGED; -extern WXDLLIMPEXP_CORE const wxEventType wxEVT_COMMAND_TOOLBOOK_PAGE_CHANGING; - typedef void (wxEvtHandler::*wxToolbookEventFunction)(wxToolbookEvent&); #define wxToolbookEventHandler(func) \