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
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKRADIOBUTTONH__
|
|
|
|
#define __GTKRADIOBUTTONH__
|
|
|
|
|
2003-08-09 12:38:21 +00:00
|
|
|
#if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
|
1998-05-20 14:01:55 +00:00
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
1998-08-14 10:07:38 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxRadioButton
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxRadioButton: public wxControl
|
|
|
|
{
|
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;
|
2002-06-04 18:09:20 +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);
|
|
|
|
|
2002-05-31 14:17:23 +00:00
|
|
|
// implementation
|
|
|
|
|
|
|
|
virtual bool IsRadioButton() const { return TRUE; }
|
|
|
|
|
1999-10-20 20:38:47 +00:00
|
|
|
GSList *m_radioButtonGroup;
|
2004-06-14 17:34:00 +00:00
|
|
|
void DoApplyWidgetStyle(GtkRcStyle *style);
|
1999-10-20 20:38:47 +00:00
|
|
|
bool IsOwnGtkWindow( GdkWindow *window );
|
|
|
|
void OnInternalIdle();
|
2002-05-31 14:17:23 +00:00
|
|
|
|
2001-11-17 23:50:58 +00:00
|
|
|
bool m_blockEvent;
|
2002-05-31 14:17:23 +00:00
|
|
|
|
2000-01-04 13:02:27 +00:00
|
|
|
protected:
|
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
|
1999-10-20 20:38:47 +00:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxRadioButton)
|
1998-08-14 10:07:38 +00:00
|
|
|
};
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#endif // __GTKRADIOBUTTONH__
|