Add wxActivateEvent::GetActivationReason().
[wxWidgets.git] / src / msw / calctrl.cpp
1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/calctrl.cpp
3 // Purpose: wxCalendarCtrl implementation
4 // Author: Vadim Zeitlin
5 // Created: 2008-04-04
6 // Copyright: (C) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
9
10 // ============================================================================
11 // declarations
12 // ============================================================================
13
14 // ----------------------------------------------------------------------------
15 // headers
16 // ----------------------------------------------------------------------------
17
18 #include "wx/wxprec.h"
19
20 #ifdef __BORLANDC__
21 #pragma hdrstop
22 #endif
23
24 #if wxUSE_CALENDARCTRL
25
26 #ifndef WX_PRECOMP
27 #include "wx/msw/wrapwin.h"
28 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
29 #include "wx/msw/private.h"
30 #endif
31
32 #include "wx/calctrl.h"
33
34 #include "wx/msw/private/datecontrols.h"
35
36 // ----------------------------------------------------------------------------
37 // constants
38 // ----------------------------------------------------------------------------
39
40 namespace
41 {
42
43 // values of week days used by the native control
44 enum
45 {
46 MonthCal_Monday,
47 MonthCal_Tuesday,
48 MonthCal_Wednesday,
49 MonthCal_Thursday,
50 MonthCal_Friday,
51 MonthCal_Saturday,
52 MonthCal_Sunday
53 };
54
55 } // anonymous namespace
56
57 // ============================================================================
58 // implementation
59 // ============================================================================
60
61 // ----------------------------------------------------------------------------
62 // wxCalendarCtrl creation
63 // ----------------------------------------------------------------------------
64
65 void wxCalendarCtrl::Init()
66 {
67 m_marks =
68 m_holidays = 0;
69 }
70
71 bool
72 wxCalendarCtrl::Create(wxWindow *parent,
73 wxWindowID id,
74 const wxDateTime& dt,
75 const wxPoint& pos,
76 const wxSize& size,
77 long style,
78 const wxString& name)
79 {
80 if ( !wxMSWDateControls::CheckInitialization() )
81 return false;
82
83 // we need the arrows for the navigation
84 style |= wxWANTS_CHARS;
85
86 // initialize the base class
87 if ( !CreateControl(parent, id, pos, size, style, wxDefaultValidator, name) )
88 return false;
89
90 // create the native control: this is a bit tricky as we want to receive
91 // double click events but the MONTHCAL_CLASS doesn't use CS_DBLCLKS style
92 // and so we create our own copy of it which does
93 static ClassRegistrar s_clsMonthCal;
94 if ( !s_clsMonthCal.IsInitialized() )
95 {
96 // get a copy of standard class and modify it
97 WNDCLASS wc;
98 if ( ::GetClassInfo(NULL, MONTHCAL_CLASS, &wc) )
99 {
100 wc.lpszClassName = wxT("_wx_SysMonthCtl32");
101 wc.style |= CS_DBLCLKS;
102 s_clsMonthCal.Register(wc);
103 }
104 else
105 {
106 wxLogLastError(wxT("GetClassInfoEx(SysMonthCal32)"));
107 }
108 }
109
110 const wxChar * const clsname = s_clsMonthCal.IsRegistered()
111 ? s_clsMonthCal.GetName().t_str()
112 : MONTHCAL_CLASS;
113
114 if ( !MSWCreateControl(clsname, wxEmptyString, pos, size) )
115 return false;
116
117 // initialize the control
118 UpdateFirstDayOfWeek();
119
120 SetDate(dt.IsValid() ? dt : wxDateTime::Today());
121
122 SetHolidayAttrs();
123 UpdateMarks();
124
125 Connect(wxEVT_LEFT_DOWN,
126 wxMouseEventHandler(wxCalendarCtrl::MSWOnClick));
127 Connect(wxEVT_LEFT_DCLICK,
128 wxMouseEventHandler(wxCalendarCtrl::MSWOnDoubleClick));
129
130 return true;
131 }
132
133 WXDWORD wxCalendarCtrl::MSWGetStyle(long style, WXDWORD *exstyle) const
134 {
135 WXDWORD styleMSW = wxCalendarCtrlBase::MSWGetStyle(style, exstyle);
136
137 // right now we don't support all native styles but we should add wx styles
138 // corresponding to MCS_NOTODAY and MCS_NOTODAYCIRCLE probably (TODO)
139
140 // for compatibility with the other versions, just turn off today display
141 // unconditionally for now
142 styleMSW |= MCS_NOTODAY;
143
144 // we also need this style for Mark() to work
145 styleMSW |= MCS_DAYSTATE;
146
147 if ( style & wxCAL_SHOW_WEEK_NUMBERS )
148 styleMSW |= MCS_WEEKNUMBERS;
149
150 return styleMSW;
151 }
152
153 void wxCalendarCtrl::SetWindowStyleFlag(long style)
154 {
155 const bool hadMondayFirst = HasFlag(wxCAL_MONDAY_FIRST);
156
157 wxCalendarCtrlBase::SetWindowStyleFlag(style);
158
159 if ( HasFlag(wxCAL_MONDAY_FIRST) != hadMondayFirst )
160 UpdateFirstDayOfWeek();
161 }
162
163 // ----------------------------------------------------------------------------
164 // wxCalendarCtrl geometry
165 // ----------------------------------------------------------------------------
166
167 // TODO: handle WM_WININICHANGE
168 wxSize wxCalendarCtrl::DoGetBestSize() const
169 {
170 RECT rc;
171 if ( !GetHwnd() || !MonthCal_GetMinReqRect(GetHwnd(), &rc) )
172 {
173 return wxCalendarCtrlBase::DoGetBestSize();
174 }
175
176 const wxSize best = wxRectFromRECT(rc).GetSize() + GetWindowBorderSize();
177 CacheBestSize(best);
178 return best;
179 }
180
181 wxCalendarHitTestResult
182 wxCalendarCtrl::HitTest(const wxPoint& pos,
183 wxDateTime *date,
184 wxDateTime::WeekDay *wd)
185 {
186 WinStruct<MCHITTESTINFO> hti;
187
188 // Vista and later SDKs add a few extra fields to MCHITTESTINFO which are
189 // not supported by the previous versions, as we don't use them anyhow we
190 // should pretend that we always use the old struct format to make the call
191 // below work on pre-Vista systems (see #11057)
192 #ifdef MCHITTESTINFO_V1_SIZE
193 hti.cbSize = MCHITTESTINFO_V1_SIZE;
194 #endif
195
196 hti.pt.x = pos.x;
197 hti.pt.y = pos.y;
198 switch ( MonthCal_HitTest(GetHwnd(), &hti) )
199 {
200 default:
201 case MCHT_CALENDARWEEKNUM:
202 wxFAIL_MSG( "unexpected" );
203 // fall through
204
205 case MCHT_NOWHERE:
206 case MCHT_CALENDARBK:
207 case MCHT_TITLEBK:
208 case MCHT_TITLEMONTH:
209 case MCHT_TITLEYEAR:
210 return wxCAL_HITTEST_NOWHERE;
211
212 case MCHT_CALENDARDATE:
213 if ( date )
214 date->SetFromMSWSysDate(hti.st);
215 return wxCAL_HITTEST_DAY;
216
217 case MCHT_CALENDARDAY:
218 if ( wd )
219 {
220 int day = hti.st.wDayOfWeek;
221
222 // the native control returns incorrect day of the week when
223 // the first day isn't Monday, i.e. the first column is always
224 // "Monday" even if its label is "Sunday", compensate for it
225 const int first = LOWORD(MonthCal_GetFirstDayOfWeek(GetHwnd()));
226 if ( first == MonthCal_Monday )
227 {
228 // as MonthCal_Monday is 0 while wxDateTime::Mon is 1,
229 // normally we need to do this to transform from MSW
230 // convention to wx one
231 day++;
232 day %= 7;
233 }
234 //else: but when the first day is MonthCal_Sunday, the native
235 // control still returns 0 (i.e. MonthCal_Monday) for the
236 // first column which looks like a bug in it but to work
237 // around it it's enough to not apply the correction above
238
239 *wd = static_cast<wxDateTime::WeekDay>(day);
240 }
241 return wxCAL_HITTEST_HEADER;
242
243 case MCHT_TITLEBTNNEXT:
244 return wxCAL_HITTEST_INCMONTH;
245
246 case MCHT_TITLEBTNPREV:
247 return wxCAL_HITTEST_DECMONTH;
248
249 case MCHT_CALENDARDATENEXT:
250 case MCHT_CALENDARDATEPREV:
251 return wxCAL_HITTEST_SURROUNDING_WEEK;
252 }
253 }
254
255 // ----------------------------------------------------------------------------
256 // wxCalendarCtrl operations
257 // ----------------------------------------------------------------------------
258
259 bool wxCalendarCtrl::SetDate(const wxDateTime& dt)
260 {
261 wxCHECK_MSG( dt.IsValid(), false, "invalid date" );
262
263 SYSTEMTIME st;
264 dt.GetAsMSWSysDate(&st);
265 if ( !MonthCal_SetCurSel(GetHwnd(), &st) )
266 {
267 wxLogDebug(wxT("DateTime_SetSystemtime() failed"));
268
269 return false;
270 }
271
272 m_date = dt.GetDateOnly();
273
274 return true;
275 }
276
277 wxDateTime wxCalendarCtrl::GetDate() const
278 {
279 #if wxDEBUG_LEVEL
280 SYSTEMTIME st;
281
282 if ( !MonthCal_GetCurSel(GetHwnd(), &st) )
283 {
284 wxASSERT_MSG( !m_date.IsValid(), "mismatch between data and control" );
285
286 return wxDefaultDateTime;
287 }
288
289 wxDateTime dt;
290 dt.SetFromMSWSysDate(st);
291
292 // Windows XP and earlier didn't include the time component into the
293 // returned date but Windows 7 does, so we can't compare the full objects
294 // in the same way under all the Windows versions, just compare their date
295 // parts
296 wxASSERT_MSG( dt.IsSameDate(m_date), "mismatch between data and control" );
297 #endif // wxDEBUG_LEVEL
298
299 return m_date;
300 }
301
302 bool wxCalendarCtrl::SetDateRange(const wxDateTime& dt1, const wxDateTime& dt2)
303 {
304 SYSTEMTIME st[2];
305
306 DWORD flags = 0;
307 if ( dt1.IsValid() )
308 {
309 dt1.GetAsMSWSysTime(st + 0);
310 flags |= GDTR_MIN;
311 }
312
313 if ( dt2.IsValid() )
314 {
315 dt2.GetAsMSWSysTime(st + 1);
316 flags |= GDTR_MAX;
317 }
318
319 if ( !MonthCal_SetRange(GetHwnd(), flags, st) )
320 {
321 wxLogDebug(wxT("MonthCal_SetRange() failed"));
322 }
323
324 return flags != 0;
325 }
326
327 bool wxCalendarCtrl::GetDateRange(wxDateTime *dt1, wxDateTime *dt2) const
328 {
329 SYSTEMTIME st[2];
330
331 DWORD flags = MonthCal_GetRange(GetHwnd(), st);
332 if ( dt1 )
333 {
334 if ( flags & GDTR_MIN )
335 dt1->SetFromMSWSysDate(st[0]);
336 else
337 *dt1 = wxDefaultDateTime;
338 }
339
340 if ( dt2 )
341 {
342 if ( flags & GDTR_MAX )
343 dt2->SetFromMSWSysDate(st[1]);
344 else
345 *dt2 = wxDefaultDateTime;
346 }
347
348 return flags != 0;
349 }
350
351 // ----------------------------------------------------------------------------
352 // other wxCalendarCtrl operations
353 // ----------------------------------------------------------------------------
354
355 bool wxCalendarCtrl::EnableMonthChange(bool enable)
356 {
357 if ( !wxCalendarCtrlBase::EnableMonthChange(enable) )
358 return false;
359
360 wxDateTime dtStart, dtEnd;
361 if ( !enable )
362 {
363 dtStart = GetDate();
364 dtStart.SetDay(1);
365
366 dtEnd = dtStart.GetLastMonthDay();
367 }
368 //else: leave them invalid to remove the restriction
369
370 SetDateRange(dtStart, dtEnd);
371
372 return true;
373 }
374
375 void wxCalendarCtrl::Mark(size_t day, bool mark)
376 {
377 wxCHECK_RET( day > 0 && day < 32, "invalid day" );
378
379 int mask = 1 << (day - 1);
380 if ( mark )
381 m_marks |= mask;
382 else
383 m_marks &= ~mask;
384
385 // calling Refresh() here is not enough to change the day appearance
386 UpdateMarks();
387 }
388
389 void wxCalendarCtrl::SetHoliday(size_t day)
390 {
391 wxCHECK_RET( day > 0 && day < 32, "invalid day" );
392
393 m_holidays |= 1 << (day - 1);
394 }
395
396 void wxCalendarCtrl::UpdateMarks()
397 {
398 // Currently the native control may show more than one month if its size is
399 // big enough. Ideal would be to prevent this from happening but there
400 // doesn't seem to be any obvious way to do it, so for now just handle the
401 // possibility that we can display several of them: one before the current
402 // one and up to 12 after it.
403 MONTHDAYSTATE states[14] = { 0 };
404 const DWORD nMonths = MonthCal_GetMonthRange(GetHwnd(), GMR_DAYSTATE, NULL);
405
406 // although in principle the calendar might not show any days from the
407 // preceding months, it seems like it always does, consider e.g. Feb 2010
408 // which starts on Monday and ends on Sunday and so could fit on 4 lines
409 // without showing any subsequent months -- the standard control still
410 // shows it on 6 lines and the number of visible months is still 3
411 //
412 // OTOH Windows 7 control can show all 12 months or even years or decades
413 // in its window if you "zoom out" of it by double clicking on free areas
414 // so the return value can be (much, in case of decades view) greater than
415 // 3 but in this case marks are not visible anyhow so simply ignore it
416 if ( nMonths >= 2 && nMonths <= WXSIZEOF(states) )
417 {
418 // The current, fully visible month is always the second one.
419 states[1] = m_marks | m_holidays;
420
421 if ( !MonthCal_SetDayState(GetHwnd(), nMonths, states) )
422 {
423 wxLogLastError(wxT("MonthCal_SetDayState"));
424 }
425 }
426 //else: not a month view at all
427 }
428
429 void wxCalendarCtrl::UpdateFirstDayOfWeek()
430 {
431 MonthCal_SetFirstDayOfWeek(GetHwnd(),
432 HasFlag(wxCAL_MONDAY_FIRST) ? MonthCal_Monday
433 : MonthCal_Sunday);
434 }
435
436 // ----------------------------------------------------------------------------
437 // wxCalendarCtrl events
438 // ----------------------------------------------------------------------------
439
440 bool wxCalendarCtrl::MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result)
441 {
442 NMHDR* hdr = (NMHDR *)lParam;
443 switch ( hdr->code )
444 {
445 case MCN_SELCHANGE:
446 {
447 // we need to update m_date first, before calling the user code
448 // which expects GetDate() to return the new date
449 const wxDateTime dateOld = m_date;
450 const NMSELCHANGE * const sch = (NMSELCHANGE *)lParam;
451 m_date.SetFromMSWSysDate(sch->stSelStart);
452
453 // changing the year or the month results in a second dummy
454 // MCN_SELCHANGE event on this system which doesn't really
455 // change anything -- filter it out
456 if ( m_date != dateOld )
457 {
458 if ( GenerateAllChangeEvents(dateOld) )
459 {
460 // month changed, need to update the holidays if we use
461 // them
462 SetHolidayAttrs();
463 UpdateMarks();
464 }
465 }
466 }
467 break;
468
469 case MCN_GETDAYSTATE:
470 {
471 const NMDAYSTATE * const ds = (NMDAYSTATE *)lParam;
472
473 wxDateTime startDate;
474 startDate.SetFromMSWSysDate(ds->stStart);
475
476 // Ensure we have a valid date to work with.
477 wxDateTime currentDate = m_date.IsValid() ? m_date : startDate;
478
479 // Set to the start of month for comparison with startDate to
480 // work correctly.
481 currentDate.SetDay(1);
482
483 for ( int i = 0; i < ds->cDayState; i++ )
484 {
485 // set holiday/marks only for the "current" month
486 if ( startDate == currentDate )
487 ds->prgDayState[i] = m_marks | m_holidays;
488 else
489 ds->prgDayState[i] = 0;
490
491 startDate += wxDateSpan::Month();
492 }
493 }
494 break;
495
496 default:
497 return wxCalendarCtrlBase::MSWOnNotify(idCtrl, lParam, result);
498 }
499
500 *result = 0;
501 return true;
502 }
503
504 void wxCalendarCtrl::MSWOnDoubleClick(wxMouseEvent& event)
505 {
506 if ( HitTest(event.GetPosition()) == wxCAL_HITTEST_DAY )
507 {
508 if ( GenerateEvent(wxEVT_CALENDAR_DOUBLECLICKED) )
509 return; // skip event.Skip() below
510 }
511
512 event.Skip();
513 }
514
515 void wxCalendarCtrl::MSWOnClick(wxMouseEvent& event)
516 {
517 // for some reason, the control doesn't get focus on its own when the user
518 // clicks in it
519 SetFocus();
520
521 event.Skip();
522 }
523
524 #endif // wxUSE_CALENDARCTRL