X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/12028905135250524409f1e7b9bfa9c55e5ce16b..09e28f7f8d30588bb94f9f8c4c974830f7e377e2:/include/wx/gtk/checkbox.h?ds=sidebyside diff --git a/include/wx/gtk/checkbox.h b/include/wx/gtk/checkbox.h index 11f89e0a47..e48a048938 100644 --- a/include/wx/gtk/checkbox.h +++ b/include/wx/gtk/checkbox.h @@ -10,15 +10,11 @@ #ifndef __GTKCHECKBOXH__ #define __GTKCHECKBOXH__ -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface -#endif - // ---------------------------------------------------------------------------- // wxCheckBox // ---------------------------------------------------------------------------- -class wxCheckBox : public wxCheckBoxBase +class WXDLLIMPEXP_CORE wxCheckBox : public wxCheckBoxBase { public: wxCheckBox(); @@ -45,10 +41,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 +59,9 @@ public: protected: virtual wxSize DoGetBestSize() const; + void DoSet3StateValue(wxCheckBoxState state); + wxCheckBoxState DoGet3StateValue() const; + private: DECLARE_DYNAMIC_CLASS(wxCheckBox) };