// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifndef __GTKCHECKBOXH__
-#define __GTKCHECKBOXH__
+#ifndef _WX_GTKCHECKBOX_H_
+#define _WX_GTKCHECKBOX_H_
// ----------------------------------------------------------------------------
// wxCheckBox
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;
+ void GTKDisableEvents();
+ void GTKEnableEvents();
protected:
- virtual wxSize DoGetBestSize() const;
+ virtual void DoApplyWidgetStyle(GtkRcStyle *style);
+ virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
void DoSet3StateValue(wxCheckBoxState state);
wxCheckBoxState DoGet3StateValue() const;
private:
+ typedef wxCheckBoxBase base_type;
+
+ GtkWidget *m_widgetCheckbox;
+ GtkWidget *m_widgetLabel;
+
DECLARE_DYNAMIC_CLASS(wxCheckBox)
};
-#endif // __GTKCHECKBOXH__
+#endif // _WX_GTKCHECKBOX_H_