]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/gtk/checkbox.h
1. changed all "wxMBConv& conv" parameters to "const wxMBConv&"
[wxWidgets.git] / include / wx / gtk / checkbox.h
index 2d262a097823b7d3a19bad8d44f36936330cde32..a1ed20538c76ee3fd84f85f1f1c873f557f691c1 100644 (file)
 #ifndef __GTKCHECKBOXH__
 #define __GTKCHECKBOXH__
 
-#if defined(__GNUG__) && !defined(__APPLE__)
-#pragma interface
-#endif
-
 // ----------------------------------------------------------------------------
 // wxCheckBox
 // ----------------------------------------------------------------------------
 
-class wxCheckBox : public wxCheckBoxBase
+class WXDLLIMPEXP_CORE wxCheckBox : public wxCheckBoxBase
 {
 public:
     wxCheckBox();
@@ -45,10 +41,12 @@ public:
     virtual void SetLabel( const wxString& label );
     virtual bool Enable( bool enable = TRUE );
 
+    static wxVisualAttributes
+    GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
+
     // implementation
     // --------------
 
-    void ApplyWidgetStyle();
     bool IsOwnGtkWindow( GdkWindow *window );
     void OnInternalIdle();
 
@@ -59,6 +57,10 @@ public:
 
 protected:
     virtual wxSize DoGetBestSize() const;
+    void DoApplyWidgetStyle(GtkRcStyle *style);
+
+    void DoSet3StateValue(wxCheckBoxState state);
+    wxCheckBoxState DoGet3StateValue() const;
 
 private:
     DECLARE_DYNAMIC_CLASS(wxCheckBox)