]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/notebook.h
Applied patch [ 743248 ] wxArray::RemoveAt() error message fix
[wxWidgets.git] / include / wx / msw / notebook.h
index b6941fe64e4867bc3f449fe217be0cb5bc66eebb..a2e6f841837a8a0fd2b6c00865ccd518fc3a28a7 100644 (file)
@@ -103,6 +103,9 @@ public:
     // style.
   void SetTabSize(const wxSize& sz);
 
+  // calculate the size of the notebook from the size of its page
+  virtual wxSize CalcSizeFromPage(const wxSize& sizePage) const;
+
   // callbacks
   // ---------
   void OnSize(wxSizeEvent& event);
@@ -132,9 +135,14 @@ protected:
   // remove one page from the notebook, without deleting
   virtual wxNotebookPage *DoRemovePage(int nPage);
 
+  // set the size of the given page to fit in the notebook
+  void AdjustPageSize(wxNotebookPage *page);
+
+
   // the current selection (-1 if none)
   int m_nSelection;
 
+
   DECLARE_DYNAMIC_CLASS(wxNotebook)
   DECLARE_EVENT_TABLE()
 };