1998-05-20 14:01:55 +00:00
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
// Name: radiobut.h
|
|
|
|
// Purpose:
|
|
|
|
// Author: Robert Roebling
|
1998-10-26 00:19:25 +00:00
|
|
|
// Id: $Id$
|
|
|
|
// Copyright: (c) 1998 Robert Roebling
|
1998-05-20 14:01:55 +00:00
|
|
|
// Licence: wxWindows licence
|
|
|
|
/////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
|
|
|
|
#ifndef __GTKRADIOBUTTONH__
|
|
|
|
#define __GTKRADIOBUTTONH__
|
|
|
|
|
|
|
|
#ifdef __GNUG__
|
|
|
|
#pragma interface
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include "wx/defs.h"
|
|
|
|
#include "wx/object.h"
|
|
|
|
#include "wx/list.h"
|
|
|
|
#include "wx/control.h"
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// classes
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxRadioButton;
|
|
|
|
|
1998-08-14 10:07:38 +00:00
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// data
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
extern const char* wxRadioButtonNameStr;
|
|
|
|
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
// wxRadioButton
|
|
|
|
//-----------------------------------------------------------------------------
|
|
|
|
|
|
|
|
class wxRadioButton: public wxControl
|
|
|
|
{
|
|
|
|
DECLARE_DYNAMIC_CLASS(wxRadioButton)
|
|
|
|
|
|
|
|
public:
|
|
|
|
inline wxRadioButton(void) {}
|
|
|
|
inline 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 )
|
|
|
|
{
|
|
|
|
Create( parent, id, label, pos, size, style, validator, name );
|
|
|
|
}
|
|
|
|
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 );
|
|
|
|
virtual void SetLabel(const wxString& label);
|
|
|
|
virtual void SetValue(bool val);
|
|
|
|
virtual bool GetValue(void) const;
|
1998-09-06 20:27:21 +00:00
|
|
|
void Enable( bool enable );
|
1998-10-29 18:03:18 +00:00
|
|
|
|
|
|
|
// implementation
|
|
|
|
|
|
|
|
void ApplyWidgetStyle();
|
1998-12-10 13:33:11 +00:00
|
|
|
|
1998-12-14 20:03:52 +00:00
|
|
|
bool m_blockFirstEvent;
|
|
|
|
GtkWidget* m_theOtherRadioButtton;
|
1998-08-14 10:07:38 +00:00
|
|
|
};
|
1998-05-20 14:01:55 +00:00
|
|
|
|
|
|
|
#endif // __GTKRADIOBUTTONH__
|