]>
Commit | Line | Data |
---|---|---|
9b6dbb09 JS |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.h | |
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 | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | #ifndef _WX_RADIOBOX_H_ | |
13 | #define _WX_RADIOBOX_H_ | |
14 | ||
15 | #ifdef __GNUG__ | |
16 | #pragma interface "radiobox.h" | |
17 | #endif | |
18 | ||
19 | #include "wx/control.h" | |
20 | ||
21 | WXDLLEXPORT_DATA(extern const char*) wxRadioBoxNameStr; | |
22 | ||
23 | // List box item | |
24 | class WXDLLEXPORT wxBitmap ; | |
25 | ||
26 | class WXDLLEXPORT wxRadioBox: public wxControl | |
27 | { | |
28 | DECLARE_DYNAMIC_CLASS(wxRadioBox) | |
29 | public: | |
30 | wxRadioBox(); | |
31 | ||
32 | inline wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, | |
33 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
34 | int n = 0, const wxString choices[] = NULL, | |
35 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
36 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr) | |
37 | { | |
38 | Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name); | |
39 | } | |
40 | ||
41 | ~wxRadioBox(); | |
42 | ||
43 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, | |
44 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
45 | int n = 0, const wxString choices[] = NULL, | |
46 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
47 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr); | |
48 | ||
49 | int FindString(const wxString& s) const; | |
50 | void SetSelection(int N); | |
51 | int GetSelection() const; | |
52 | wxString GetString(int N) const; | |
53 | void SetSize(int x, int y, int width, int height, int sizeFlags = wxSIZE_AUTO); | |
4fabb575 JS |
54 | void SetSize(const wxRect& rect, int sizeFlags = wxSIZE_AUTO) |
55 | { wxWindow::SetSize(rect, sizeFlags); } | |
56 | void SetSize(const wxSize& size) { wxWindow::SetSize(size); } | |
a4294b78 | 57 | void SetLabel(const wxString& label) { wxControl::SetLabel(label); }; |
9b6dbb09 JS |
58 | void SetLabel(int item, const wxString& label) ; |
59 | wxString GetLabel(int item) const; | |
a4294b78 | 60 | wxString GetLabel() const { return wxControl::GetLabel(); }; |
9b6dbb09 JS |
61 | void Enable(bool enable); |
62 | void Enable(int item, bool enable); | |
63 | void Show(int item, bool show) ; | |
a4294b78 | 64 | bool Show(bool show) { return wxControl::Show(show); }; |
9b6dbb09 JS |
65 | |
66 | virtual wxString GetStringSelection() const; | |
67 | virtual bool SetStringSelection(const wxString& s); | |
68 | inline virtual int Number() const { return m_noItems; } ; | |
69 | void Command(wxCommandEvent& event); | |
70 | ||
71 | inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } | |
72 | inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } | |
73 | ||
0d57be45 | 74 | // Implementation |
4b5f3fe6 | 75 | virtual void ChangeFont(bool keepOriginalSize = TRUE); |
0d57be45 JS |
76 | virtual void ChangeBackgroundColour(); |
77 | virtual void ChangeForegroundColour(); | |
a4294b78 JS |
78 | WXWidget GetTopWidget() const { return m_formWidget; } |
79 | WXWidget GetLabelWidget() const { return m_labelWidget; } | |
80 | inline WXWidget* GetRadioButtons() const { return m_radioButtons; } | |
81 | inline void SetSel(int i) { m_selectedButton = i; } | |
82 | ||
9b6dbb09 | 83 | protected: |
9b6dbb09 JS |
84 | int m_majorDim ; |
85 | int m_noItems; | |
86 | int m_noRowsOrCols; | |
87 | int m_selectedButton; | |
88 | ||
a4294b78 JS |
89 | WXWidget m_formWidget; |
90 | WXWidget m_labelWidget; | |
91 | WXWidget* m_radioButtons; | |
92 | wxString* m_radioButtonLabels; | |
9b6dbb09 JS |
93 | }; |
94 | ||
95 | #endif | |
96 | // _WX_RADIOBOX_H_ |