1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: wxRadioBox class
4 // Author: Stefan Csomor
8 // Copyright: (c) Stefan Csomor
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_RADIOBOX_H_
13 #define _WX_RADIOBOX_H_
15 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
16 #pragma interface "radiobox.h"
20 class WXDLLEXPORT wxBitmap
;
22 class WXDLLEXPORT wxRadioButton
;
24 class WXDLLEXPORT wxRadioBox
: public wxControl
, public wxRadioBoxBase
26 DECLARE_DYNAMIC_CLASS(wxRadioBox
)
28 // Constructors & destructor
30 inline wxRadioBox(wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
31 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
32 int n
= 0, const wxString choices
[] = NULL
,
33 int majorDim
= 0, long style
= wxRA_HORIZONTAL
,
34 const wxValidator
& val
= wxDefaultValidator
, const wxString
& name
= wxRadioBoxNameStr
)
36 Create(parent
, id
, title
, pos
, size
, n
, choices
, majorDim
, style
, val
, name
);
38 inline wxRadioBox(wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
39 const wxPoint
& pos
, const wxSize
& size
,
40 const wxArrayString
& choices
,
41 int majorDim
= 0, long style
= wxRA_HORIZONTAL
,
42 const wxValidator
& val
= wxDefaultValidator
,
43 const wxString
& name
= wxRadioBoxNameStr
)
45 Create(parent
, id
, title
, pos
, size
, choices
,
46 majorDim
, style
, val
, name
);
49 bool Create(wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
50 const wxPoint
& pos
= wxDefaultPosition
, const wxSize
& size
= wxDefaultSize
,
51 int n
= 0, const wxString choices
[] = NULL
,
52 int majorDim
= 0, long style
= wxRA_HORIZONTAL
,
53 const wxValidator
& val
= wxDefaultValidator
, const wxString
& name
= wxRadioBoxNameStr
);
54 bool Create(wxWindow
*parent
, wxWindowID id
, const wxString
& title
,
55 const wxPoint
& pos
, const wxSize
& size
,
56 const wxArrayString
& choices
,
57 int majorDim
= 0, long style
= wxRA_HORIZONTAL
,
58 const wxValidator
& val
= wxDefaultValidator
,
59 const wxString
& name
= wxRadioBoxNameStr
);
61 // Specific functions (in wxWindows2 reference)
62 virtual void SetSelection(int item
);
63 virtual int GetSelection() const;
65 inline virtual int GetCount() const { return m_noItems
; } ;
67 virtual wxString
GetString(int item
) const;
68 virtual void SetString(int item
, const wxString
& label
) ;
70 virtual void Enable(int item
, bool enable
);
71 virtual void Show(int item
, bool show
) ;
73 virtual int GetColumnCount() const ;
74 virtual int GetRowCount() const ;
77 virtual bool Enable(bool enable
= TRUE
);
78 virtual wxString
GetLabel() const;
79 virtual void SetLabel(const wxString
& label
) ;
80 virtual bool Show(bool show
= TRUE
);
82 // Other external functions
83 void Command(wxCommandEvent
& event
);
86 // Other variable access functions
87 inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols
; }
88 inline void SetNumberOfRowsOrCols(int n
) { m_noRowsOrCols
= n
; }
90 void OnRadioButton( wxCommandEvent
& event
) ;
92 wxRadioButton
*m_radioButtonCycle
;
99 virtual wxSize
DoGetBestSize() const ;
100 virtual void DoSetSize(int x
, int y
,
101 int width
, int height
,
102 int sizeFlags
= wxSIZE_AUTO
);
104 DECLARE_EVENT_TABLE()