]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/spinctlg.h
add parent parameter to wxAboutBox() (closes #9952)
[wxWidgets.git] / include / wx / generic / spinctlg.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/spinctlg.h
3 // Purpose: generic wxSpinCtrl class
4 // Author: Vadim Zeitlin
5 // Modified by:
6 // Created: 28.10.99
7 // RCS-ID: $Id$
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_GENERIC_SPINCTRL_H_
13 #define _WX_GENERIC_SPINCTRL_H_
14
15 // ----------------------------------------------------------------------------
16 // wxSpinCtrl is a combination of wxSpinButton and wxTextCtrl, so if
17 // wxSpinButton is available, this is what we do - but if it isn't, we still
18 // define wxSpinCtrl class which then has the same appearance as wxTextCtrl but
19 // the different interface. This allows to write programs using wxSpinCtrl
20 // without tons of #ifdefs.
21 // ----------------------------------------------------------------------------
22
23 #if wxUSE_SPINBTN
24
25 class WXDLLIMPEXP_FWD_CORE wxSpinButton;
26 class WXDLLIMPEXP_FWD_CORE wxTextCtrl;
27
28 class wxSpinCtrlTextGeneric; // wxTextCtrl used for the wxSpinCtrlGenericBase
29
30 // The !wxUSE_SPINBTN version's GetValue() function conflicts with the
31 // wxTextCtrl's GetValue() and so you have to input a dummy int value.
32 #define wxSPINCTRL_GETVALUE_FIX
33
34 // ----------------------------------------------------------------------------
35 // wxSpinCtrlGeneric is a combination of wxTextCtrl and wxSpinButton
36 //
37 // This class manages a double valued generic spinctrl through the DoGet/SetXXX
38 // functions that are made public as Get/SetXXX functions for int or double
39 // for the wxSpinCtrl and wxSpinCtrlDouble classes respectively to avoid
40 // function ambiguity.
41 // ----------------------------------------------------------------------------
42
43 class WXDLLIMPEXP_CORE wxSpinCtrlGenericBase : public wxSpinCtrlBase
44 {
45 public:
46 wxSpinCtrlGenericBase() { Init(); }
47
48 bool Create(wxWindow *parent,
49 wxWindowID id = wxID_ANY,
50 const wxString& value = wxEmptyString,
51 const wxPoint& pos = wxDefaultPosition,
52 const wxSize& size = wxDefaultSize,
53 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
54 double min = 0, double max = 100, double initial = 0,
55 double inc = 1,
56 const wxString& name = _T("wxSpinCtrl"));
57
58 virtual ~wxSpinCtrlGenericBase();
59
60 // accessors
61 // T GetValue() const
62 // T GetMin() const
63 // T GetMax() const
64 // T GetIncrement() const
65 virtual bool GetSnapToTicks() const { return m_snap_to_ticks; }
66 // unsigned GetDigits() const - wxSpinCtrlDouble only
67
68 // operations
69 virtual void SetValue(const wxString& text);
70 // void SetValue(T val)
71 // void SetRange(T minVal, T maxVal)
72 // void SetIncrement(T inc)
73 virtual void SetSnapToTicks(bool snap_to_ticks);
74 // void SetDigits(unsigned digits) - wxSpinCtrlDouble only
75
76 // Select text in the textctrl
77 void SetSelection(long from, long to);
78
79 // implementation from now on
80
81 // forward these functions to all subcontrols
82 virtual bool Enable(bool enable = true);
83 virtual bool Show(bool show = true);
84 virtual bool Reparent(wxWindowBase *newParent);
85
86 // get the subcontrols
87 wxTextCtrl *GetText() const { return m_textCtrl; }
88 wxSpinButton *GetSpinButton() const { return m_spinButton; }
89
90 // forwarded events from children windows
91 void OnSpinButton(wxSpinEvent& event);
92 void OnTextEnter(wxCommandEvent& event);
93 void OnTextChar(wxKeyEvent& event);
94
95 friend class wxSpinCtrlTextGeneric;
96
97 protected:
98 // override the base class virtuals involved into geometry calculations
99 virtual wxSize DoGetBestSize() const;
100 virtual void DoMoveWindow(int x, int y, int width, int height);
101
102 // generic double valued functions
103 double DoGetValue() const { return m_value; }
104 bool DoSetValue(double val);
105 void DoSetRange(double min_val, double max_val);
106 void DoSetIncrement(double inc);
107
108 // Ensure that the textctrl shows correct value
109 void SyncSpinToText();
110
111 // Send the correct event type
112 virtual void DoSendEvent() = 0;
113
114 // check if the value is in range
115 bool InRange(double n) const { return (n >= m_min) && (n <= m_max); }
116
117 // ensure that the value is in range wrapping it round if necessary
118 double AdjustToFitInRange(double value) const;
119
120
121 double m_value;
122 double m_min;
123 double m_max;
124 double m_increment;
125 bool m_snap_to_ticks;
126 wxString m_format;
127
128 int m_spin_value;
129
130 // the subcontrols
131 wxTextCtrl *m_textCtrl;
132 wxSpinButton *m_spinButton;
133
134 private:
135 // common part of all ctors
136 void Init();
137 };
138
139 #else // !wxUSE_SPINBTN
140
141 #define wxSPINCTRL_GETVALUE_FIX int = 1
142
143 // ----------------------------------------------------------------------------
144 // wxSpinCtrl is just a text control
145 // ----------------------------------------------------------------------------
146
147 #include "wx/textctrl.h"
148
149 class WXDLLIMPEXP_CORE wxSpinCtrlGenericBase : public wxTextCtrl
150 {
151 public:
152 wxSpinCtrlGenericBase() : m_value(0), m_min(0), m_max(100),
153 m_increment(1), m_snap_to_ticks(false),
154 m_format(wxT("%g")) { }
155
156 bool Create(wxWindow *parent,
157 wxWindowID id = wxID_ANY,
158 const wxString& value = wxEmptyString,
159 const wxPoint& pos = wxDefaultPosition,
160 const wxSize& size = wxDefaultSize,
161 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
162 double min = 0, double max = 100, double initial = 0,
163 double inc = 1,
164 const wxString& name = _T("wxSpinCtrl"))
165 {
166 m_min = min;
167 m_max = max;
168 m_value = initial;
169 m_increment = inc;
170
171 bool ok = wxTextCtrl::Create(parent, id, value, pos, size, style,
172 wxDefaultValidator, name);
173 DoSetValue(initial);
174
175 return ok;
176 }
177
178 // accessors
179 // T GetValue() const
180 // T GetMin() const
181 // T GetMax() const
182 // T GetIncrement() const
183 virtual bool GetSnapToTicks() const { return m_snap_to_ticks; }
184 // unsigned GetDigits() const - wxSpinCtrlDouble only
185
186 // operations
187 virtual void SetValue(const wxString& text) { wxTextCtrl::SetValue(text); }
188 // void SetValue(T val)
189 // void SetRange(T minVal, T maxVal)
190 // void SetIncrement(T inc)
191 virtual void SetSnapToTicks(bool snap_to_ticks)
192 { m_snap_to_ticks = snap_to_ticks; }
193 // void SetDigits(unsigned digits) - wxSpinCtrlDouble only
194
195 // Select text in the textctrl
196 //void SetSelection(long from, long to);
197
198 protected:
199 // generic double valued
200 double DoGetValue() const
201 {
202 double n;
203 if ( (wxSscanf(wxTextCtrl::GetValue(), wxT("%lf"), &n) != 1) )
204 n = INT_MIN;
205
206 return n;
207 }
208
209 bool DoSetValue(double val)
210 {
211 wxTextCtrl::SetValue(wxString::Format(m_format.c_str(), val));
212 return true;
213 }
214 void DoSetRange(double min_val, double max_val)
215 {
216 m_min = min_val;
217 m_max = max_val;
218 }
219 void DoSetIncrement(double inc) { m_increment = inc; } // Note: unused
220
221 double m_value;
222 double m_min;
223 double m_max;
224 double m_increment;
225 bool m_snap_to_ticks;
226 wxString m_format;
227 };
228
229 #endif // wxUSE_SPINBTN/!wxUSE_SPINBTN
230
231 #if !defined(wxHAS_NATIVE_SPINCTRL)
232
233 //-----------------------------------------------------------------------------
234 // wxSpinCtrl
235 //-----------------------------------------------------------------------------
236
237 class WXDLLIMPEXP_CORE wxSpinCtrl : public wxSpinCtrlGenericBase
238 {
239 public:
240 wxSpinCtrl() {}
241 wxSpinCtrl(wxWindow *parent,
242 wxWindowID id = wxID_ANY,
243 const wxString& value = wxEmptyString,
244 const wxPoint& pos = wxDefaultPosition,
245 const wxSize& size = wxDefaultSize,
246 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
247 int min = 0, int max = 100, int initial = 0,
248 const wxString& name = _T("wxSpinCtrl"))
249 {
250 Create(parent, id, value, pos, size, style, min, max, initial, name);
251 }
252
253 bool Create(wxWindow *parent,
254 wxWindowID id = wxID_ANY,
255 const wxString& value = wxEmptyString,
256 const wxPoint& pos = wxDefaultPosition,
257 const wxSize& size = wxDefaultSize,
258 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
259 int min = 0, int max = 100, int initial = 0,
260 const wxString& name = _T("wxSpinCtrl"))
261 {
262 return wxSpinCtrlGenericBase::Create(parent, id, value, pos, size,
263 style, min, max, initial, 1, name);
264 }
265
266 // accessors
267 int GetValue(wxSPINCTRL_GETVALUE_FIX) const
268 { return wxRound( DoGetValue() ); }
269 int GetMin() const { return wxRound( m_min ); }
270 int GetMax() const { return wxRound( m_max ); }
271 int GetIncrement() const { return wxRound( m_increment ); }
272
273 // operations
274 void SetValue(const wxString& value)
275 { wxSpinCtrlGenericBase::SetValue(value); }
276 void SetValue( int value ) { DoSetValue(value); }
277 void SetRange( int minVal, int maxVal ) { DoSetRange(minVal, maxVal); }
278 void SetIncrement( double inc ) { DoSetIncrement(inc); }
279
280 protected:
281 virtual void DoSendEvent();
282
283 private:
284 DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
285 };
286
287 #endif // wxHAS_NATIVE_SPINCTRL
288
289 //-----------------------------------------------------------------------------
290 // wxSpinCtrlDouble
291 //-----------------------------------------------------------------------------
292
293 class WXDLLIMPEXP_CORE wxSpinCtrlDouble : public wxSpinCtrlGenericBase
294 {
295 public:
296 wxSpinCtrlDouble() : m_digits(0) { }
297 wxSpinCtrlDouble(wxWindow *parent,
298 wxWindowID id = wxID_ANY,
299 const wxString& value = wxEmptyString,
300 const wxPoint& pos = wxDefaultPosition,
301 const wxSize& size = wxDefaultSize,
302 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
303 double min = 0, double max = 100, double initial = 0,
304 double inc = 1,
305 const wxString& name = _T("wxSpinCtrlDouble"))
306 {
307 m_digits = 0;
308 Create(parent, id, value, pos, size, style,
309 min, max, initial, inc, name);
310 }
311
312 bool Create(wxWindow *parent,
313 wxWindowID id = wxID_ANY,
314 const wxString& value = wxEmptyString,
315 const wxPoint& pos = wxDefaultPosition,
316 const wxSize& size = wxDefaultSize,
317 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
318 double min = 0, double max = 100, double initial = 0,
319 double inc = 1,
320 const wxString& name = _T("wxSpinCtrlDouble"))
321 {
322 return wxSpinCtrlGenericBase::Create(parent, id, value, pos, size,
323 style, min, max, initial,
324 inc, name);
325 }
326
327 // accessors
328 double GetValue(wxSPINCTRL_GETVALUE_FIX) const { return DoGetValue(); }
329 double GetMin() const { return m_min; }
330 double GetMax() const { return m_max; }
331 double GetIncrement() const { return m_increment; }
332 unsigned GetDigits() const { return m_digits; }
333
334 // operations
335 void SetValue(const wxString& value)
336 { wxSpinCtrlGenericBase::SetValue(value); }
337 void SetValue(double value) { DoSetValue(value); }
338 void SetRange(double minVal, double maxVal) { DoSetRange(minVal, maxVal); }
339 void SetIncrement(double inc) { DoSetIncrement(inc); }
340 void SetDigits(unsigned digits);
341
342 protected:
343 virtual void DoSendEvent();
344
345 unsigned m_digits;
346
347 private:
348 DECLARE_DYNAMIC_CLASS(wxSpinCtrlDouble)
349 };
350
351 #endif // _WX_GENERIC_SPINCTRL_H_