]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/carbon/spinctrl.h
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/generic/spinctlg.h
3 // Purpose: generic wxSpinCtrl class
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MAC_SPINCTRL_H_
13 #define _WX_MAC_SPINCTRL_H_
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 // ----------------------------------------------------------------------------
25 #include "wx/containr.h"
27 class WXDLLEXPORT wxSpinButton
;
28 class WXDLLEXPORT wxTextCtrl
;
30 // ----------------------------------------------------------------------------
31 // wxSpinCtrl is a combination of wxTextCtrl and wxSpinButton
32 // ----------------------------------------------------------------------------
34 class WXDLLEXPORT wxSpinCtrl
: public wxControl
37 wxSpinCtrl() { Init(); }
39 wxSpinCtrl(wxWindow
*parent
,
41 const wxString
& value
= wxEmptyString
,
42 const wxPoint
& pos
= wxDefaultPosition
,
43 const wxSize
& size
= wxDefaultSize
,
44 long style
= wxSP_ARROW_KEYS
,
45 int min
= 0, int max
= 100, int initial
= 0,
46 const wxString
& name
= _T("wxSpinCtrl"))
49 Create(parent
, id
, value
, pos
, size
, style
, min
, max
, initial
, name
);
52 bool Create(wxWindow
*parent
,
54 const wxString
& value
= wxEmptyString
,
55 const wxPoint
& pos
= wxDefaultPosition
,
56 const wxSize
& size
= wxDefaultSize
,
57 long style
= wxSP_ARROW_KEYS
,
58 int min
= 0, int max
= 100, int initial
= 0,
59 const wxString
& name
= _T("wxSpinCtrl"));
61 // wxTextCtrl-like method
62 void SetSelection(long from
, long to
);
64 virtual ~wxSpinCtrl();
67 void SetValue(int val
);
68 void SetValue(const wxString
& text
);
69 void SetRange(int min
, int max
);
76 // implementation from now on
78 // forward these functions to all subcontrols
79 virtual bool Enable(bool enable
= TRUE
);
80 virtual bool Show(bool show
= TRUE
);
82 // get the subcontrols
83 wxTextCtrl
*GetText() const { return m_text
; }
84 wxSpinButton
*GetSpinButton() const { return m_btn
; }
86 // set the value of the text (only)
87 void SetTextValue(int val
);
89 // put the numeric value of the string in the text ctrl into val and return
90 // TRUE or return FALSE if the text ctrl doesn't contain a number or if the
91 // number is out of range
92 bool GetTextValue(int *val
) const;
94 WX_DECLARE_CONTROL_CONTAINER();
97 // override the base class virtuals involved into geometry calculations
98 virtual wxSize
DoGetBestSize() const;
99 virtual void DoMoveWindow(int x
, int y
, int width
, int height
);
101 // common part of all ctors
110 DECLARE_EVENT_TABLE()
111 DECLARE_DYNAMIC_CLASS(wxSpinCtrl
)
114 #else // !wxUSE_SPINBTN
116 // ----------------------------------------------------------------------------
117 // wxSpinCtrl is just a text control
118 // ----------------------------------------------------------------------------
120 #include "wx/textctrl.h"
122 class WXDLLEXPORT wxSpinCtrl
: public wxTextCtrl
125 wxSpinCtrl() { Init(); }
127 wxSpinCtrl(wxWindow
*parent
,
129 const wxString
& value
= wxEmptyString
,
130 const wxPoint
& pos
= wxDefaultPosition
,
131 const wxSize
& size
= wxDefaultSize
,
132 long style
= wxSP_ARROW_KEYS
,
133 int min
= 0, int max
= 100, int initial
= 0,
134 const wxString
& name
= _T("wxSpinCtrl"))
136 Create(parent
, id
, value
, pos
, size
, style
, min
, max
, initial
, name
);
139 bool Create(wxWindow
*parent
,
141 const wxString
& value
= wxEmptyString
,
142 const wxPoint
& pos
= wxDefaultPosition
,
143 const wxSize
& size
= wxDefaultSize
,
144 long style
= wxSP_ARROW_KEYS
,
145 int min
= 0, int max
= 100, int initial
= 0,
146 const wxString
& name
= _T("wxSpinCtrl"))
150 bool ok
= wxTextCtrl::Create(parent
, id
, value
, pos
, size
, style
,
151 wxDefaultValidator
, name
);
158 int GetValue(int WXUNUSED(dummy
) = 1) const
161 if ( (wxSscanf(wxTextCtrl::GetValue(), wxT("%d"), &n
) != 1) )
167 int GetMin() const { return m_min
; }
168 int GetMax() const { return m_max
; }
171 void SetValue(const wxString
& value
) { wxTextCtrl::SetValue(value
); }
172 void SetValue(int val
) { wxString s
; s
<< val
; wxTextCtrl::SetValue(s
); }
173 void SetRange(int min
, int max
) { m_min
= min
; m_max
= max
; }
176 // initialize m_min/max with the default values
177 void Init() { SetRange(0, 100); }
183 DECLARE_DYNAMIC_CLASS(wxSpinCtrl
)
186 #endif // wxUSE_SPINBTN/!wxUSE_SPINBTN
188 #endif // _WX_MAC_SPINCTRL_H_