X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/8907154c1a8a6882c6797d1f16393ddfb23e7f3a..1aeae3f7d419ee8ec295988a72d1091265cd268c:/include/wx/gtk/checkbox.h?ds=sidebyside diff --git a/include/wx/gtk/checkbox.h b/include/wx/gtk/checkbox.h index 555a708d26..5ae9c7fb47 100644 --- a/include/wx/gtk/checkbox.h +++ b/include/wx/gtk/checkbox.h @@ -7,8 +7,8 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifndef __GTKCHECKBOXH__ -#define __GTKCHECKBOXH__ +#ifndef _WX_GTKCHECKBOX_H_ +#define _WX_GTKCHECKBOX_H_ // ---------------------------------------------------------------------------- // wxCheckBox @@ -39,33 +39,29 @@ public: bool GetValue() const; virtual void SetLabel( const wxString& label ); - virtual bool Enable( bool enable = TRUE ); + virtual bool Enable( bool enable = true ); 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; - - bool m_blockEvent; protected: virtual wxSize DoGetBestSize() const; + virtual void DoApplyWidgetStyle(GtkRcStyle *style); + virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const; -#ifdef __WXGTK20__ void DoSet3StateValue(wxCheckBoxState state); wxCheckBoxState DoGet3StateValue() const; -#endif + +public: + // implementation + void GTKDisableEvents(); + void GTKEnableEvents(); + + GtkWidget *m_widgetCheckbox; + GtkWidget *m_widgetLabel; private: DECLARE_DYNAMIC_CLASS(wxCheckBox) }; -#endif // __GTKCHECKBOXH__ +#endif // _WX_GTKCHECKBOX_H_