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