]>
Commit | Line | Data |
---|---|---|
9b6dbb09 | 1 | ///////////////////////////////////////////////////////////////////////////// |
853dcc57 | 2 | // Name: wx/motif/radiobox.h |
9b6dbb09 JS |
3 | // Purpose: wxRadioBox class |
4 | // Author: Julian Smart | |
5 | // Modified by: | |
6 | // Created: 17/09/98 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) Julian Smart | |
65571936 | 9 | // Licence: wxWindows licence |
9b6dbb09 JS |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
4b4f6e0f VZ |
12 | #ifndef _WX_MOTIF_RADIOBOX_H_ |
13 | #define _WX_MOTIF_RADIOBOX_H_ | |
9b6dbb09 | 14 | |
3bdb8629 MB |
15 | #ifndef wxWIDGET_ARRAY_DEFINED |
16 | #define wxWIDGET_ARRAY_DEFINED | |
9b6dbb09 | 17 | |
3bdb8629 | 18 | #include "wx/dynarray.h" |
4b4f6e0f VZ |
19 | WX_DEFINE_ARRAY_PTR(WXWidget, wxWidgetArray); |
20 | #endif // wxWIDGET_ARRAY_DEFINED | |
3bdb8629 MB |
21 | |
22 | #include "wx/arrstr.h" | |
9b6dbb09 | 23 | |
18128cbb | 24 | class WXDLLEXPORT wxRadioBox : public wxControl, public wxRadioBoxBase |
9b6dbb09 | 25 | { |
9b6dbb09 | 26 | public: |
3bdb8629 | 27 | wxRadioBox() { Init(); } |
6b0d8a01 | 28 | |
bfc6fde4 | 29 | wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, |
3bdb8629 MB |
30 | const wxPoint& pos = wxDefaultPosition, |
31 | 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, | |
35 | const wxString& name = wxRadioBoxNameStr) | |
bfc6fde4 | 36 | { |
3bdb8629 MB |
37 | Init(); |
38 | ||
39 | Create(parent, id, title, pos, size, n, choices, | |
40 | majorDim, style, val, name); | |
bfc6fde4 | 41 | } |
6b0d8a01 | 42 | |
584ad2a3 MB |
43 | wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, |
44 | const wxPoint& pos, | |
45 | const wxSize& size, | |
46 | const wxArrayString& choices, | |
47 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
48 | const wxValidator& val = wxDefaultValidator, | |
49 | const wxString& name = wxRadioBoxNameStr) | |
50 | { | |
51 | Init(); | |
52 | ||
53 | Create(parent, id, title, pos, size, choices, | |
54 | majorDim, style, val, name); | |
55 | } | |
56 | ||
bfc6fde4 | 57 | ~wxRadioBox(); |
6b0d8a01 | 58 | |
bfc6fde4 | 59 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, |
3bdb8629 MB |
60 | const wxPoint& pos = wxDefaultPosition, |
61 | const wxSize& size = wxDefaultSize, | |
62 | int n = 0, const wxString choices[] = NULL, | |
63 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
64 | const wxValidator& val = wxDefaultValidator, | |
65 | const wxString& name = wxRadioBoxNameStr); | |
6b0d8a01 | 66 | |
584ad2a3 MB |
67 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, |
68 | const wxPoint& pos, | |
69 | const wxSize& size, | |
70 | const wxArrayString& choices, | |
71 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
72 | const wxValidator& val = wxDefaultValidator, | |
73 | const wxString& name = wxRadioBoxNameStr); | |
74 | ||
bfc6fde4 VZ |
75 | void SetSelection(int N); |
76 | int GetSelection() const; | |
6b0d8a01 | 77 | |
18128cbb MB |
78 | void SetString(int item, const wxString& label) ; |
79 | wxString GetString(int item) const; | |
96be256b | 80 | virtual bool Enable(bool enable = true); |
1a87edf2 | 81 | virtual bool Enable(int item, bool enable = true); |
789f6795 WS |
82 | virtual bool Show(int item, bool show = true); |
83 | virtual bool Show(bool show = true); | |
6b0d8a01 | 84 | |
bfc6fde4 VZ |
85 | virtual wxString GetStringSelection() const; |
86 | virtual bool SetStringSelection(const wxString& s); | |
3c85ada9 | 87 | virtual int GetCount() const { return m_noItems; } ; |
bfc6fde4 | 88 | void Command(wxCommandEvent& event); |
6b0d8a01 | 89 | |
bfc6fde4 VZ |
90 | int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } |
91 | void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } | |
6b0d8a01 | 92 | |
bfc6fde4 | 93 | // Implementation |
96be256b | 94 | virtual void ChangeFont(bool keepOriginalSize = true); |
bfc6fde4 VZ |
95 | virtual void ChangeBackgroundColour(); |
96 | virtual void ChangeForegroundColour(); | |
3bdb8629 | 97 | const wxWidgetArray& GetRadioButtons() const { return m_radioButtons; } |
3dd709d8 MB |
98 | void SetSel(int i) { m_selectedButton = i; } |
99 | virtual WXWidget GetLabelWidget() const { return m_labelWidget; } | |
6b0d8a01 | 100 | |
9b6dbb09 | 101 | protected: |
4b4f6e0f VZ |
102 | virtual void DoSetSize(int x, int y, |
103 | int width, int height, | |
104 | int sizeFlags = wxSIZE_AUTO); | |
105 | ||
bfc6fde4 VZ |
106 | int m_noItems; |
107 | int m_noRowsOrCols; | |
108 | int m_selectedButton; | |
6b0d8a01 | 109 | |
3bdb8629 | 110 | wxWidgetArray m_radioButtons; |
3dd709d8 | 111 | WXWidget m_labelWidget; |
3bdb8629 | 112 | wxArrayString m_radioButtonLabels; |
6b0d8a01 | 113 | |
4b4f6e0f VZ |
114 | private: |
115 | void Init(); | |
116 | ||
4b4f6e0f | 117 | DECLARE_DYNAMIC_CLASS(wxRadioBox) |
9b6dbb09 JS |
118 | }; |
119 | ||
4b4f6e0f | 120 | #endif // _WX_MOTIF_RADIOBOX_H_ |