1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2002-06-04 18:09:20 +00:00
|
|
|
// Name: wx/gtk/checkbox.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-24 17:12:05 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2009-10-09 17:39:19 +00:00
|
|
|
#ifndef _WX_GTKCHECKBOX_H_
|
|
|
|
#define _WX_GTKCHECKBOX_H_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2001-06-26 20:59:19 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
// wxCheckBox
|
2001-06-26 20:59:19 +00:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxCheckBox : public wxCheckBoxBase
|
1998-05-20 14:01:55 +00:00
|
|
|
{
|
1999-02-01 14:40:53 +00:00
|
|
|
public:
|
1999-03-22 18:55:24 +00:00
|
|
|
wxCheckBox();
|
2012-11-26 18:30:08 +00:00
|
|
|
~wxCheckBox();
|
1999-02-01 14:40:53 +00:00
|
|
|
wxCheckBox( wxWindow *parent, wxWindowID id, const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize, long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxCheckBoxNameStr)
|
1998-08-14 10:07:38 +00:00
|
|
|
{
|
1999-02-01 14:40:53 +00:00
|
|
|
Create(parent, id, label, pos, size, style, validator, name);
|
1998-08-14 10:07:38 +00:00
|
|
|
}
|
1999-03-22 18:55:24 +00:00
|
|
|
bool Create(wxWindow *parent,
|
|
|
|
wxWindowID id,
|
|
|
|
const wxString& label,
|
|
|
|
const wxPoint& pos = wxDefaultPosition,
|
|
|
|
const wxSize& size = wxDefaultSize,
|
|
|
|
long style = 0,
|
|
|
|
const wxValidator& validator = wxDefaultValidator,
|
|
|
|
const wxString& name = wxCheckBoxNameStr );
|
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
void SetValue( bool state ) wxOVERRIDE;
|
|
|
|
bool GetValue() const wxOVERRIDE;
|
1999-02-01 14:40:53 +00:00
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual void SetLabel( const wxString& label ) wxOVERRIDE;
|
|
|
|
virtual bool Enable( bool enable = true ) wxOVERRIDE;
|
1999-02-01 14:40:53 +00:00
|
|
|
|
2004-05-06 17:26:25 +00:00
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
2006-01-22 21:00:19 +00:00
|
|
|
|
2009-12-05 19:25:04 +00:00
|
|
|
// implementation
|
|
|
|
void GTKDisableEvents();
|
|
|
|
void GTKEnableEvents();
|
|
|
|
|
1999-11-19 21:01:20 +00:00
|
|
|
protected:
|
2014-03-30 00:02:23 +00:00
|
|
|
virtual void DoApplyWidgetStyle(GtkRcStyle *style) wxOVERRIDE;
|
|
|
|
virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const wxOVERRIDE;
|
1999-11-19 21:01:20 +00:00
|
|
|
|
2014-03-30 00:02:23 +00:00
|
|
|
void DoSet3StateValue(wxCheckBoxState state) wxOVERRIDE;
|
|
|
|
wxCheckBoxState DoGet3StateValue() const wxOVERRIDE;
|
2004-06-26 15:53:22 +00:00
|
|
|
|
2009-12-05 19:25:04 +00:00
|
|
|
private:
|
|
|
|
typedef wxCheckBoxBase base_type;
|
2008-09-01 08:27:56 +00:00
|
|
|
|
|
|
|
GtkWidget *m_widgetCheckbox;
|
|
|
|
GtkWidget *m_widgetLabel;
|
|
|
|
|
2015-04-23 11:49:01 +00:00
|
|
|
wxDECLARE_DYNAMIC_CLASS(wxCheckBox);
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
2009-10-09 17:39:19 +00:00
|
|
|
#endif // _WX_GTKCHECKBOX_H_
|