1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
2002-06-04 14:09:20 -04:00
|
|
|
// Name: wx/gtk/radiobut.h
|
1998-05-20 10:01:55 -04:00
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-25 19:19:25 -05:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
2002-06-04 14:09:20 -04:00
|
|
|
// Licence: wxWindows licence
|
1998-05-20 10:01:55 -04:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKRADIOBUTTONH__
|
|
|
|
#define __GTKRADIOBUTTONH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
1998-08-14 06:07:38 -04:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxRadioButton
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxRadioButton: public wxControl
|
|
|
|
{
|
1999-07-22 19:28:55 -04:00
|
|
|
public:
|
2002-05-31 10:17:23 -04: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 16:38:47 -04:00
|
|
|
{
|
|
|
|
Create( parent, id, label, pos, size, style, validator, name );
|
|
|
|
}
|
2002-05-31 10:17:23 -04: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 16:38:47 -04:00
|
|
|
virtual void SetLabel(const wxString& label);
|
|
|
|
virtual void SetValue(bool val);
|
|
|
|
virtual bool GetValue() const;
|
2002-06-04 14:09:20 -04:00
|
|
|
virtual bool Enable( bool enable = TRUE );
|
2002-05-31 10:17:23 -04:00
|
|
|
|
|
|
|
// implementation
|
|
|
|
|
|
|
|
virtual bool IsRadioButton() const { return TRUE; }
|
|
|
|
|
1999-10-20 16:38:47 -04:00
|
|
|
GSList *m_radioButtonGroup;
|
|
|
|
void ApplyWidgetStyle();
|
|
|
|
bool IsOwnGtkWindow( GdkWindow *window );
|
|
|
|
void OnInternalIdle();
|
2002-05-31 10:17:23 -04:00
|
|
|
|
2001-11-17 18:50:58 -05:00
|
|
|
bool m_blockEvent;
|
2002-05-31 10:17:23 -04:00
|
|
|
|
2000-01-04 08:02:27 -05:00
|
|
|
protected:
|
|
|
|
virtual wxSize DoGetBestSize() const;
|
|
|
|
|
1999-10-20 16:38:47 -04:00
|
|
|
private:
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxRadioButton)
|
1998-08-14 06:07:38 -04:00
|
|
|
};
|
1998-05-20 10:01:55 -04:00
|
|
|
|
|
|
|
#endif // __GTKRADIOBUTTONH__
|