X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/ab7ce33c563651f790f99d64ee56727706047ae3..63e2147c8b027645682e0e4cd013a3f30bbd3483:/include/wx/gtk1/checkbox.h diff --git a/include/wx/gtk1/checkbox.h b/include/wx/gtk1/checkbox.h index 2d262a0978..bcf031c96e 100644 --- a/include/wx/gtk1/checkbox.h +++ b/include/wx/gtk1/checkbox.h @@ -10,7 +10,7 @@ #ifndef __GTKCHECKBOXH__ #define __GTKCHECKBOXH__ -#if defined(__GNUG__) && !defined(__APPLE__) +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface #endif @@ -45,10 +45,13 @@ public: virtual void SetLabel( const wxString& label ); virtual bool Enable( bool enable = TRUE ); + static wxVisualAttributes + GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); + // implementation // -------------- - void ApplyWidgetStyle(); + void DoApplyWidgetStyle(GtkRcStyle *style); bool IsOwnGtkWindow( GdkWindow *window ); void OnInternalIdle(); @@ -60,6 +63,11 @@ public: protected: virtual wxSize DoGetBestSize() const; +#ifdef __WXGTK20__ + void DoSet3StateValue(wxCheckBoxState state); + wxCheckBoxState DoGet3StateValue() const; +#endif + private: DECLARE_DYNAMIC_CLASS(wxCheckBox) };