X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/9d5371c60ba0cc628b00f11ff5c5f2c804a82858..f5a9eef7c76b6f13c09c3cafb30a91cf12c00b29:/include/wx/treebook.h diff --git a/include/wx/treebook.h b/include/wx/treebook.h index 7209e7c1fe..325aaa3521 100644 --- a/include/wx/treebook.h +++ b/include/wx/treebook.h @@ -138,9 +138,15 @@ public: virtual bool DeleteAllPages(); protected: + // Implementation of a page removal. See DeletPage for comments. + wxTreebookPage *DoRemovePage(size_t pos); + // This subclass of wxBookCtrlBase accepts NULL page pointers (empty pages) virtual bool AllowNullPage() const { return true; } + // return the page corresponding to the tab at the specified position + virtual int HitTest(const wxPoint& pt, long *flags = NULL) const; + // event handlers void OnTreeSelectionChange(wxTreeEvent& event); void OnTreeNodeExpandedCollapsed(wxTreeEvent& event); @@ -180,9 +186,6 @@ private: bool bSelect = false, int imageId = wxNOT_FOUND); - // Implementation of a page removal. See DeletPage for comments. - wxTreebookPage *DoRemovePage(size_t pos); - // Sets selection in the tree control and updates the page being shown. int DoSetSelection(size_t pos);