X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/12028905135250524409f1e7b9bfa9c55e5ce16b..32cdc45397d8c0a24735f84e1dcf83bba1980f2d:/include/wx/gtk/checkbox.h diff --git a/include/wx/gtk/checkbox.h b/include/wx/gtk/checkbox.h index 11f89e0a47..3e86b4c495 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,20 +41,24 @@ public: virtual void SetLabel( const wxString& label ); virtual bool Enable( bool enable = TRUE ); - // implementation - // -------------- + static wxVisualAttributes + GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); - void ApplyWidgetStyle(); - bool IsOwnGtkWindow( GdkWindow *window ); - void OnInternalIdle(); +protected: + virtual wxSize DoGetBestSize() const; + virtual void DoApplyWidgetStyle(GtkRcStyle *style); + virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; - GtkWidget *m_widgetCheckbox; - GtkWidget *m_widgetLabel; + void DoSet3StateValue(wxCheckBoxState state); + wxCheckBoxState DoGet3StateValue() const; - bool m_blockEvent; +public: + // implementation + void GTKDisableEvents(); + void GTKEnableEvents(); -protected: - virtual wxSize DoGetBestSize() const; + GtkWidget *m_widgetCheckbox; + GtkWidget *m_widgetLabel; private: DECLARE_DYNAMIC_CLASS(wxCheckBox)