]>
Commit | Line | Data |
---|---|---|
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 | ||
30 | public: | |
31 | wxRadioBox(); | |
32 | ||
33 | wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, | |
34 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
35 | int n = 0, const wxString choices[] = NULL, | |
36 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
37 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr) | |
38 | { | |
39 | Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name); | |
40 | } | |
41 | ||
42 | ~wxRadioBox(); | |
43 | ||
44 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, | |
45 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, | |
46 | int n = 0, const wxString choices[] = NULL, | |
47 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
48 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr); | |
49 | ||
50 | int FindString(const wxString& s) const; | |
51 | void SetSelection(int N); | |
52 | int GetSelection() const; | |
53 | wxString GetString(int N) const; | |
54 | ||
55 | void SetLabel(const wxString& label) { wxControl::SetLabel(label); }; | |
56 | void SetLabel(int item, const wxString& label) ; | |
57 | wxString GetLabel(int item) const; | |
58 | wxString GetLabel() const { return wxControl::GetLabel(); }; | |
59 | bool Enable(bool enable); | |
60 | void Enable(int item, bool enable); | |
61 | void Show(int item, bool show) ; | |
62 | bool Show(bool show) ; | |
63 | ||
64 | virtual wxString GetStringSelection() const; | |
65 | virtual bool SetStringSelection(const wxString& s); | |
66 | virtual int Number() const { return m_noItems; } ; | |
67 | void Command(wxCommandEvent& event); | |
68 | ||
69 | int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } | |
70 | void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } | |
71 | ||
72 | // Implementation | |
73 | virtual void ChangeFont(bool keepOriginalSize = TRUE); | |
74 | virtual void ChangeBackgroundColour(); | |
75 | virtual void ChangeForegroundColour(); | |
76 | WXWidget GetTopWidget() const { return m_formWidget; } | |
77 | WXWidget GetLabelWidget() const { return m_labelWidget; } | |
78 | WXWidget GetFrameWidget() const { return m_frameWidget; } | |
79 | inline WXWidget* GetRadioButtons() const { return m_radioButtons; } | |
80 | inline void SetSel(int i) { m_selectedButton = i; } | |
81 | ||
82 | protected: | |
83 | int m_majorDim ; | |
84 | int m_noItems; | |
85 | int m_noRowsOrCols; | |
86 | int m_selectedButton; | |
87 | ||
88 | WXWidget m_formWidget; | |
89 | WXWidget m_labelWidget; | |
90 | WXWidget m_frameWidget; | |
91 | WXWidget* m_radioButtons; | |
92 | wxString* m_radioButtonLabels; | |
93 | ||
94 | virtual void DoSetSize(int x, int y, | |
95 | int width, int height, | |
96 | int sizeFlags = wxSIZE_AUTO); | |
97 | }; | |
98 | ||
99 | #endif | |
100 | // _WX_RADIOBOX_H_ |