X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/2f073eb2e0786fa44dd41d31eb34d00a75ab0570..2b96d0fb4be7d684c17987d74f8f92d0cfe345b5:/include/wx/gtk/checkbox.h diff --git a/include/wx/gtk/checkbox.h b/include/wx/gtk/checkbox.h index 412b3663b2..001bf3f773 100644 --- a/include/wx/gtk/checkbox.h +++ b/include/wx/gtk/checkbox.h @@ -14,31 +14,11 @@ #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(); @@ -66,17 +46,20 @@ public: bool Enable( bool enable ); // implementation + // -------------- + void ApplyWidgetStyle(); bool IsOwnGtkWindow( GdkWindow *window ); void OnInternalIdle(); GtkWidget *m_widgetCheckbox; GtkWidget *m_widgetLabel; - + +protected: + virtual wxSize DoGetBestSize() const; + private: DECLARE_DYNAMIC_CLASS(wxCheckBox) }; -#endif - #endif // __GTKCHECKBOXH__