X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/10ff9c616e00e4074dfdc2ac9e354605cc129c22..14b44999eb335f3fc84b4362980b1730b8887588:/include/wx/gtk/tglbtn.h?ds=sidebyside diff --git a/include/wx/gtk/tglbtn.h b/include/wx/gtk/tglbtn.h index 1a656e6c09..0886c2dcc4 100644 --- a/include/wx/gtk/tglbtn.h +++ b/include/wx/gtk/tglbtn.h @@ -7,7 +7,7 @@ // Created: 08.02.01 // RCS-ID: $Id$ // Copyright: (c) 2000 Johnny C. Norris II -// License: wxWindows licence +// Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// #ifndef _WX_GTK_TOGGLEBUTTON_H_ @@ -22,12 +22,6 @@ class WXDLLIMPEXP_FWD_CORE wxToggleButton; class WXDLLIMPEXP_FWD_CORE wxToggleBitmapButton; -//----------------------------------------------------------------------------- -// global data -//----------------------------------------------------------------------------- - -extern WXDLLIMPEXP_CORE const char wxCheckBoxNameStr[]; - //----------------------------------------------------------------------------- // wxBitmapToggleButton //----------------------------------------------------------------------------- @@ -65,23 +59,27 @@ public: // Set the label virtual void SetLabel(const wxString& label) { wxControl::SetLabel(label); } virtual void SetLabel(const wxBitmap& label); - bool Enable(bool enable = TRUE); + bool Enable(bool enable = true); static wxVisualAttributes GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); // implementation - bool m_blockEvent; wxBitmap m_bitmap; void OnSetBitmap(); protected: + void GTKDisableEvents(); + void GTKEnableEvents(); + virtual wxSize DoGetBestSize() const; virtual void DoApplyWidgetStyle(GtkRcStyle *style); virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; private: + typedef wxToggleButtonBase base_type; + DECLARE_DYNAMIC_CLASS(wxBitmapToggleButton) }; @@ -121,20 +119,22 @@ public: // Set the label void SetLabel(const wxString& label); - bool Enable(bool enable = TRUE); + bool Enable(bool enable = true); static wxVisualAttributes GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); - - // implementation - bool m_blockEvent; protected: + void GTKDisableEvents(); + void GTKEnableEvents(); + virtual wxSize DoGetBestSize() const; virtual void DoApplyWidgetStyle(GtkRcStyle *style); virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; private: + typedef wxToggleButtonBase base_type; + DECLARE_DYNAMIC_CLASS(wxToggleButton) };