X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/77ffb5937e89927b621128789401db8921fe580f..9b49405777342458dc1666001865eef7309b6c30:/include/wx/gtk/checkbox.h diff --git a/include/wx/gtk/checkbox.h b/include/wx/gtk/checkbox.h index d3cb7dc59e..3e86b4c495 100644 --- a/include/wx/gtk/checkbox.h +++ b/include/wx/gtk/checkbox.h @@ -4,21 +4,17 @@ // Author: Robert Roebling // Id: $Id$ // Copyright: (c) 1998 Robert Roebling -// Licence: wxWidgets licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #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,21 +43,22 @@ public: static wxVisualAttributes GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); - - // implementation - // -------------- - 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)