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