]>
Commit | Line | Data |
---|---|---|
feb72429 | 1 | ///////////////////////////////////////////////////////////////////////////// |
02e05e7e | 2 | // Name: src/msw/datectrl.cpp |
feb72429 VZ |
3 | // Purpose: wxDatePickerCtrl implementation |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 2005-01-09 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 2005 Vadim Zeitlin <vadim@wxwindows.org> | |
9 | // Licence: wxWindows licence | |
10 | ///////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #include "wx/wxprec.h" | |
21 | ||
22 | #ifdef __BORLANDC__ | |
23 | #pragma hdrstop | |
24 | #endif | |
25 | ||
02e05e7e WS |
26 | #if wxUSE_DATEPICKCTRL |
27 | ||
feb72429 | 28 | #ifndef WX_PRECOMP |
57bd4c60 WS |
29 | #include "wx/msw/wrapwin.h" |
30 | #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly" | |
02e05e7e WS |
31 | #include "wx/app.h" |
32 | #include "wx/intl.h" | |
33 | #include "wx/dcclient.h" | |
8a18ea3f | 34 | #include "wx/settings.h" |
02e05e7e | 35 | #include "wx/msw/private.h" |
feb72429 VZ |
36 | #endif |
37 | ||
38 | #include "wx/datectrl.h" | |
51317496 VZ |
39 | |
40 | #include "wx/msw/private/datecontrols.h" | |
feb72429 | 41 | |
feb72429 VZ |
42 | #include "wx/dateevt.h" |
43 | ||
3200f37d VZ |
44 | // apparently some versions of mingw define these macros erroneously |
45 | #ifndef DateTime_GetSystemtime | |
46 | #define DateTime_GetSystemtime DateTime_GetSystemTime | |
47 | #endif | |
48 | ||
49 | #ifndef DateTime_SetSystemtime | |
50 | #define DateTime_SetSystemtime DateTime_SetSystemTime | |
65ab1002 JS |
51 | #endif |
52 | ||
a69e2a0a VZ |
53 | IMPLEMENT_DYNAMIC_CLASS(wxDatePickerCtrl, wxControl) |
54 | ||
feb72429 VZ |
55 | // ============================================================================ |
56 | // implementation | |
57 | // ============================================================================ | |
58 | ||
feb72429 VZ |
59 | // ---------------------------------------------------------------------------- |
60 | // wxDatePickerCtrl creation | |
61 | // ---------------------------------------------------------------------------- | |
62 | ||
63 | bool | |
64 | wxDatePickerCtrl::Create(wxWindow *parent, | |
65 | wxWindowID id, | |
66 | const wxDateTime& dt, | |
67 | const wxPoint& pos, | |
68 | const wxSize& size, | |
69 | long style, | |
70 | const wxValidator& validator, | |
71 | const wxString& name) | |
72 | { | |
51317496 VZ |
73 | if ( !wxMSWDateControls::CheckInitialization() ) |
74 | return false; | |
0aa7cb54 | 75 | |
5385747e VZ |
76 | // use wxDP_SPIN if wxDP_DEFAULT (0) was given as style |
77 | if ( !(style & wxDP_DROPDOWN) ) | |
78 | style |= wxDP_SPIN; | |
79 | ||
feb72429 VZ |
80 | // initialize the base class |
81 | if ( !CreateControl(parent, id, pos, size, style, validator, name) ) | |
82 | return false; | |
83 | ||
84 | // create the native control | |
f31a4098 | 85 | if ( !MSWCreateControl(DATETIMEPICK_CLASS, wxEmptyString, pos, size) ) |
feb72429 VZ |
86 | return false; |
87 | ||
bab3f3ea | 88 | if ( dt.IsValid() || (style & wxDP_ALLOWNONE) ) |
feb72429 | 89 | SetValue(dt); |
4d536421 RD |
90 | else |
91 | SetValue(wxDateTime::Today()); | |
feb72429 VZ |
92 | |
93 | return true; | |
94 | } | |
95 | ||
96 | WXDWORD wxDatePickerCtrl::MSWGetStyle(long style, WXDWORD *exstyle) const | |
97 | { | |
98 | WXDWORD styleMSW = wxDatePickerCtrlBase::MSWGetStyle(style, exstyle); | |
99 | ||
0aa7cb54 VZ |
100 | // although MSDN doesn't mention it, DTS_UPDOWN doesn't work with |
101 | // comctl32.dll 4.72 | |
2a1f999f | 102 | if ( wxApp::GetComCtl32Version() > 472 && (style & wxDP_SPIN) ) |
29c86948 VZ |
103 | styleMSW |= DTS_UPDOWN; |
104 | //else: drop down by default | |
105 | ||
2cfbeac8 VZ |
106 | #ifdef DTS_SHORTDATECENTURYFORMAT |
107 | if ( style & wxDP_SHOWCENTURY ) | |
108 | styleMSW |= DTS_SHORTDATECENTURYFORMAT; | |
109 | else | |
110 | #endif // DTS_SHORTDATECENTURYFORMAT | |
111 | styleMSW |= DTS_SHORTDATEFORMAT; | |
feb72429 | 112 | |
3200f37d VZ |
113 | if ( style & wxDP_ALLOWNONE ) |
114 | styleMSW |= DTS_SHOWNONE; | |
115 | ||
feb72429 VZ |
116 | return styleMSW; |
117 | } | |
118 | ||
119 | // TODO: handle WM_WININICHANGE | |
120 | ||
121 | // ---------------------------------------------------------------------------- | |
122 | // wxDatePickerCtrl geometry | |
123 | // ---------------------------------------------------------------------------- | |
124 | ||
125 | wxSize wxDatePickerCtrl::DoGetBestSize() const | |
126 | { | |
5c33522f | 127 | wxClientDC dc(const_cast<wxDatePickerCtrl *>(this)); |
feb72429 | 128 | |
c01359d9 VZ |
129 | // we can't use FormatDate() here as the CRT doesn't always use the same |
130 | // format as the date picker control | |
131 | wxString s; | |
132 | for ( int len = 100; ; len *= 2 ) | |
133 | { | |
134 | if ( ::GetDateFormat | |
135 | ( | |
136 | LOCALE_USER_DEFAULT, // the control should use the same | |
137 | DATE_SHORTDATE, // the format used by the control | |
138 | NULL, // use current date (we don't care) | |
139 | NULL, // no custom format | |
140 | wxStringBuffer(s, len), // output buffer | |
141 | len // and its length | |
142 | ) ) | |
143 | { | |
144 | // success | |
145 | break; | |
146 | } | |
147 | ||
148 | const DWORD rc = ::GetLastError(); | |
149 | if ( rc != ERROR_INSUFFICIENT_BUFFER ) | |
150 | { | |
151 | wxLogApiError(_T("GetDateFormat"), rc); | |
152 | ||
153 | // fall back on wxDateTime, what else to do? | |
154 | s = wxDateTime::Today().FormatDate(); | |
155 | break; | |
156 | } | |
157 | } | |
158 | ||
8a18ea3f VZ |
159 | // the best size for the control is bigger than just the string |
160 | // representation of todays date because the control must accommodate any | |
161 | // date and while the widths of all digits are usually about the same, the | |
162 | // width of the month string varies a lot, so try to account for it | |
163 | s += _T("WW"); | |
c01359d9 VZ |
164 | |
165 | int x, y; | |
166 | dc.GetTextExtent(s, &x, &y); | |
167 | ||
8a18ea3f VZ |
168 | // account for the drop-down arrow or spin arrows |
169 | x += wxSystemSettings::GetMetric(wxSYS_HSCROLL_ARROW_X); | |
170 | ||
171 | // and for the checkbox if we have it | |
172 | if ( HasFlag(wxDP_ALLOWNONE) ) | |
173 | x += 3*GetCharWidth(); | |
174 | ||
175 | wxSize best(x, EDIT_HEIGHT_FROM_CHAR_HEIGHT(y)); | |
31582e4e RD |
176 | CacheBestSize(best); |
177 | return best; | |
feb72429 VZ |
178 | } |
179 | ||
180 | // ---------------------------------------------------------------------------- | |
181 | // wxDatePickerCtrl operations | |
182 | // ---------------------------------------------------------------------------- | |
183 | ||
184 | void wxDatePickerCtrl::SetValue(const wxDateTime& dt) | |
185 | { | |
3200f37d VZ |
186 | wxCHECK_RET( dt.IsValid() || HasFlag(wxDP_ALLOWNONE), |
187 | _T("this control requires a valid date") ); | |
feb72429 VZ |
188 | |
189 | SYSTEMTIME st; | |
3200f37d | 190 | if ( dt.IsValid() ) |
154014d6 | 191 | dt.GetAsMSWSysTime(&st); |
3200f37d VZ |
192 | if ( !DateTime_SetSystemtime(GetHwnd(), |
193 | dt.IsValid() ? GDT_VALID : GDT_NONE, | |
194 | &st) ) | |
feb72429 VZ |
195 | { |
196 | wxLogDebug(_T("DateTime_SetSystemtime() failed")); | |
197 | } | |
e4164aa9 | 198 | |
5541976c VZ |
199 | // we need to keep only the date part, times don't make sense for this |
200 | // control (in particular, comparisons with other dates would fail) | |
28039907 | 201 | m_date = dt; |
0bdd8074 VZ |
202 | if ( m_date.IsValid() ) |
203 | m_date.ResetTime(); | |
feb72429 VZ |
204 | } |
205 | ||
206 | wxDateTime wxDatePickerCtrl::GetValue() const | |
207 | { | |
e4164aa9 | 208 | #ifdef __WXDEBUG__ |
feb72429 VZ |
209 | wxDateTime dt; |
210 | SYSTEMTIME st; | |
211 | if ( DateTime_GetSystemtime(GetHwnd(), &st) == GDT_VALID ) | |
212 | { | |
154014d6 | 213 | dt.SetFromMSWSysTime(st); |
feb72429 VZ |
214 | } |
215 | ||
e4164aa9 VZ |
216 | wxASSERT_MSG( m_date.IsValid() == dt.IsValid() && |
217 | (!dt.IsValid() || dt == m_date), | |
218 | _T("bug in wxDatePickerCtrl: m_date not in sync") ); | |
219 | #endif // __WXDEBUG__ | |
220 | ||
221 | return m_date; | |
feb72429 VZ |
222 | } |
223 | ||
224 | void wxDatePickerCtrl::SetRange(const wxDateTime& dt1, const wxDateTime& dt2) | |
225 | { | |
226 | SYSTEMTIME st[2]; | |
227 | ||
228 | DWORD flags = 0; | |
229 | if ( dt1.IsValid() ) | |
230 | { | |
154014d6 | 231 | dt1.GetAsMSWSysTime(st + 0); |
feb72429 VZ |
232 | flags |= GDTR_MIN; |
233 | } | |
234 | ||
235 | if ( dt2.IsValid() ) | |
236 | { | |
154014d6 | 237 | dt2.GetAsMSWSysTime(st + 1); |
feb72429 VZ |
238 | flags |= GDTR_MAX; |
239 | } | |
240 | ||
241 | if ( !DateTime_SetRange(GetHwnd(), flags, st) ) | |
242 | { | |
243 | wxLogDebug(_T("DateTime_SetRange() failed")); | |
244 | } | |
245 | } | |
246 | ||
247 | bool wxDatePickerCtrl::GetRange(wxDateTime *dt1, wxDateTime *dt2) const | |
248 | { | |
249 | SYSTEMTIME st[2]; | |
250 | ||
251 | DWORD flags = DateTime_GetRange(GetHwnd(), st); | |
252 | if ( dt1 ) | |
253 | { | |
254 | if ( flags & GDTR_MIN ) | |
154014d6 | 255 | dt1->SetFromMSWSysTime(st[0]); |
feb72429 VZ |
256 | else |
257 | *dt1 = wxDefaultDateTime; | |
258 | } | |
259 | ||
260 | if ( dt2 ) | |
261 | { | |
262 | if ( flags & GDTR_MAX ) | |
154014d6 | 263 | dt2->SetFromMSWSysTime(st[1]); |
feb72429 VZ |
264 | else |
265 | *dt2 = wxDefaultDateTime; | |
266 | } | |
267 | ||
268 | return flags != 0; | |
269 | } | |
270 | ||
271 | // ---------------------------------------------------------------------------- | |
272 | // wxDatePickerCtrl events | |
273 | // ---------------------------------------------------------------------------- | |
274 | ||
275 | bool | |
276 | wxDatePickerCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result) | |
277 | { | |
278 | NMHDR* hdr = (NMHDR *)lParam; | |
279 | switch ( hdr->code ) | |
280 | { | |
281 | case DTN_DATETIMECHANGE: | |
b4446c24 | 282 | { |
feb72429 VZ |
283 | NMDATETIMECHANGE *dtch = (NMDATETIMECHANGE *)hdr; |
284 | wxDateTime dt; | |
285 | if ( dtch->dwFlags == GDT_VALID ) | |
154014d6 | 286 | dt.SetFromMSWSysTime(dtch->st); |
feb72429 | 287 | |
e4164aa9 VZ |
288 | // filter out duplicate DTN_DATETIMECHANGE events which the native |
289 | // control sends us when using wxDP_DROPDOWN style | |
0c8433d0 VZ |
290 | if ( (m_date.IsValid() != dt.IsValid()) || |
291 | (m_date.IsValid() && dt != m_date) ) | |
feb72429 | 292 | { |
e4164aa9 VZ |
293 | m_date = dt; |
294 | wxDateEvent event(this, dt, wxEVT_DATE_CHANGED); | |
937013e0 | 295 | if ( HandleWindowEvent(event) ) |
e4164aa9 VZ |
296 | { |
297 | *result = 0; | |
298 | return true; | |
299 | } | |
feb72429 | 300 | } |
0c8433d0 | 301 | //else: both the old and new values are invalid, nothing changed |
b4446c24 | 302 | } |
feb72429 VZ |
303 | } |
304 | ||
305 | return wxDatePickerCtrlBase::MSWOnNotify(idCtrl, lParam, result); | |
306 | } | |
307 | ||
9b877d18 | 308 | #endif // wxUSE_DATEPICKCTRL |