]>
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 | ||
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 | ||
18128cbb | 26 | class WXDLLEXPORT wxRadioBox : public wxControl, public wxRadioBoxBase |
9b6dbb09 | 27 | { |
83df96d6 | 28 | DECLARE_DYNAMIC_CLASS(wxRadioBox) |
6b0d8a01 | 29 | |
9b6dbb09 | 30 | public: |
bfc6fde4 | 31 | wxRadioBox(); |
6b0d8a01 | 32 | |
bfc6fde4 | 33 | wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, |
83df96d6 JS |
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) | |
bfc6fde4 VZ |
38 | { |
39 | Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name); | |
40 | } | |
6b0d8a01 | 41 | |
bfc6fde4 | 42 | ~wxRadioBox(); |
6b0d8a01 | 43 | |
bfc6fde4 | 44 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, |
83df96d6 JS |
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); | |
6b0d8a01 | 49 | |
bfc6fde4 VZ |
50 | int FindString(const wxString& s) const; |
51 | void SetSelection(int N); | |
52 | int GetSelection() const; | |
6b0d8a01 | 53 | |
18128cbb MB |
54 | void SetString(int item, const wxString& label) ; |
55 | wxString GetString(int item) const; | |
6b0d8a01 | 56 | virtual bool Enable(bool enable = TRUE); |
bfc6fde4 VZ |
57 | void Enable(int item, bool enable); |
58 | void Show(int item, bool show) ; | |
6b0d8a01 VZ |
59 | virtual bool Show(bool show = TRUE) ; |
60 | ||
bfc6fde4 VZ |
61 | virtual wxString GetStringSelection() const; |
62 | virtual bool SetStringSelection(const wxString& s); | |
3c85ada9 | 63 | virtual int GetCount() const { return m_noItems; } ; |
bfc6fde4 | 64 | void Command(wxCommandEvent& event); |
6b0d8a01 | 65 | |
18128cbb MB |
66 | int GetColumnCount() const; |
67 | int GetRowCount() const; | |
68 | ||
bfc6fde4 VZ |
69 | int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } |
70 | void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } | |
6b0d8a01 | 71 | |
bfc6fde4 VZ |
72 | // Implementation |
73 | virtual void ChangeFont(bool keepOriginalSize = TRUE); | |
74 | virtual void ChangeBackgroundColour(); | |
75 | virtual void ChangeForegroundColour(); | |
bfc6fde4 VZ |
76 | inline WXWidget* GetRadioButtons() const { return m_radioButtons; } |
77 | inline void SetSel(int i) { m_selectedButton = i; } | |
6b0d8a01 | 78 | |
9b6dbb09 | 79 | protected: |
2ad99bc1 | 80 | int m_majorDim; |
bfc6fde4 VZ |
81 | int m_noItems; |
82 | int m_noRowsOrCols; | |
83 | int m_selectedButton; | |
6b0d8a01 | 84 | |
bfc6fde4 VZ |
85 | WXWidget* m_radioButtons; |
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_ |