]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/gtk/radiobut.h
1 /////////////////////////////////////////////////////////////////////////////
4 // Author: Robert Roebling
6 // Copyright: (c) 1998 Robert Roebling
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
11 #ifndef __GTKRADIOBUTTONH__
12 #define __GTKRADIOBUTTONH__
22 #include "wx/object.h"
24 #include "wx/control.h"
26 //-----------------------------------------------------------------------------
28 //-----------------------------------------------------------------------------
32 //-----------------------------------------------------------------------------
34 //-----------------------------------------------------------------------------
36 extern const char* wxRadioButtonNameStr
;
38 //-----------------------------------------------------------------------------
40 //-----------------------------------------------------------------------------
42 class wxRadioButton
: public wxControl
45 inline wxRadioButton() {}
46 inline wxRadioButton( wxWindow
*parent
, wxWindowID id
,
47 const wxString
& label
,
48 const wxPoint
& pos
= wxDefaultPosition
,
49 const wxSize
& size
= wxDefaultSize
, long style
= 0,
50 const wxValidator
& validator
= wxDefaultValidator
,
51 const wxString
& name
= wxRadioButtonNameStr
)
53 Create( parent
, id
, label
, pos
, size
, style
, validator
, name
);
55 bool Create(wxWindow
*parent
, wxWindowID id
,
56 const wxString
& label
,
57 const wxPoint
& pos
= wxDefaultPosition
,
58 const wxSize
& size
= wxDefaultSize
, long style
= 0,
59 const wxValidator
& validator
= wxDefaultValidator
,
60 const wxString
& name
= wxRadioButtonNameStr
);
61 virtual void SetLabel(const wxString
& label
);
62 virtual void SetValue(bool val
);
63 virtual bool GetValue() const;
64 bool Enable( bool enable
);
68 GSList
*m_radioButtonGroup
;
69 void ApplyWidgetStyle();
70 bool IsOwnGtkWindow( GdkWindow
*window
);
71 void OnInternalIdle();
74 virtual wxSize
DoGetBestSize() const;
77 DECLARE_DYNAMIC_CLASS(wxRadioButton
)
82 #endif // __GTKRADIOBUTTONH__