]>
git.saurik.com Git - wxWidgets.git/blob - src/msw/spinctrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: msw/spinctrl.cpp
3 // Purpose: wxSpinCtrl class implementation for Win32
4 // Author: Vadim Zeitlin
8 // Copyright: (c) Vadim Zeitlin
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
17 #pragma implementation "spinctrlbase.h"
18 #pragma implementation "spinctrl.h"
21 // ----------------------------------------------------------------------------
23 // ----------------------------------------------------------------------------
25 // for compilers that support precompilation, includes "wx.h".
26 #include "wx/wxprec.h"
36 #if defined(__WIN95__)
38 #include "wx/spinctrl.h"
39 #include "wx/msw/private.h"
41 #if (defined(__WIN95__) && !defined(__GNUWIN32__)) || defined(__TWIN32__) || defined(wxUSE_NORLANDER_HEADERS)
45 #include <limits.h> // for INT_MIN
47 // ----------------------------------------------------------------------------
49 // ----------------------------------------------------------------------------
51 #if !USE_SHARED_LIBRARY
52 IMPLEMENT_DYNAMIC_CLASS(wxSpinCtrl
, wxControl
)
55 // ----------------------------------------------------------------------------
57 // ----------------------------------------------------------------------------
59 // the margin between the up-down control and its buddy (can be arbitrary,
60 // choose what you like - or may be decide during run-time depending on the
62 static const int MARGIN_BETWEEN
= 1;
64 // ============================================================================
66 // ============================================================================
68 // ----------------------------------------------------------------------------
70 // ----------------------------------------------------------------------------
72 bool wxSpinCtrl::Create(wxWindow
*parent
,
74 const wxString
& value
,
78 int min
, int max
, int initial
,
81 // before using DoGetBestSize(), have to set style to let the base class
82 // know whether this is a horizontal or vertical control (we're always
84 SetWindowStyle(style
| wxSP_VERTICAL
);
86 // calculate the sizes: the size given is the toal size for both controls
87 // and we need to fit them both in the given width (height is the same)
88 wxSize
sizeText(size
), sizeBtn(size
);
89 sizeBtn
.x
= wxSpinButton::DoGetBestSize().x
;
90 if ( sizeText
.x
<= 0 )
92 // DEFAULT_ITEM_WIDTH is the default width for the text control
93 sizeText
.x
= DEFAULT_ITEM_WIDTH
+ MARGIN_BETWEEN
+ sizeBtn
.x
;
96 sizeText
.x
-= sizeBtn
.x
+ MARGIN_BETWEEN
;
97 if ( sizeText
.x
<= 0 )
99 wxLogDebug(_T("not enough space for wxSpinCtrl!"));
103 posBtn
.x
+= sizeText
.x
+ MARGIN_BETWEEN
;
105 // create the spin button
106 if ( !wxSpinButton::Create(parent
, id
, posBtn
, sizeBtn
, style
, name
) )
114 // create the text window
115 m_hwndBuddy
= (WXHWND
)::CreateWindowEx
117 WS_EX_CLIENTEDGE
, // sunken border
118 _T("EDIT"), // window class
119 NULL
, // no window title
120 WS_CHILD
| WS_BORDER
, // style (will be shown later)
121 pos
.x
, pos
.y
, // position
122 0, 0, // size (will be set later)
123 GetHwndOf(parent
), // parent
124 (HMENU
)-1, // control id
125 wxGetInstance(), // app instance
126 NULL
// unused client data
131 wxLogLastError("CreateWindow(buddy text window)");
136 // should have the same font as the other controls
137 SetFont(GetParent()->GetFont());
139 // set the size of the text window - can do it only now, because we
140 // couldn't call DoGetBestSize() before as font wasn't set
141 if ( sizeText
.y
<= 0 )
143 // make it the same height as the button then
144 sizeText
.y
= DoGetBestSize().y
;
147 DoMoveWindow(pos
.x
, pos
.y
,
148 sizeText
.x
+ sizeBtn
.x
+ MARGIN_BETWEEN
, sizeText
.y
);
150 (void)::ShowWindow((HWND
)m_hwndBuddy
, SW_SHOW
);
152 // associate the text window with the spin button
153 (void)::SendMessage(GetHwnd(), UDM_SETBUDDY
, (WPARAM
)m_hwndBuddy
, 0);
155 if ( !value
.IsEmpty() )
163 // ----------------------------------------------------------------------------
164 // wxTextCtrl-like methods
165 // ----------------------------------------------------------------------------
167 void wxSpinCtrl::SetValue(const wxString
& text
)
169 if ( ::SetWindowText((HWND
)m_hwndBuddy
, text
.c_str()) )
171 wxLogLastError("SetWindowText(buddy)");
175 int wxSpinCtrl::GetValue() const
177 wxString val
= wxGetWindowText(m_hwndBuddy
);
180 if ( (wxSscanf(val
, wxT("%lu"), &n
) != 1) )
186 // ----------------------------------------------------------------------------
187 // when setting font, we need to do it for both controls
188 // ----------------------------------------------------------------------------
190 bool wxSpinCtrl::SetFont(const wxFont
& font
)
192 if ( !wxWindowBase::SetFont(font
) )
198 WXHANDLE hFont
= GetFont().GetResourceHandle();
199 (void)::SendMessage((HWND
)m_hwndBuddy
, WM_SETFONT
, (WPARAM
)hFont
, TRUE
);
204 // ----------------------------------------------------------------------------
206 // ----------------------------------------------------------------------------
208 wxSize
wxSpinCtrl::DoGetBestSize()
210 wxSize sizeBtn
= wxSpinButton::DoGetBestSize();
211 sizeBtn
.x
+= DEFAULT_ITEM_WIDTH
+ MARGIN_BETWEEN
;
214 wxGetCharSize(GetHWND(), NULL
, &y
, &GetFont());
215 y
= EDIT_HEIGHT_FROM_CHAR_HEIGHT(y
);
219 // make the text tall enough
226 void wxSpinCtrl::DoMoveWindow(int x
, int y
, int width
, int height
)
228 int widthBtn
= wxSpinButton::DoGetBestSize().x
;
229 int widthText
= width
- widthBtn
- MARGIN_BETWEEN
;
230 if ( widthText
<= 0 )
232 wxLogDebug(_T("not enough space for wxSpinCtrl!"));
235 if ( !::MoveWindow((HWND
)m_hwndBuddy
, x
, y
, widthText
, height
, TRUE
) )
237 wxLogLastError("MoveWindow(buddy)");
240 x
+= widthText
+ MARGIN_BETWEEN
;
241 if ( !::MoveWindow(GetHwnd(), x
, y
, widthBtn
, height
, TRUE
) )
243 wxLogLastError("MoveWindow");