]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/bookctrl.h
fixed incorrect use of wxVector<> in wxXRC
[wxWidgets.git] / include / wx / bookctrl.h
index 181946ae04976796d90c748f4c8a77f2e0f2741c..60ceefc8554bbef470ba25280bb2ac1790a58dab 100644 (file)
@@ -233,6 +233,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 +243,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