]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/msw/checkbox.h
Make wxTLW::Raise() actually bring the window to the top
[wxWidgets.git] / include / wx / msw / checkbox.h
index 57603fc9a05c66995cda71ad43fde1d4b3b132ce..c15b226eda6343a777e945ab25acb3d5a025f5d8 100644 (file)
@@ -12,7 +12,7 @@
 #ifndef _WX_CHECKBOX_H_
 #define _WX_CHECKBOX_H_
 
-#ifdef __GNUG__
+#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
 #pragma interface "checkbox.h"
 #endif
 
@@ -45,16 +45,18 @@ public:
     virtual void SetValue(bool value);
     virtual bool GetValue() const;
 
-    virtual void SetLabel(const wxString& label);
-
     virtual bool MSWCommand(WXUINT param, WXWORD id);
     virtual void Command(wxCommandEvent& event);
 
 protected:
     virtual wxSize DoGetBestSize() const;
+    virtual WXHBRUSH MSWGetDefaultBgBrush();
+
+    virtual void DoSet3StateValue(wxCheckBoxState value);
+    virtual wxCheckBoxState DoGet3StateValue() const;
 
 private:
-    DECLARE_DYNAMIC_CLASS(wxCheckBox)
+    DECLARE_DYNAMIC_CLASS_NO_COPY(wxCheckBox)
 };
 
 #endif