X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f40fdaa339e19bbdf60c9c065c82daae4ca77b36..13d843f1c15fe721f03d933c600cd5ca62944003:/include/wx/gtk/checkbox.h?ds=sidebyside diff --git a/include/wx/gtk/checkbox.h b/include/wx/gtk/checkbox.h index aa2c495d44..c4639026ff 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(); @@ -47,14 +43,10 @@ public: static wxVisualAttributes GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); - + // implementation // -------------- - void DoApplyWidgetStyle(GtkRcStyle *style); - bool IsOwnGtkWindow( GdkWindow *window ); - void OnInternalIdle(); - GtkWidget *m_widgetCheckbox; GtkWidget *m_widgetLabel; @@ -62,6 +54,11 @@ public: protected: virtual wxSize DoGetBestSize() const; + virtual void DoApplyWidgetStyle(GtkRcStyle *style); + virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; + + void DoSet3StateValue(wxCheckBoxState state); + wxCheckBoxState DoGet3StateValue() const; private: DECLARE_DYNAMIC_CLASS(wxCheckBox)