]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/notebook.h
attempt to fix first click problem
[wxWidgets.git] / include / wx / notebook.h
index 8c18691b7c21e9648c041403ed3eac0f97713701..54ad1df040e9e4a36d0548a4bf4e5888e9c07089 100644 (file)
@@ -107,7 +107,7 @@ public:
     virtual void SetTabSize(const wxSize& sz) = 0;
 
     // calculate the size of the notebook from the size of its page
-    virtual wxSize CalcSizeFromPage(const wxSize& sizePage);
+    virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
 
     // operations
     // ----------
@@ -155,6 +155,8 @@ public:
 protected:
     // remove the page and return a pointer to it
     virtual wxNotebookPage *DoRemovePage(int page);
+       // return the minimum size large enough to display the largest page entirely
+       virtual wxSize DoGetBestSize() const;
 
     // common part of all ctors
     void Init();