]> git.saurik.com Git - wxWidgets.git/blame - include/wx/osx/spinctrl.h
use wxALIGN_LEFT/CENTRE/RIGHT instead of wxTE_XXX to avoid problems with the latter...
[wxWidgets.git] / include / wx / osx / spinctrl.h
CommitLineData
6762286d
SC
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_MAC_SPINCTRL_H_
13#define _WX_MAC_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
f1ddb476 23#if wxUSE_SPINBTN
6762286d
SC
24
25#include "wx/containr.h"
26
27class WXDLLIMPEXP_FWD_CORE wxSpinButton;
28class WXDLLIMPEXP_FWD_CORE wxTextCtrl;
29class WXDLLIMPEXP_FWD_CORE wxSpinCtrlText;
30class WXDLLIMPEXP_FWD_CORE wxSpinCtrlButton;
31
32// ----------------------------------------------------------------------------
33// wxSpinCtrl is a combination of wxTextCtrl and wxSpinButton
34// ----------------------------------------------------------------------------
35
36class WXDLLIMPEXP_CORE wxSpinCtrl : public wxControl
37{
38public:
39 wxSpinCtrl() { Init(); }
40
41 wxSpinCtrl(wxWindow *parent,
42 wxWindowID id = -1,
43 const wxString& value = wxEmptyString,
44 const wxPoint& pos = wxDefaultPosition,
45 const wxSize& size = wxDefaultSize,
f1ddb476 46 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
6762286d
SC
47 int min = 0, int max = 100, int initial = 0,
48 const wxString& name = _T("wxSpinCtrl"))
49 {
50 Init();
51 Create(parent, id, value, pos, size, style, min, max, initial, name);
52 }
53
54 bool Create(wxWindow *parent,
55 wxWindowID id = -1,
56 const wxString& value = wxEmptyString,
57 const wxPoint& pos = wxDefaultPosition,
58 const wxSize& size = wxDefaultSize,
f1ddb476 59 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
6762286d
SC
60 int min = 0, int max = 100, int initial = 0,
61 const wxString& name = _T("wxSpinCtrl"));
62
63 // wxTextCtrl-like method
64 void SetSelection(long from, long to);
65
66 virtual ~wxSpinCtrl();
67
68 // operations
69 void SetValue(int val);
70 void SetValue(const wxString& text);
71 void SetRange(int min, int max);
72
73 // accessors
74 int GetValue() const;
75 int GetMin() const;
76 int GetMax() const;
77
78 // implementation from now on
79
80 // forward these functions to all subcontrols
81 virtual bool Enable(bool enable = TRUE);
82 virtual bool Show(bool show = TRUE);
83
84 // get the subcontrols
85 wxTextCtrl *GetText() const { return m_text; }
86 wxSpinButton *GetSpinButton() const { return m_btn; }
87
88 // set the value of the text (only)
89 void SetTextValue(int val);
90
91 // put the numeric value of the string in the text ctrl into val and return
92 // TRUE or return FALSE if the text ctrl doesn't contain a number or if the
93 // number is out of range
94 bool GetTextValue(int *val) const;
95
96 WX_DECLARE_CONTROL_CONTAINER();
97
98protected:
99 // override the base class virtuals involved into geometry calculations
100 virtual wxSize DoGetBestSize() const;
101 virtual void DoMoveWindow(int x, int y, int width, int height);
102
103 // common part of all ctors
104 void Init();
105
106private:
107 // the subcontrols
108 wxTextCtrl *m_text;
109 wxSpinButton *m_btn;
f1ddb476 110
6762286d
SC
111 friend class wxSpinCtrlText;
112 friend class wxSpinCtrlButton;
f1ddb476 113
6762286d
SC
114 int m_oldValue;
115private:
116 DECLARE_EVENT_TABLE()
117 DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
118};
119
120#else // !wxUSE_SPINBTN
121
122// ----------------------------------------------------------------------------
123// wxSpinCtrl is just a text control
124// ----------------------------------------------------------------------------
125
126#include "wx/textctrl.h"
127
128class WXDLLIMPEXP_CORE wxSpinCtrl : public wxTextCtrl
129{
130public:
131 wxSpinCtrl() { Init(); }
132
133 wxSpinCtrl(wxWindow *parent,
134 wxWindowID id = -1,
135 const wxString& value = wxEmptyString,
136 const wxPoint& pos = wxDefaultPosition,
137 const wxSize& size = wxDefaultSize,
f1ddb476 138 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
6762286d
SC
139 int min = 0, int max = 100, int initial = 0,
140 const wxString& name = _T("wxSpinCtrl"))
141 {
142 Create(parent, id, value, pos, size, style, min, max, initial, name);
143 }
144
145 bool Create(wxWindow *parent,
146 wxWindowID id = -1,
147 const wxString& value = wxEmptyString,
148 const wxPoint& pos = wxDefaultPosition,
149 const wxSize& size = wxDefaultSize,
f1ddb476 150 long style = wxSP_ARROW_KEYS | wxALIGN_RIGHT,
6762286d
SC
151 int min = 0, int max = 100, int initial = 0,
152 const wxString& name = _T("wxSpinCtrl"))
153 {
154 SetRange(min, max);
155
156 bool ok = wxTextCtrl::Create(parent, id, value, pos, size, style,
157 wxDefaultValidator, name);
158 SetValue(initial);
159
160 return ok;
161 }
162
163 // accessors
164 int GetValue(int WXUNUSED(dummy) = 1) const
165 {
166 int n;
167 if ( (wxSscanf(wxTextCtrl::GetValue(), wxT("%d"), &n) != 1) )
168 n = INT_MIN;
169
170 return n;
171 }
172
173 int GetMin() const { return m_min; }
174 int GetMax() const { return m_max; }
175
176 // operations
177 void SetValue(const wxString& value) { wxTextCtrl::SetValue(value); }
178 void SetValue(int val) { wxString s; s << val; wxTextCtrl::SetValue(s); }
179 void SetRange(int min, int max) { m_min = min; m_max = max; }
180
181protected:
182 // initialize m_min/max with the default values
183 void Init() { SetRange(0, 100); }
184
185 int m_min;
186 int m_max;
187
188private:
189 DECLARE_DYNAMIC_CLASS(wxSpinCtrl)
190};
191
192#endif // wxUSE_SPINBTN/!wxUSE_SPINBTN
193
194#endif // _WX_MAC_SPINCTRL_H_
195