X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/c3e016e45e2e64b6fbf1eecfdd07448044995b93..870cf35c4596571462c5e2d1395428b135196b98:/include/wx/aui/auibook.h diff --git a/include/wx/aui/auibook.h b/include/wx/aui/auibook.h index fe6ba7da57..15eae356c0 100644 --- a/include/wx/aui/auibook.h +++ b/include/wx/aui/auibook.h @@ -494,7 +494,14 @@ public: const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0); - + + void SetWindowStyleFlag(long style); + void SetArtProvider(wxAuiTabArt* art); + wxAuiTabArt* GetArtProvider() const; + + virtual void SetUniformBitmapSize(const wxSize& size); + virtual void SetTabCtrlHeight(int height); + bool AddPage(wxWindow* page, const wxString& caption, bool select = false, @@ -509,7 +516,9 @@ public: bool DeletePage(size_t page); bool RemovePage(size_t page); - void SetWindowStyleFlag(long style); + size_t GetPageCount() const; + wxWindow* GetPage(size_t page_idx) const; + int GetPageIndex(wxWindow* page_wnd) const; bool SetPageText(size_t page, const wxString& text); wxString GetPageText(size_t page_idx) const; @@ -520,17 +529,8 @@ public: size_t SetSelection(size_t new_page); int GetSelection() const; - size_t GetPageCount() const; - wxWindow* GetPage(size_t page_idx) const; - - int GetPageIndex(wxWindow* page_wnd) const; - - void SetArtProvider(wxAuiTabArt* art); - wxAuiTabArt* GetArtProvider() const; - - virtual void SetUniformBitmapSize(const wxSize& size); - virtual void SetTabCtrlHeight(int height); - + virtual void Split(size_t page, int direction); + protected: // these can be overridden