X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/f40fdaa339e19bbdf60c9c065c82daae4ca77b36..80dcb89812d84f41567a69ff83769b26ab519468:/include/wx/gtk/checkbox.h diff --git a/include/wx/gtk/checkbox.h b/include/wx/gtk/checkbox.h index aa2c495d44..d9edb0a356 100644 --- a/include/wx/gtk/checkbox.h +++ b/include/wx/gtk/checkbox.h @@ -7,21 +7,18 @@ // Licence: wxWindows licence ///////////////////////////////////////////////////////////////////////////// -#ifndef __GTKCHECKBOXH__ -#define __GTKCHECKBOXH__ - -#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) -#pragma interface -#endif +#ifndef _WX_GTKCHECKBOX_H_ +#define _WX_GTKCHECKBOX_H_ // ---------------------------------------------------------------------------- // wxCheckBox // ---------------------------------------------------------------------------- -class wxCheckBox : public wxCheckBoxBase +class WXDLLIMPEXP_CORE wxCheckBox : public wxCheckBoxBase { public: wxCheckBox(); + ~wxCheckBox(); wxCheckBox( wxWindow *parent, wxWindowID id, const wxString& label, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = 0, @@ -43,28 +40,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 GTKDisableEvents(); + void GTKEnableEvents(); - void DoApplyWidgetStyle(GtkRcStyle *style); - bool IsOwnGtkWindow( GdkWindow *window ); - void OnInternalIdle(); +protected: + 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; +private: + typedef wxCheckBoxBase base_type; -protected: - virtual wxSize DoGetBestSize() const; + GtkWidget *m_widgetCheckbox; + GtkWidget *m_widgetLabel; -private: DECLARE_DYNAMIC_CLASS(wxCheckBox) }; -#endif // __GTKCHECKBOXH__ +#endif // _WX_GTKCHECKBOX_H_