X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/20e05ffbd3eff02a4c643e412d4f600cdea26952..571d14b2621325840e465e1e55be9f5a362a5dbd:/include/wx/gtk/checkbox.h?ds=sidebyside diff --git a/include/wx/gtk/checkbox.h b/include/wx/gtk/checkbox.h index 562f783397..0fefb3c67c 100644 --- a/include/wx/gtk/checkbox.h +++ b/include/wx/gtk/checkbox.h @@ -1,5 +1,5 @@ ///////////////////////////////////////////////////////////////////////////// -// Name: checkbox.h +// Name: wx/gtk/checkbox.h // Purpose: // Author: Robert Roebling // Id: $Id$ @@ -10,35 +10,15 @@ #ifndef __GTKCHECKBOXH__ #define __GTKCHECKBOXH__ -#ifdef __GNUG__ +#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) #pragma interface #endif -#include "wx/defs.h" - -#if wxUSE_CHECKBOX - -#include "wx/object.h" -#include "wx/list.h" -#include "wx/control.h" - -//----------------------------------------------------------------------------- -// classes -//----------------------------------------------------------------------------- - -class wxCheckBox; - -//----------------------------------------------------------------------------- -// global data -//----------------------------------------------------------------------------- - -extern const char *wxCheckBoxNameStr; - -//----------------------------------------------------------------------------- +// ---------------------------------------------------------------------------- // wxCheckBox -//----------------------------------------------------------------------------- +// ---------------------------------------------------------------------------- -class wxCheckBox: public wxControl +class wxCheckBox : public wxCheckBoxBase { public: wxCheckBox(); @@ -62,9 +42,12 @@ public: void SetValue( bool state ); bool GetValue() const; - void SetLabel( const wxString& label ); - bool Enable( bool enable ); + virtual void SetLabel( const wxString& label ); + virtual bool Enable( bool enable = TRUE ); + static wxVisualAttributes + GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL); + // implementation // -------------- @@ -74,7 +57,9 @@ public: GtkWidget *m_widgetCheckbox; GtkWidget *m_widgetLabel; - + + bool m_blockEvent; + protected: virtual wxSize DoGetBestSize() const; @@ -82,6 +67,4 @@ private: DECLARE_DYNAMIC_CLASS(wxCheckBox) }; -#endif - #endif // __GTKCHECKBOXH__