1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: checkbox.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 10:56:58 +00:00
|
|
|
// Id: $Id$
|
1998-10-24 17:12:05 +00:00
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1999-02-01 14:40:53 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKCHECKBOXH__
|
|
|
|
#define __GTKCHECKBOXH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
1999-06-14 23:04:05 +00:00
|
|
|
|
|
|
|
#if wxUSE_CHECKBOX
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#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
|
|
|
|
{
|
1999-02-01 14:40:53 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxCheckBox)
|
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();
|
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 );
|
|
|
|
|
1998-07-04 15:17:59 +00:00
|
|
|
void SetValue( bool state );
|
1998-09-07 14:44:38 +00:00
|
|
|
bool GetValue() const;
|
1999-02-01 14:40:53 +00:00
|
|
|
|
1998-09-07 14:44:38 +00:00
|
|
|
void SetLabel( const wxString& label );
|
1999-05-09 22:17:03 +00:00
|
|
|
bool Enable( bool enable );
|
1999-02-01 14:40:53 +00:00
|
|
|
|
|
|
|
// implementation
|
|
|
|
void ApplyWidgetStyle();
|
1998-10-29 18:03:18 +00:00
|
|
|
|
1999-03-22 18:55:24 +00:00
|
|
|
GtkWidget *m_widgetCheckbox;
|
|
|
|
GtkWidget *m_widgetLabel;
|
1998-05-20 14:01:55 +00:00
|
|
|
};
|
|
|
|
|
1999-06-14 23:04:05 +00:00
|
|
|
#endif
|
|
|
|
|
1998-05-20 14:01:55 +00:00
|
|
|
#endif // __GTKCHECKBOXH__
|