1 /////////////////////////////////////////////////////////////////////////////
2 // Name: src/msw/calctrl.cpp
3 // Purpose: wxCalendarCtrl implementation
4 // Author: Vadim Zeitlin
7 // Copyright: (C) 2008 Vadim Zeitlin <vadim@wxwidgets.org>
8 // Licence: wxWindows licence
9 /////////////////////////////////////////////////////////////////////////////
11 // ============================================================================
13 // ============================================================================
15 // ----------------------------------------------------------------------------
17 // ----------------------------------------------------------------------------
19 #include "wx/wxprec.h"
25 #if wxUSE_CALENDARCTRL
28 #include "wx/msw/wrapwin.h"
29 #include "wx/msw/wrapcctl.h" // include <commctrl.h> "properly"
30 #include "wx/msw/private.h"
33 #include "wx/calctrl.h"
35 #include "wx/msw/private/datecontrols.h"
37 // ----------------------------------------------------------------------------
39 // ----------------------------------------------------------------------------
44 // values of week days used by the native control
56 } // anonymous namespace
58 // ============================================================================
60 // ============================================================================
62 // ----------------------------------------------------------------------------
63 // wxCalendarCtrl creation
64 // ----------------------------------------------------------------------------
66 void wxCalendarCtrl::Init()
73 wxCalendarCtrl::Create(wxWindow
*parent
,
81 if ( !wxMSWDateControls::CheckInitialization() )
84 // we need the arrows for the navigation
85 style
|= wxWANTS_CHARS
;
87 // initialize the base class
88 if ( !CreateControl(parent
, id
, pos
, size
, style
, wxDefaultValidator
, name
) )
91 // create the native control: this is a bit tricky as we want to receive
92 // double click events but the MONTHCAL_CLASS doesn't use CS_DBLCLKS style
93 // and so we create our own copy of it which does
94 static ClassRegistrar s_clsMonthCal
;
95 if ( !s_clsMonthCal
.IsInitialized() )
97 // get a copy of standard class and modify it
99 if ( ::GetClassInfo(NULL
, MONTHCAL_CLASS
, &wc
) )
101 wc
.lpszClassName
= wxT("_wx_SysMonthCtl32");
102 wc
.style
|= CS_DBLCLKS
;
103 s_clsMonthCal
.Register(wc
);
107 wxLogLastError(wxT("GetClassInfoEx(SysMonthCal32)"));
111 const wxChar
* const clsname
= s_clsMonthCal
.IsRegistered()
112 ? s_clsMonthCal
.GetName().wx_str()
115 if ( !MSWCreateControl(clsname
, wxEmptyString
, pos
, size
) )
118 // initialize the control
119 UpdateFirstDayOfWeek();
121 SetDate(dt
.IsValid() ? dt
: wxDateTime::Today());
123 if ( SetHolidayAttrs() )
126 Connect(wxEVT_LEFT_DOWN
,
127 wxMouseEventHandler(wxCalendarCtrl::MSWOnClick
));
128 Connect(wxEVT_LEFT_DCLICK
,
129 wxMouseEventHandler(wxCalendarCtrl::MSWOnDoubleClick
));
134 WXDWORD
wxCalendarCtrl::MSWGetStyle(long style
, WXDWORD
*exstyle
) const
136 WXDWORD styleMSW
= wxCalendarCtrlBase::MSWGetStyle(style
, exstyle
);
138 // right now we don't support all native styles but we should add wx styles
139 // corresponding to MCS_NOTODAY and MCS_NOTODAYCIRCLE probably (TODO)
141 // for compatibility with the other versions, just turn off today display
142 // unconditionally for now
143 styleMSW
|= MCS_NOTODAY
;
145 // we also need this style for Mark() to work
146 styleMSW
|= MCS_DAYSTATE
;
148 if ( style
& wxCAL_SHOW_WEEK_NUMBERS
)
149 styleMSW
|= MCS_WEEKNUMBERS
;
154 void wxCalendarCtrl::SetWindowStyleFlag(long style
)
156 const bool hadMondayFirst
= HasFlag(wxCAL_MONDAY_FIRST
);
158 wxCalendarCtrlBase::SetWindowStyleFlag(style
);
160 if ( HasFlag(wxCAL_MONDAY_FIRST
) != hadMondayFirst
)
161 UpdateFirstDayOfWeek();
164 // ----------------------------------------------------------------------------
165 // wxCalendarCtrl geometry
166 // ----------------------------------------------------------------------------
168 // TODO: handle WM_WININICHANGE
169 wxSize
wxCalendarCtrl::DoGetBestSize() const
172 if ( !GetHwnd() || !MonthCal_GetMinReqRect(GetHwnd(), &rc
) )
174 return wxCalendarCtrlBase::DoGetBestSize();
177 const wxSize best
= wxRectFromRECT(rc
).GetSize() + GetWindowBorderSize();
182 wxCalendarHitTestResult
183 wxCalendarCtrl::HitTest(const wxPoint
& pos
,
185 wxDateTime::WeekDay
*wd
)
187 WinStruct
<MCHITTESTINFO
> hti
;
189 // Vista and later SDKs add a few extra fields to MCHITTESTINFO which are
190 // not supported by the previous versions, as we don't use them anyhow we
191 // should pretend that we always use the old struct format to make the call
192 // below work on pre-Vista systems (see #11057)
193 #ifdef MCHITTESTINFO_V1_SIZE
194 hti
.cbSize
= MCHITTESTINFO_V1_SIZE
;
199 switch ( MonthCal_HitTest(GetHwnd(), &hti
) )
202 case MCHT_CALENDARWEEKNUM
:
203 wxFAIL_MSG( "unexpected" );
207 case MCHT_CALENDARBK
:
209 case MCHT_TITLEMONTH
:
211 return wxCAL_HITTEST_NOWHERE
;
213 case MCHT_CALENDARDATE
:
215 date
->SetFromMSWSysDate(hti
.st
);
216 return wxCAL_HITTEST_DAY
;
218 case MCHT_CALENDARDAY
:
221 int day
= hti
.st
.wDayOfWeek
;
223 // the native control returns incorrect day of the week when
224 // the first day isn't Monday, i.e. the first column is always
225 // "Monday" even if its label is "Sunday", compensate for it
226 const int first
= LOWORD(MonthCal_GetFirstDayOfWeek(GetHwnd()));
227 if ( first
== MonthCal_Monday
)
229 // as MonthCal_Monday is 0 while wxDateTime::Mon is 1,
230 // normally we need to do this to transform from MSW
231 // convention to wx one
235 //else: but when the first day is MonthCal_Sunday, the native
236 // control still returns 0 (i.e. MonthCal_Monday) for the
237 // first column which looks like a bug in it but to work
238 // around it it's enough to not apply the correction above
240 *wd
= static_cast<wxDateTime::WeekDay
>(day
);
242 return wxCAL_HITTEST_HEADER
;
244 case MCHT_TITLEBTNNEXT
:
245 return wxCAL_HITTEST_INCMONTH
;
247 case MCHT_TITLEBTNPREV
:
248 return wxCAL_HITTEST_DECMONTH
;
250 case MCHT_CALENDARDATENEXT
:
251 case MCHT_CALENDARDATEPREV
:
252 return wxCAL_HITTEST_SURROUNDING_WEEK
;
256 // ----------------------------------------------------------------------------
257 // wxCalendarCtrl operations
258 // ----------------------------------------------------------------------------
260 bool wxCalendarCtrl::SetDate(const wxDateTime
& dt
)
262 wxCHECK_MSG( dt
.IsValid(), false, "invalid date" );
265 dt
.GetAsMSWSysDate(&st
);
266 if ( !MonthCal_SetCurSel(GetHwnd(), &st
) )
268 wxLogDebug(wxT("DateTime_SetSystemtime() failed"));
273 m_date
= dt
.GetDateOnly();
278 wxDateTime
wxCalendarCtrl::GetDate() const
283 if ( !MonthCal_GetCurSel(GetHwnd(), &st
) )
285 wxASSERT_MSG( !m_date
.IsValid(), "mismatch between data and control" );
287 return wxDefaultDateTime
;
291 dt
.SetFromMSWSysDate(st
);
293 // Windows XP and earlier didn't include the time component into the
294 // returned date but Windows 7 does, so we can't compare the full objects
295 // in the same way under all the Windows versions, just compare their date
297 wxASSERT_MSG( dt
.IsSameDate(m_date
), "mismatch between data and control" );
298 #endif // wxDEBUG_LEVEL
303 bool wxCalendarCtrl::SetDateRange(const wxDateTime
& dt1
, const wxDateTime
& dt2
)
310 dt1
.GetAsMSWSysTime(st
+ 0);
316 dt2
.GetAsMSWSysTime(st
+ 1);
320 if ( !MonthCal_SetRange(GetHwnd(), flags
, st
) )
322 wxLogDebug(wxT("MonthCal_SetRange() failed"));
328 bool wxCalendarCtrl::GetDateRange(wxDateTime
*dt1
, wxDateTime
*dt2
) const
332 DWORD flags
= MonthCal_GetRange(GetHwnd(), st
);
335 if ( flags
& GDTR_MIN
)
336 dt1
->SetFromMSWSysDate(st
[0]);
338 *dt1
= wxDefaultDateTime
;
343 if ( flags
& GDTR_MAX
)
344 dt2
->SetFromMSWSysDate(st
[1]);
346 *dt2
= wxDefaultDateTime
;
352 // ----------------------------------------------------------------------------
353 // other wxCalendarCtrl operations
354 // ----------------------------------------------------------------------------
356 bool wxCalendarCtrl::EnableMonthChange(bool enable
)
358 if ( !wxCalendarCtrlBase::EnableMonthChange(enable
) )
361 wxDateTime dtStart
, dtEnd
;
367 dtEnd
= dtStart
.GetLastMonthDay();
369 //else: leave them invalid to remove the restriction
371 SetDateRange(dtStart
, dtEnd
);
376 void wxCalendarCtrl::Mark(size_t day
, bool mark
)
378 wxCHECK_RET( day
> 0 && day
< 32, "invalid day" );
380 int mask
= 1 << (day
- 1);
386 // calling Refresh() here is not enough to change the day appearance
390 void wxCalendarCtrl::SetHoliday(size_t day
)
392 wxCHECK_RET( day
> 0 && day
< 32, "invalid day" );
394 m_holidays
|= 1 << (day
- 1);
397 void wxCalendarCtrl::UpdateMarks()
399 // we show only one full month but there can be some days from the month
400 // before it and from the one after it so days from 3 different months can
401 // be partially shown
402 MONTHDAYSTATE states
[3] = { 0 };
403 const DWORD nMonths
= MonthCal_GetMonthRange(GetHwnd(), GMR_DAYSTATE
, NULL
);
405 // although in principle the calendar might not show any days from the
406 // preceding months, it seems like it always does, consider e.g. Feb 2010
407 // which starts on Monday and ends on Sunday and so could fit on 4 lines
408 // without showing any subsequent months -- the standard control still
409 // shows it on 6 lines and the number of visible months is still 3
411 // OTOH Windows 7 control can show all 12 months or even years or decades
412 // in its window if you "zoom out" of it by double clicking on free areas
413 // so the return value can be (much, in case of decades view) greater than
414 // 3 but in this case marks are not visible anyhow so simply ignore it
415 if ( nMonths
< WXSIZEOF(states
) )
417 wxFAIL_MSG("unexpectedly few months shown in the control");
419 else if ( nMonths
== WXSIZEOF(states
) )
421 // the fully visible month is the one in the middle
422 states
[1] = m_marks
| m_holidays
;
424 if ( !MonthCal_SetDayState(GetHwnd(), nMonths
, states
) )
426 wxLogLastError(wxT("MonthCal_SetDayState"));
429 //else: not a month view at all
432 void wxCalendarCtrl::UpdateFirstDayOfWeek()
434 MonthCal_SetFirstDayOfWeek(GetHwnd(),
435 HasFlag(wxCAL_MONDAY_FIRST
) ? MonthCal_Monday
439 // ----------------------------------------------------------------------------
440 // wxCalendarCtrl events
441 // ----------------------------------------------------------------------------
443 bool wxCalendarCtrl::MSWOnNotify(int idCtrl
, WXLPARAM lParam
, WXLPARAM
*result
)
445 NMHDR
* hdr
= (NMHDR
*)lParam
;
450 // we need to update m_date first, before calling the user code
451 // which expects GetDate() to return the new date
452 const wxDateTime dateOld
= m_date
;
453 const NMSELCHANGE
* const sch
= (NMSELCHANGE
*)lParam
;
454 m_date
.SetFromMSWSysDate(sch
->stSelStart
);
456 // changing the year or the month results in a second dummy
457 // MCN_SELCHANGE event on this system which doesn't really
458 // change anything -- filter it out
459 if ( m_date
!= dateOld
)
461 if ( GenerateAllChangeEvents(dateOld
) )
463 // month changed, need to update the holidays if we use
465 if ( SetHolidayAttrs() )
472 case MCN_GETDAYSTATE
:
474 const NMDAYSTATE
* const ds
= (NMDAYSTATE
*)lParam
;
475 for ( int i
= 0; i
< ds
->cDayState
; i
++ )
477 ds
->prgDayState
[i
] = m_marks
| m_holidays
;
483 return wxCalendarCtrlBase::MSWOnNotify(idCtrl
, lParam
, result
);
490 void wxCalendarCtrl::MSWOnDoubleClick(wxMouseEvent
& event
)
492 if ( HitTest(event
.GetPosition()) == wxCAL_HITTEST_DAY
)
494 if ( GenerateEvent(wxEVT_CALENDAR_DOUBLECLICKED
) )
495 return; // skip event.Skip() below
501 void wxCalendarCtrl::MSWOnClick(wxMouseEvent
& event
)
503 // for some reason, the control doesn't get focus on its own when the user
510 #endif // wxUSE_CALENDARCTRL