1. moved m_majorDim duplicated in many ports to wxRadioBoxBase
[wxWidgets.git] / include / wx / univ / radiobox.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: wx/univ/radiobox.h
3 // Purpose: wxRadioBox declaration
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 11.09.00
7 // RCS-ID: $Id$
8 // Copyright: (c) 2000 SciTech Software, Inc. (www.scitechsoft.com)
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_UNIV_RADIOBOX_H_
13 #define _WX_UNIV_RADIOBOX_H_
14
15 class WXDLLEXPORT wxRadioButton;
16
17 #include "wx/statbox.h"
18 #include "wx/dynarray.h"
19
20 WX_DEFINE_EXPORTED_ARRAY_PTR(wxRadioButton *, wxArrayRadioButtons);
21
22 // ----------------------------------------------------------------------------
23 // wxRadioBox: a box full of radio buttons
24 // ----------------------------------------------------------------------------
25
26 class WXDLLEXPORT wxRadioBox : public wxStaticBox,
27 public wxRadioBoxBase
28 {
29 public:
30 // wxRadioBox construction
31 wxRadioBox() { Init(); }
32
33 wxRadioBox(wxWindow *parent,
34 wxWindowID id,
35 const wxString& title,
36 const wxPoint& pos = wxDefaultPosition,
37 const wxSize& size = wxDefaultSize,
38 int n = 0, const wxString *choices = NULL,
39 int majorDim = 0,
40 long style = wxRA_SPECIFY_COLS,
41 const wxValidator& val = wxDefaultValidator,
42 const wxString& name = wxRadioBoxNameStr)
43 {
44 Init();
45
46 (void)Create(parent, id, title, pos, size, n, choices,
47 majorDim, style, val, name);
48 }
49 wxRadioBox(wxWindow *parent,
50 wxWindowID id,
51 const wxString& title,
52 const wxPoint& pos,
53 const wxSize& size,
54 const wxArrayString& choices,
55 int majorDim = 0,
56 long style = wxRA_SPECIFY_COLS,
57 const wxValidator& val = wxDefaultValidator,
58 const wxString& name = wxRadioBoxNameStr);
59
60 bool Create(wxWindow *parent,
61 wxWindowID id,
62 const wxString& title,
63 const wxPoint& pos = wxDefaultPosition,
64 const wxSize& size = wxDefaultSize,
65 int n = 0, const wxString *choices = NULL,
66 int majorDim = 0,
67 long style = wxRA_SPECIFY_COLS,
68 const wxValidator& val = wxDefaultValidator,
69 const wxString& name = wxRadioBoxNameStr);
70 bool Create(wxWindow *parent,
71 wxWindowID id,
72 const wxString& title,
73 const wxPoint& pos,
74 const wxSize& size,
75 const wxArrayString& choices,
76 int majorDim = 0,
77 long style = wxRA_SPECIFY_COLS,
78 const wxValidator& val = wxDefaultValidator,
79 const wxString& name = wxRadioBoxNameStr);
80
81 virtual ~wxRadioBox();
82
83 // implement wxRadioBox interface
84 virtual void SetSelection(int n);
85 virtual int GetSelection() const;
86
87 virtual int GetCount() const { return (int) m_buttons.GetCount(); }
88
89 virtual wxString GetString(int n) const;
90 virtual void SetString(int n, const wxString& label);
91
92 virtual bool Enable(int n, bool enable = true);
93 virtual bool Show(int n, bool show = true);
94
95 // we also override the wxControl methods to avoid virtual function hiding
96 virtual bool Enable(bool enable = true);
97 virtual bool Show(bool show = true);
98 virtual wxString GetLabel() const;
99 virtual void SetLabel(const wxString& label);
100
101 // we inherit a version returning false from wxStaticBox, override it again
102 virtual bool AcceptsFocus() const { return true; }
103
104 #if wxUSE_TOOLTIPS
105 virtual void DoSetToolTip( wxToolTip *tip );
106 #endif // wxUSE_TOOLTIPS
107
108 // wxUniversal-only methods
109
110 // another Append() version
111 void Append(int n, const wxString *choices);
112
113 // implementation only: called by wxRadioHookHandler
114 void OnRadioButton(wxEvent& event);
115 bool OnKeyDown(wxKeyEvent& event);
116
117 protected:
118 // override the base class methods dealing with window positioning/sizing
119 // as we must move/size the buttons as well
120 virtual void DoMoveWindow(int x, int y, int width, int height);
121 virtual wxSize DoGetBestClientSize() const;
122
123 // generate a radiobutton click event for the current item
124 void SendRadioEvent();
125
126 // common part of all ctors
127 void Init();
128
129 // calculate the max size of all buttons
130 wxSize GetMaxButtonSize() const;
131
132 // the currently selected radio button or -1
133 int m_selection;
134
135 // all radio buttons
136 wxArrayRadioButtons m_buttons;
137
138 // the event handler which is used to translate radiobutton events into
139 // radiobox one
140 wxEvtHandler *m_evtRadioHook;
141
142 private:
143 DECLARE_DYNAMIC_CLASS(wxRadioBox)
144 };
145
146 #endif // _WX_UNIV_RADIOBOX_H_