]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/statbox.h
don't hardcode 16/32 as sizes for small/normal icons (fixes bug 1862812)
[wxWidgets.git] / include / wx / msw / statbox.h
index c6e3cf91ab8f94bb0ac372b10505b7cc6ce9ffd1..e51ede32cfd9f29826daf0edae56a644df7c0d1d 100644 (file)
@@ -38,17 +38,19 @@ public:
     /// Implementation only
     virtual void GetBordersForSizer(int *borderTop, int *borderOther) const;
 
-protected:
-    virtual wxSize DoGetBestSize() const;
+    virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
 
-    // choose the default border for this window
-    virtual wxBorder GetDefaultBorder() const;
+    // returns true if the platform should explicitly apply a theme border
+    virtual bool CanApplyThemeBorder() const { return false; }
 
-    virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
+protected:
+    virtual wxSize DoGetBestSize() const;
 
 #ifndef __WXWINCE__
+public:
     virtual WXLRESULT MSWWindowProc(WXUINT nMsg, WXWPARAM wParam, WXLPARAM lParam);
 
+protected:
     // return the region with all the windows inside this static box excluded
     virtual WXHRGN MSWGetRegionWithoutChildren();