X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/6b0d8a01d184b8d410238677b2cfc0e3059e1268..1f30c17645c56f85178ee780fa330d954e45cea9:/include/wx/gtk/checkbox.h?ds=sidebyside diff --git a/include/wx/gtk/checkbox.h b/include/wx/gtk/checkbox.h index 408c860413..bcf031c96e 100644 --- a/include/wx/gtk/checkbox.h +++ b/include/wx/gtk/checkbox.h @@ -10,7 +10,7 @@ #ifndef __GTKCHECKBOXH__ #define __GTKCHECKBOXH__ -#ifdef __GNUG__ +#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) };