1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2002-06-04 14:09:20 -04:00
|
|
|
// Name: wx/gtk/checkbox.h
|
1998-05-20 10:01:55 -04:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 05:56:58 -05:00
|
|
|
// Id: $Id$
|
1998-10-24 13:12:05 -04:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 16:53:33 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2009-10-09 13:39:19 -04:00
|
|
|
#ifndef _WX_GTKCHECKBOX_H_
|
|
|
|
#define _WX_GTKCHECKBOX_H_
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2001-06-26 16:59:19 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 10:01:55 -04:00
|
|
|
// wxCheckBox
|
2001-06-26 16:59:19 -04:00
|
|
|
// ----------------------------------------------------------------------------
|
1998-05-20 10:01:55 -04:00
|
|
|
|
2005-08-02 18:58:06 -04:00
|
|
|
class WXDLLIMPEXP_CORE wxCheckBox : public wxCheckBoxBase
|
1998-05-20 10:01:55 -04:00
|
|
|
{
|
1999-02-01 09:40:53 -05:00
|
|
|
public:
|
1999-03-22 13:55:24 -05:00
|
|
|
wxCheckBox();
|
1999-02-01 09:40:53 -05: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 06:07:38 -04:00
|
|
|
{
|
1999-02-01 09:40:53 -05:00
|
|
|
Create(parent, id, label, pos, size, style, validator, name);
|
1998-08-14 06:07:38 -04:00
|
|
|
}
|
1999-03-22 13:55:24 -05: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 );
|
|
|
|
|
1998-07-04 11:17:59 -04:00
|
|
|
void SetValue( bool state );
|
1998-09-07 10:44:38 -04:00
|
|
|
bool GetValue() const;
|
1999-02-01 09:40:53 -05:00
|
|
|
|
2002-06-04 14:09:20 -04:00
|
|
|
virtual void SetLabel( const wxString& label );
|
2009-10-09 13:39:19 -04:00
|
|
|
virtual bool Enable( bool enable = true );
|
1999-02-01 09:40:53 -05:00
|
|
|
|
2004-05-06 13:26:25 -04:00
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
2006-01-22 16:00:19 -05:00
|
|
|
|
2009-12-05 14:25:04 -05:00
|
|
|
// implementation
|
|
|
|
void GTKDisableEvents();
|
|
|
|
void GTKEnableEvents();
|
|
|
|
|
1999-11-19 16:01:20 -05:00
|
|
|
protected:
|
2006-08-25 08:59:28 -04:00
|
|
|
virtual void DoApplyWidgetStyle(GtkRcStyle *style);
|
|
|
|
virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
|
1999-11-19 16:01:20 -05:00
|
|
|
|
2004-06-26 11:53:22 -04:00
|
|
|
void DoSet3StateValue(wxCheckBoxState state);
|
|
|
|
wxCheckBoxState DoGet3StateValue() const;
|
|
|
|
|
2009-12-05 14:25:04 -05:00
|
|
|
private:
|
|
|
|
typedef wxCheckBoxBase base_type;
|
2008-09-01 04:27:56 -04:00
|
|
|
|
|
|
|
GtkWidget *m_widgetCheckbox;
|
|
|
|
GtkWidget *m_widgetLabel;
|
|
|
|
|
1999-10-11 06:05:36 -04:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxCheckBox)
|
1998-05-20 10:01:55 -04:00
|
|
|
};
|
|
|
|
|
2009-10-09 13:39:19 -04:00
|
|
|
#endif // _WX_GTKCHECKBOX_H_
|