]>
git.saurik.com Git - wxWidgets.git/blob - include/wx/mac/classic/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 #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)
26 #pragma interface "spinctlg.h"
29 class WXDLLEXPORT wxSpinButton
;
30 class WXDLLEXPORT wxTextCtrl
;
32 // ----------------------------------------------------------------------------
33 // wxSpinCtrl is a combination of wxTextCtrl and wxSpinButton
34 // ----------------------------------------------------------------------------
36 class WXDLLEXPORT wxSpinCtrl
: public wxControl
39 wxSpinCtrl() { Init(); }
41 wxSpinCtrl(wxWindow
*parent
,
43 const wxString
& value
= wxEmptyString
,
44 const wxPoint
& pos
= wxDefaultPosition
,
45 const wxSize
& size
= wxDefaultSize
,
46 long style
= wxSP_ARROW_KEYS
,
47 int min
= 0, int max
= 100, int initial
= 0,
48 const wxString
& name
= _T("wxSpinCtrl"))
51 Create(parent
, id
, value
, pos
, size
, style
, min
, max
, initial
, name
);
54 bool Create(wxWindow
*parent
,
56 const wxString
& value
= wxEmptyString
,
57 const wxPoint
& pos
= wxDefaultPosition
,
58 const wxSize
& size
= wxDefaultSize
,
59 long style
= wxSP_ARROW_KEYS
,
60 int min
= 0, int max
= 100, int initial
= 0,
61 const wxString
& name
= _T("wxSpinCtrl"));
63 // wxTextCtrl-like method
64 void SetSelection(long from
, long to
);
66 virtual ~wxSpinCtrl();
69 void SetValue(int val
);
70 void SetValue(const wxString
& text
);
71 void SetRange(int min
, int max
);
78 // implementation from now on
80 // forward these functions to all subcontrols
81 virtual bool Enable(bool enable
= TRUE
);
82 virtual bool Show(bool show
= TRUE
);
84 // get the subcontrols
85 wxTextCtrl
*GetText() const { return m_text
; }
86 wxSpinButton
*GetSpinButton() const { return m_btn
; }
88 // set the value of the text (only)
89 void SetTextValue(int val
);
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;
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_DYNAMIC_CLASS(wxSpinCtrl
)
113 #else // !wxUSE_SPINBTN
115 // ----------------------------------------------------------------------------
116 // wxSpinCtrl is just a text control
117 // ----------------------------------------------------------------------------
119 #include "wx/textctrl.h"
121 class WXDLLEXPORT wxSpinCtrl
: public wxTextCtrl
124 wxSpinCtrl() { Init(); }
126 wxSpinCtrl(wxWindow
*parent
,
128 const wxString
& value
= wxEmptyString
,
129 const wxPoint
& pos
= wxDefaultPosition
,
130 const wxSize
& size
= wxDefaultSize
,
131 long style
= wxSP_ARROW_KEYS
,
132 int min
= 0, int max
= 100, int initial
= 0,
133 const wxString
& name
= _T("wxSpinCtrl"))
135 Create(parent
, id
, value
, pos
, size
, style
, min
, max
, initial
, name
);
138 bool Create(wxWindow
*parent
,
140 const wxString
& value
= wxEmptyString
,
141 const wxPoint
& pos
= wxDefaultPosition
,
142 const wxSize
& size
= wxDefaultSize
,
143 long style
= wxSP_ARROW_KEYS
,
144 int min
= 0, int max
= 100, int initial
= 0,
145 const wxString
& name
= _T("wxSpinCtrl"))
149 bool ok
= wxTextCtrl::Create(parent
, id
, value
, pos
, size
, style
,
150 wxDefaultValidator
, name
);
157 int GetValue(int WXUNUSED(dummy
) = 1) const
160 if ( (wxSscanf(wxTextCtrl::GetValue(), wxT("%d"), &n
) != 1) )
166 int GetMin() const { return m_min
; }
167 int GetMax() const { return m_max
; }
170 void SetValue(const wxString
& value
) { wxTextCtrl::SetValue(value
); }
171 void SetValue(int val
) { wxString s
; s
<< val
; wxTextCtrl::SetValue(s
); }
172 void SetRange(int min
, int max
) { m_min
= min
; m_max
= max
; }
175 // initialize m_min/max with the default values
176 void Init() { SetRange(0, 100); }
182 DECLARE_DYNAMIC_CLASS(wxSpinCtrl
)
185 #endif // wxUSE_SPINBTN/!wxUSE_SPINBTN
187 #endif // _WX_MAC_SPINCTRL_H_