]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/radiobox.h
do the VC6 hacks only when compiling with VC6
[wxWidgets.git] / include / wx / msw / radiobox.h
index 45cb608755ecde52ad3d5fe04550593a512d8853..86a837aa9f1fa460c14b70bd2f1ba74a4229c274 100644 (file)
@@ -115,6 +115,9 @@ public:
     // it to behave normally
     virtual bool AcceptsFocus() const { return wxControl::AcceptsFocus(); }
 
+    // returns true if the platform should explicitly apply a theme border
+    virtual bool CanApplyThemeBorder() const { return false; }
+
     void SetLabelFont(const wxFont& WXUNUSED(font)) {}
     void SetButtonFont(const wxFont& font) { SetFont(font); }
 
@@ -156,6 +159,10 @@ protected:
     // the buttons we contain
     wxSubwindows *m_radioButtons;
 
+    // and the special dummy button used only as a tab group boundary
+    WXHWND m_dummyHwnd;
+    wxWindowIDRef m_dummyId;
+
     // array of widths and heights of the buttons, may be wxDefaultCoord if the
     // corresponding quantity should be computed
     int *m_radioWidth;