]>
Commit | Line | Data |
---|---|---|
0dbd6262 SC |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: radiobox.h | |
3 | // Purpose: wxRadioBox class | |
a31a5f85 | 4 | // Author: Stefan Csomor |
0dbd6262 | 5 | // Modified by: |
a31a5f85 | 6 | // Created: 1998-01-01 |
0dbd6262 | 7 | // RCS-ID: $Id$ |
a31a5f85 | 8 | // Copyright: (c) Stefan Csomor |
e40298d5 | 9 | // Licence: wxWindows licence |
0dbd6262 SC |
10 | ///////////////////////////////////////////////////////////////////////////// |
11 | ||
12 | #ifndef _WX_RADIOBOX_H_ | |
13 | #define _WX_RADIOBOX_H_ | |
14 | ||
12028905 | 15 | #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA) |
0dbd6262 SC |
16 | #pragma interface "radiobox.h" |
17 | #endif | |
18 | ||
0dbd6262 | 19 | // List box item |
584bede0 | 20 | class WXDLLEXPORT wxBitmap ; |
1395ff56 | 21 | |
584bede0 | 22 | class WXDLLEXPORT wxRadioButton ; |
0dbd6262 | 23 | |
584bede0 | 24 | class WXDLLEXPORT wxRadioBox: public wxControl, public wxRadioBoxBase |
0dbd6262 | 25 | { |
e40298d5 | 26 | DECLARE_DYNAMIC_CLASS(wxRadioBox) |
0dbd6262 | 27 | public: |
1395ff56 | 28 | // Constructors & destructor |
e40298d5 JS |
29 | wxRadioBox(); |
30 | inline wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, | |
1395ff56 UJ |
31 | const wxPoint& pos = wxDefaultPosition, 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, const wxString& name = wxRadioBoxNameStr) | |
e40298d5 JS |
35 | { |
36 | Create(parent, id, title, pos, size, n, choices, majorDim, style, val, name); | |
37 | } | |
584ad2a3 MB |
38 | inline wxRadioBox(wxWindow *parent, wxWindowID id, const wxString& title, |
39 | const wxPoint& pos, const wxSize& size, | |
40 | const wxArrayString& choices, | |
41 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
42 | const wxValidator& val = wxDefaultValidator, | |
43 | const wxString& name = wxRadioBoxNameStr) | |
44 | { | |
45 | Create(parent, id, title, pos, size, choices, | |
46 | majorDim, style, val, name); | |
47 | } | |
e40298d5 JS |
48 | ~wxRadioBox(); |
49 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, | |
1395ff56 UJ |
50 | const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, |
51 | int n = 0, const wxString choices[] = NULL, | |
52 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
53 | const wxValidator& val = wxDefaultValidator, const wxString& name = wxRadioBoxNameStr); | |
584ad2a3 MB |
54 | bool Create(wxWindow *parent, wxWindowID id, const wxString& title, |
55 | const wxPoint& pos, const wxSize& size, | |
56 | const wxArrayString& choices, | |
57 | int majorDim = 0, long style = wxRA_HORIZONTAL, | |
58 | const wxValidator& val = wxDefaultValidator, | |
59 | const wxString& name = wxRadioBoxNameStr); | |
1395ff56 UJ |
60 | |
61 | // Specific functions (in wxWindows2 reference) | |
e40298d5 JS |
62 | virtual void SetSelection(int item); |
63 | virtual int GetSelection() const; | |
90b959ae | 64 | |
e40298d5 JS |
65 | inline virtual int GetCount() const { return m_noItems; } ; |
66 | ||
67 | virtual wxString GetString(int item) const; | |
68 | virtual void SetString(int item, const wxString& label) ; | |
69 | ||
70 | virtual void Enable(int item, bool enable); | |
71 | virtual void Show(int item, bool show) ; | |
90b959ae SC |
72 | |
73 | virtual int GetColumnCount() const ; | |
74 | virtual int GetRowCount() const ; | |
75 | ||
76 | ||
e40298d5 JS |
77 | virtual bool Enable(bool enable = TRUE); |
78 | virtual wxString GetLabel() const; | |
79 | virtual void SetLabel(const wxString& label) ; | |
80 | virtual bool Show(bool show = TRUE); | |
1395ff56 UJ |
81 | |
82 | // Other external functions | |
e40298d5 JS |
83 | void Command(wxCommandEvent& event); |
84 | void SetFocus(); | |
1395ff56 UJ |
85 | |
86 | // Other variable access functions | |
e40298d5 JS |
87 | inline int GetNumberOfRowsOrCols() const { return m_noRowsOrCols; } |
88 | inline void SetNumberOfRowsOrCols(int n) { m_noRowsOrCols = n; } | |
0dbd6262 | 89 | |
e40298d5 | 90 | void OnRadioButton( wxCommandEvent& event ) ; |
0dbd6262 | 91 | protected: |
e40298d5 JS |
92 | wxRadioButton *m_radioButtonCycle; |
93 | ||
94 | int m_majorDim ; | |
95 | int m_noItems; | |
96 | int m_noRowsOrCols; | |
1395ff56 UJ |
97 | |
98 | // Internal functions | |
9453cf2b | 99 | virtual wxSize DoGetBestSize() const ; |
e40298d5 | 100 | virtual void DoSetSize(int x, int y, |
519cb848 SC |
101 | int width, int height, |
102 | int sizeFlags = wxSIZE_AUTO); | |
1395ff56 | 103 | |
cf1a9b45 | 104 | DECLARE_EVENT_TABLE() |
0dbd6262 SC |
105 | }; |
106 | ||
107 | #endif | |
108 | // _WX_RADIOBOX_H_ |