1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2002-06-04 18:09:20 +00:00
|
|
|
// Name: wx/gtk/radiobut.h
|
1998-05-20 14:01:55 +00:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 00:19:25 +00:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2004-05-23 20:53:33 +00:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
2006-08-25 12:59:28 +00:00
|
|
|
#ifndef _WX_GTK_RADIOBUT_H_
|
|
|
|
#define _WX_GTK_RADIOBUT_H_
|
1998-05-20 14:01:55 +00:00
|
|
|
|
1998-08-14 10:07:38 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxRadioButton
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
2005-08-02 22:58:06 +00:00
|
|
|
class WXDLLIMPEXP_CORE wxRadioButton: public wxControl
|
1998-08-14 10:07:38 +00:00
|
|
|
{
|
1999-07-22 23:28:55 +00:00
|
|
|
public:
|
2002-05-31 14:17:23 +00:00
|
|
|
wxRadioButton() { }
|
|
|
|
wxRadioButton( 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 = wxRadioButtonNameStr )
|
1999-10-20 20:38:47 +00:00
|
|
|
{
|
|
|
|
Create( parent, id, label, pos, size, style, validator, name );
|
|
|
|
}
|
2002-05-31 14:17:23 +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 = wxRadioButtonNameStr );
|
|
|
|
|
1999-10-20 20:38:47 +00:00
|
|
|
virtual void SetLabel(const wxString& label);
|
|
|
|
virtual void SetValue(bool val);
|
|
|
|
virtual bool GetValue() const;
|
2008-01-29 04:02:33 +00:00
|
|
|
virtual bool Enable( bool enable = true );
|
2002-05-31 14:17:23 +00:00
|
|
|
|
2004-05-06 17:26:25 +00:00
|
|
|
static wxVisualAttributes
|
|
|
|
GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
|
|
|
|
|
2000-01-04 13:02:27 +00:00
|
|
|
protected:
|
2007-11-14 14:44:13 +00:00
|
|
|
virtual wxBorder GetDefaultBorder() const { return wxBORDER_NONE; }
|
|
|
|
|
2006-08-25 12:59:28 +00:00
|
|
|
virtual void DoApplyWidgetStyle(GtkRcStyle *style);
|
|
|
|
virtual GdkWindow *GTKGetWindow(wxArrayGdkWindows& windows) const;
|
2000-01-04 13:02:27 +00:00
|
|
|
|
1999-10-20 20:38:47 +00:00
|
|
|
DECLARE_DYNAMIC_CLASS(wxRadioButton)
|
1998-08-14 10:07:38 +00:00
|
|
|
};
|
1998-05-20 14:01:55 +00:00
|
|
|
|
2006-08-25 12:59:28 +00:00
|
|
|
#endif // _WX_GTK_RADIOBUT_H_
|