]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/bookctrl.h
declare file-related APIs missing under Palm (pflib-missing.diff part of patch 1894861)
[wxWidgets.git] / include / wx / bookctrl.h
index 181946ae04976796d90c748f4c8a77f2e0f2741c..f791d2550af972bdad609f4e0291e2930d04fd89 100644 (file)
@@ -96,7 +96,6 @@ public:
     virtual size_t GetPageCount() const { return m_pages.size(); }
 
     // get the panel which represents the given page
-    wxWindow *GetPage(size_t n) { return m_pages[n]; }
     wxWindow *GetPage(size_t n) const { return m_pages[n]; }
 
     // get the current page or NULL if none
@@ -233,6 +232,9 @@ public:
     // we don't want focus for ourselves
     virtual bool AcceptsFocus() const { return false; }
 
+    // returns true if the platform should explicitly apply a theme border
+    virtual bool CanApplyThemeBorder() const { return false; }
+
 protected:
     // flags for DoSetSelection()
     enum
@@ -240,6 +242,9 @@ protected:
         SetSelection_SendEvent = 1
     };
 
+    // choose the default border for this window
+    virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
+
     // set the selection to the given page, sending the events (which can
     // possibly prevent the page change from taking place) if SendEvent flag is
     // included