1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: generic/calctrl.cpp
3 // Purpose: implementation fo the generic wxCalendarCtrl
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows license
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
21 #pragma implementation "calctrl.h"
24 // For compilers that support precompilation, includes "wx.h".
25 #include "wx/wxprec.h"
32 #include "wx/dcclient.h"
33 #include "wx/settings.h"
35 #include "wx/combobox.h"
36 #include "wx/stattext.h"
39 // Can only use wxSpinEvent if this is enabled
42 #include "wx/calctrl.h"
46 // ----------------------------------------------------------------------------
48 // ----------------------------------------------------------------------------
50 class wxMonthComboBox
: public wxComboBox
53 wxMonthComboBox(wxCalendarCtrl
*cal
);
55 void OnMonthChange(wxCommandEvent
& event
) { m_cal
->OnMonthChange(event
); }
58 wxCalendarCtrl
*m_cal
;
63 class wxYearSpinCtrl
: public wxSpinCtrl
66 wxYearSpinCtrl(wxCalendarCtrl
*cal
);
68 void OnYearChange(wxSpinEvent
& event
) { m_cal
->OnYearChange(event
); }
71 wxCalendarCtrl
*m_cal
;
76 // ----------------------------------------------------------------------------
78 // ----------------------------------------------------------------------------
80 BEGIN_EVENT_TABLE(wxCalendarCtrl
, wxControl
)
81 EVT_PAINT(wxCalendarCtrl::OnPaint
)
83 EVT_CHAR(wxCalendarCtrl::OnChar
)
85 EVT_LEFT_DOWN(wxCalendarCtrl::OnClick
)
86 EVT_LEFT_DCLICK(wxCalendarCtrl::OnDClick
)
89 BEGIN_EVENT_TABLE(wxMonthComboBox
, wxComboBox
)
90 EVT_COMBOBOX(-1, wxMonthComboBox::OnMonthChange
)
93 BEGIN_EVENT_TABLE(wxYearSpinCtrl
, wxSpinCtrl
)
94 EVT_SPINCTRL(-1, wxYearSpinCtrl::OnYearChange
)
97 IMPLEMENT_DYNAMIC_CLASS(wxCalendarCtrl
, wxControl
)
98 IMPLEMENT_DYNAMIC_CLASS(wxCalendarEvent
, wxCommandEvent
)
100 // ----------------------------------------------------------------------------
102 // ----------------------------------------------------------------------------
104 DEFINE_EVENT_TYPE(wxEVT_CALENDAR_SEL_CHANGED
)
105 DEFINE_EVENT_TYPE(wxEVT_CALENDAR_DAY_CHANGED
)
106 DEFINE_EVENT_TYPE(wxEVT_CALENDAR_MONTH_CHANGED
)
107 DEFINE_EVENT_TYPE(wxEVT_CALENDAR_YEAR_CHANGED
)
108 DEFINE_EVENT_TYPE(wxEVT_CALENDAR_DOUBLECLICKED
)
109 DEFINE_EVENT_TYPE(wxEVT_CALENDAR_WEEKDAY_CLICKED
)
111 // ============================================================================
113 // ============================================================================
115 // ----------------------------------------------------------------------------
116 // wxMonthComboBox and wxYearSpinCtrl
117 // ----------------------------------------------------------------------------
119 wxMonthComboBox::wxMonthComboBox(wxCalendarCtrl
*cal
)
120 : wxComboBox(cal
->GetParent(), -1,
130 for ( m
= wxDateTime::Jan
; m
< wxDateTime::Inv_Month
; wxNextMonth(m
) )
132 Append(wxDateTime::GetMonthName(m
));
135 SetSelection(m_cal
->GetDate().GetMonth());
136 SetSize(-1, -1, -1, -1, wxSIZE_AUTO_WIDTH
|wxSIZE_AUTO_HEIGHT
);
139 wxYearSpinCtrl::wxYearSpinCtrl(wxCalendarCtrl
*cal
)
140 : wxSpinCtrl(cal
->GetParent(), -1,
141 cal
->GetDate().Format(_T("%Y")),
145 -4300, 10000, cal
->GetDate().GetYear())
150 // ----------------------------------------------------------------------------
152 // ----------------------------------------------------------------------------
154 void wxCalendarCtrl::Init()
162 wxDateTime::WeekDay wd
;
163 for ( wd
= wxDateTime::Sun
; wd
< wxDateTime::Inv_WeekDay
; wxNextWDay(wd
) )
165 m_weekdays
[wd
] = wxDateTime::GetWeekDayName(wd
, wxDateTime::Name_Abbr
);
168 for ( size_t n
= 0; n
< WXSIZEOF(m_attrs
); n
++ )
174 m_colHighlightFg
= ss
.GetSystemColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
175 m_colHighlightBg
= ss
.GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
);
177 m_colHolidayFg
= *wxRED
;
178 // don't set m_colHolidayBg - by default, same as our bg colour
180 m_colHeaderFg
= *wxBLUE
;
181 m_colHeaderBg
= *wxLIGHT_GREY
;
184 bool wxCalendarCtrl::Create(wxWindow
* WXUNUSED(parent
),
185 wxWindowID
WXUNUSED(id
),
186 const wxDateTime
& date
,
187 const wxPoint
& WXUNUSED(pos
),
190 const wxString
& WXUNUSED(name
))
192 // needed to get the arrow keys normally used for the dialog navigation
193 SetWindowStyle(style
| wxWANTS_CHARS
);
195 m_date
= date
.IsValid() ? date
: wxDateTime::Today();
197 m_spinYear
= new wxYearSpinCtrl(this);
198 m_staticYear
= new wxStaticText(GetParent(), -1, m_date
.Format(_T("%Y")),
199 wxDefaultPosition
, wxDefaultSize
,
202 m_comboMonth
= new wxMonthComboBox(this);
203 m_staticMonth
= new wxStaticText(GetParent(), -1, m_date
.Format(_T("%B")),
204 wxDefaultPosition
, wxDefaultSize
,
207 ShowCurrentControls();
210 if ( size
.x
== -1 || size
.y
== -1 )
212 sizeReal
= DoGetBestSize();
225 SetBackgroundColour(*wxWHITE
);
226 SetFont(*wxSWISS_FONT
);
233 wxCalendarCtrl::~wxCalendarCtrl()
235 for ( size_t n
= 0; n
< WXSIZEOF(m_attrs
); n
++ )
241 // ----------------------------------------------------------------------------
242 // forward wxWin functions to subcontrols
243 // ----------------------------------------------------------------------------
245 bool wxCalendarCtrl::Show(bool show
)
247 if ( !wxControl::Show(show
) )
252 GetMonthControl()->Show(show
);
253 GetYearControl()->Show(show
);
258 bool wxCalendarCtrl::Enable(bool enable
)
260 if ( !wxControl::Enable(enable
) )
265 GetMonthControl()->Enable(enable
);
266 GetYearControl()->Enable(enable
);
271 // ----------------------------------------------------------------------------
272 // enable/disable month/year controls
273 // ----------------------------------------------------------------------------
275 void wxCalendarCtrl::ShowCurrentControls()
277 if ( AllowMonthChange() )
279 m_comboMonth
->Show();
280 m_staticMonth
->Hide();
282 if ( AllowYearChange() )
285 m_staticYear
->Hide();
293 m_comboMonth
->Hide();
294 m_staticMonth
->Show();
297 // year change not allowed here
299 m_staticYear
->Show();
302 wxControl
*wxCalendarCtrl::GetMonthControl() const
304 return AllowMonthChange() ? (wxControl
*)m_comboMonth
: (wxControl
*)m_staticMonth
;
307 wxControl
*wxCalendarCtrl::GetYearControl() const
309 return AllowYearChange() ? (wxControl
*)m_spinYear
: (wxControl
*)m_staticYear
;
312 void wxCalendarCtrl::EnableYearChange(bool enable
)
314 if ( enable
!= AllowYearChange() )
316 long style
= GetWindowStyle();
318 style
&= ~wxCAL_NO_YEAR_CHANGE
;
320 style
|= wxCAL_NO_YEAR_CHANGE
;
321 SetWindowStyle(style
);
323 ShowCurrentControls();
327 void wxCalendarCtrl::EnableMonthChange(bool enable
)
329 if ( enable
!= AllowMonthChange() )
331 long style
= GetWindowStyle();
333 style
&= ~wxCAL_NO_MONTH_CHANGE
;
335 style
|= wxCAL_NO_MONTH_CHANGE
;
336 SetWindowStyle(style
);
338 ShowCurrentControls();
342 // ----------------------------------------------------------------------------
344 // ----------------------------------------------------------------------------
346 void wxCalendarCtrl::SetDate(const wxDateTime
& date
)
348 bool sameMonth
= m_date
.GetMonth() == date
.GetMonth(),
349 sameYear
= m_date
.GetYear() == date
.GetYear();
351 if ( sameMonth
&& sameYear
)
353 // just change the day
358 if ( !AllowMonthChange() || (!AllowYearChange() && !sameYear
) )
367 // update the controls
368 m_comboMonth
->SetSelection(m_date
.GetMonth());
370 if ( AllowYearChange() )
372 m_spinYear
->SetValue(m_date
.Format(_T("%Y")));
375 // as the month changed, holidays did too
378 // update the calendar
383 void wxCalendarCtrl::ChangeDay(const wxDateTime
& date
)
385 if ( m_date
!= date
)
387 // we need to refresh the row containing the old date and the one
388 // containing the new one
389 wxDateTime dateOld
= m_date
;
392 RefreshDate(dateOld
);
394 // if the date is in the same row, it was already drawn correctly
395 if ( GetWeek(m_date
) != GetWeek(dateOld
) )
402 void wxCalendarCtrl::SetDateAndNotify(const wxDateTime
& date
)
404 wxDateTime::Tm tm1
= m_date
.GetTm(),
408 if ( tm1
.year
!= tm2
.year
)
409 type
= wxEVT_CALENDAR_YEAR_CHANGED
;
410 else if ( tm1
.mon
!= tm2
.mon
)
411 type
= wxEVT_CALENDAR_MONTH_CHANGED
;
412 else if ( tm1
.mday
!= tm2
.mday
)
413 type
= wxEVT_CALENDAR_DAY_CHANGED
;
419 GenerateEvents(type
, wxEVT_CALENDAR_SEL_CHANGED
);
422 // ----------------------------------------------------------------------------
424 // ----------------------------------------------------------------------------
426 wxDateTime
wxCalendarCtrl::GetStartDate() const
428 wxDateTime::Tm tm
= m_date
.GetTm();
430 wxDateTime date
= wxDateTime(1, tm
.mon
, tm
.year
);
433 date
.SetToPrevWeekDay(GetWindowStyle() & wxCAL_MONDAY_FIRST
434 ? wxDateTime::Mon
: wxDateTime::Sun
);
439 bool wxCalendarCtrl::IsDateShown(const wxDateTime
& date
) const
441 return date
.GetMonth() == m_date
.GetMonth();
444 size_t wxCalendarCtrl::GetWeek(const wxDateTime
& date
) const
446 return date
.GetWeekOfMonth(GetWindowStyle() & wxCAL_MONDAY_FIRST
447 ? wxDateTime::Monday_First
448 : wxDateTime::Sunday_First
);
451 // ----------------------------------------------------------------------------
453 // ----------------------------------------------------------------------------
455 // this is a composite control and it must arrange its parts each time its
456 // size or position changes: the combobox and spinctrl are along the top of
457 // the available area and the calendar takes up therest of the space
459 // the static controls are supposed to be always smaller than combo/spin so we
460 // always use the latter for size calculations and position the static to take
463 // the constants used for the layout
464 #define VERT_MARGIN 5 // distance between combo and calendar
465 #define HORZ_MARGIN 15 // spin
467 wxSize
wxCalendarCtrl::DoGetBestSize() const
469 // calc the size of the calendar
470 ((wxCalendarCtrl
*)this)->RecalcGeometry(); // const_cast
472 wxCoord width
= 7*m_widthCol
,
473 height
= 7*m_heightRow
;
475 // the combobox doesn't report its height correctly (it returns the
476 // height including the drop down list) so don't use it
477 height
+= VERT_MARGIN
+ m_spinYear
->GetBestSize().y
;
479 if ( GetWindowStyle() & (wxRAISED_BORDER
| wxSUNKEN_BORDER
) )
481 // the border would clip the last line otherwise
485 return wxSize(width
, height
);
488 void wxCalendarCtrl::DoSetSize(int x
, int y
,
489 int width
, int height
,
492 wxControl::DoSetSize(x
, y
, width
, height
, sizeFlags
);
495 void wxCalendarCtrl::DoMoveWindow(int x
, int y
, int width
, int height
)
497 wxSize sizeCombo
= m_comboMonth
->GetSize();
498 wxSize sizeStatic
= m_staticMonth
->GetSize();
500 int dy
= (sizeCombo
.y
- sizeStatic
.y
) / 2;
501 m_comboMonth
->Move(x
, y
);
502 m_staticMonth
->SetSize(x
, y
+ dy
, sizeCombo
.x
, sizeStatic
.y
);
504 int xDiff
= sizeCombo
.x
+ HORZ_MARGIN
;
505 m_spinYear
->SetSize(x
+ xDiff
, y
, width
- xDiff
, sizeCombo
.y
);
506 m_staticYear
->SetSize(x
+ xDiff
, y
+ dy
, width
- xDiff
, sizeStatic
.y
);
508 wxSize sizeSpin
= m_spinYear
->GetSize();
509 int yDiff
= wxMax(sizeSpin
.y
, sizeCombo
.y
) + VERT_MARGIN
;
511 wxControl::DoMoveWindow(x
, y
+ yDiff
, width
, height
- yDiff
);
514 void wxCalendarCtrl::DoGetPosition(int *x
, int *y
) const
516 wxControl::DoGetPosition(x
, y
);
518 // our real top corner is not in this position
521 *y
-= GetMonthControl()->GetSize().y
+ VERT_MARGIN
;
525 void wxCalendarCtrl::DoGetSize(int *width
, int *height
) const
527 wxControl::DoGetSize(width
, height
);
529 // our real height is bigger
532 *height
+= GetMonthControl()->GetSize().y
+ VERT_MARGIN
;
536 void wxCalendarCtrl::RecalcGeometry()
538 if ( m_widthCol
!= 0 )
545 // determine the column width (we assume that the weekday names are always
546 // wider (in any language) than the numbers)
548 wxDateTime::WeekDay wd
;
549 for ( wd
= wxDateTime::Sun
; wd
< wxDateTime::Inv_WeekDay
; wxNextWDay(wd
) )
552 dc
.GetTextExtent(m_weekdays
[wd
], &width
, &m_heightRow
);
553 if ( width
> m_widthCol
)
559 // leave some margins
564 // ----------------------------------------------------------------------------
566 // ----------------------------------------------------------------------------
568 void wxCalendarCtrl::OnPaint(wxPaintEvent
& WXUNUSED(event
))
577 wxLogDebug("--- starting to paint, selection: %s, week %u\n",
578 m_date
.Format("%a %d-%m-%Y %H:%M:%S").c_str(),
582 // first draw the week days
583 if ( IsExposed(0, 0, 7*m_widthCol
, m_heightRow
) )
586 wxLogDebug("painting the header");
589 dc
.SetBackgroundMode(wxTRANSPARENT
);
590 dc
.SetTextForeground(m_colHeaderFg
);
591 dc
.SetBrush(wxBrush(m_colHeaderBg
, wxSOLID
));
592 dc
.SetPen(wxPen(m_colHeaderBg
, 1, wxSOLID
));
593 dc
.DrawRectangle(0, 0, 7*m_widthCol
, m_heightRow
);
595 bool startOnMonday
= (GetWindowStyle() & wxCAL_MONDAY_FIRST
) != 0;
596 for ( size_t wd
= 0; wd
< 7; wd
++ )
600 n
= wd
== 6 ? 0 : wd
+ 1;
604 dc
.DrawText(m_weekdays
[n
], wd
*m_widthCol
+ 1, 0);
608 // then the calendar itself
609 dc
.SetTextForeground(*wxBLACK
);
610 //dc.SetFont(*wxNORMAL_FONT);
612 wxCoord y
= m_heightRow
;
614 wxDateTime date
= GetStartDate();
616 wxLogDebug("starting calendar from %s\n",
617 date
.Format("%a %d-%m-%Y %H:%M:%S").c_str());
620 dc
.SetBackgroundMode(wxSOLID
);
621 for ( size_t nWeek
= 1; nWeek
<= 6; nWeek
++, y
+= m_heightRow
)
623 // if the update region doesn't intersect this row, don't paint it
624 if ( !IsExposed(0, y
, 7*m_widthCol
, m_heightRow
- 1) )
626 date
+= wxDateSpan::Week();
632 wxLogDebug("painting week %d at y = %d\n", nWeek
, y
);
635 for ( size_t wd
= 0; wd
< 7; wd
++ )
637 if ( IsDateShown(date
) )
639 // don't use wxDate::Format() which prepends 0s
640 unsigned int day
= date
.GetDay();
641 wxString dayStr
= wxString::Format(_T("%u"), day
);
643 dc
.GetTextExtent(dayStr
, &width
, (wxCoord
*)NULL
);
645 bool changedColours
= FALSE
,
648 wxCalendarDateAttr
*attr
= m_attrs
[day
- 1];
650 bool isSel
= date
.IsSameDate(m_date
);
653 dc
.SetTextForeground(m_colHighlightFg
);
654 dc
.SetTextBackground(m_colHighlightBg
);
656 changedColours
= TRUE
;
660 wxColour colFg
, colBg
;
662 if ( attr
->IsHoliday() )
664 colFg
= m_colHolidayFg
;
665 colBg
= m_colHolidayBg
;
669 colFg
= attr
->GetTextColour();
670 colBg
= attr
->GetBackgroundColour();
675 dc
.SetTextForeground(colFg
);
676 changedColours
= TRUE
;
681 dc
.SetTextBackground(colBg
);
682 changedColours
= TRUE
;
685 if ( attr
->HasFont() )
687 dc
.SetFont(attr
->GetFont());
692 wxCoord x
= wd
*m_widthCol
+ (m_widthCol
- width
) / 2;
693 dc
.DrawText(dayStr
, x
, y
+ 1);
695 if ( !isSel
&& attr
&& attr
->HasBorder() )
698 if ( attr
->HasBorderColour() )
700 colBorder
= attr
->GetBorderColour();
704 colBorder
= m_foregroundColour
;
707 wxPen
pen(colBorder
, 1, wxSOLID
);
709 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
711 switch ( attr
->GetBorder() )
713 case wxCAL_BORDER_SQUARE
:
714 dc
.DrawRectangle(x
- 2, y
,
715 width
+ 4, m_heightRow
);
718 case wxCAL_BORDER_ROUND
:
719 dc
.DrawEllipse(x
- 2, y
,
720 width
+ 4, m_heightRow
);
724 wxFAIL_MSG(_T("unknown border type"));
728 if ( changedColours
)
730 dc
.SetTextForeground(m_foregroundColour
);
731 dc
.SetTextBackground(m_backgroundColour
);
739 //else: just don't draw it
741 date
+= wxDateSpan::Day();
745 wxLogDebug("+++ finished painting");
749 void wxCalendarCtrl::RefreshDate(const wxDateTime
& date
)
755 // always refresh the whole row at once because our OnPaint() will draw
756 // the whole row anyhow - and this allows the small optimisation in
757 // OnClick() below to work
759 rect
.y
= m_heightRow
* GetWeek(date
);
760 rect
.width
= 7*m_widthCol
;
761 rect
.height
= m_heightRow
;
764 // VZ: for some reason, the selected date seems to occupy more space under
765 // MSW - this is probably some bug in the font size calculations, but I
766 // don't know where exactly. This fix is ugly and leads to more
767 // refreshes than really needed, but without it the selected days
768 // leaves even more ugly underscores on screen.
773 wxLogDebug("*** refreshing week %d at (%d, %d)-(%d, %d)\n",
776 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
779 Refresh(TRUE
, &rect
);
782 // ----------------------------------------------------------------------------
784 // ----------------------------------------------------------------------------
786 void wxCalendarCtrl::OnDClick(wxMouseEvent
& event
)
788 if ( HitTest(event
.GetPosition()) != wxCAL_HITTEST_DAY
)
794 GenerateEvent(wxEVT_CALENDAR_DOUBLECLICKED
);
798 void wxCalendarCtrl::OnClick(wxMouseEvent
& event
)
801 wxDateTime::WeekDay wday
;
802 switch ( HitTest(event
.GetPosition(), &date
, &wday
) )
804 case wxCAL_HITTEST_DAY
:
807 GenerateEvents(wxEVT_CALENDAR_DAY_CHANGED
,
808 wxEVT_CALENDAR_SEL_CHANGED
);
811 case wxCAL_HITTEST_HEADER
:
813 wxCalendarEvent
event(this, wxEVT_CALENDAR_WEEKDAY_CLICKED
);
815 (void)GetEventHandler()->ProcessEvent(event
);
820 wxFAIL_MSG(_T("unknown hittest code"));
823 case wxCAL_HITTEST_NOWHERE
:
829 wxCalendarHitTestResult
wxCalendarCtrl::HitTest(const wxPoint
& pos
,
831 wxDateTime::WeekDay
*wd
)
835 int wday
= pos
.x
/ m_widthCol
;
838 if ( y
< m_heightRow
)
842 if ( GetWindowStyle() & wxCAL_MONDAY_FIRST
)
844 wday
= wday
== 6 ? 0 : wday
+ 1;
847 *wd
= (wxDateTime::WeekDay
)wday
;
850 return wxCAL_HITTEST_HEADER
;
853 int week
= (y
- m_heightRow
) / m_heightRow
;
854 if ( week
>= 6 || wday
>= 7 )
856 return wxCAL_HITTEST_NOWHERE
;
859 wxDateTime dt
= GetStartDate() + wxDateSpan::Days(7*week
+ wday
);
861 if ( IsDateShown(dt
) )
866 return wxCAL_HITTEST_DAY
;
870 return wxCAL_HITTEST_NOWHERE
;
874 // ----------------------------------------------------------------------------
875 // subcontrols events handling
876 // ----------------------------------------------------------------------------
878 void wxCalendarCtrl::OnMonthChange(wxCommandEvent
& event
)
880 wxDateTime::Tm tm
= m_date
.GetTm();
882 wxDateTime::Month mon
= (wxDateTime::Month
)event
.GetInt();
883 if ( tm
.mday
> wxDateTime::GetNumberOfDays(mon
, tm
.year
) )
885 tm
.mday
= wxDateTime::GetNumberOfDays(mon
, tm
.year
);
888 SetDateAndNotify(wxDateTime(tm
.mday
, mon
, tm
.year
));
891 void wxCalendarCtrl::OnYearChange(wxSpinEvent
& event
)
893 wxDateTime::Tm tm
= m_date
.GetTm();
895 int year
= (int)event
.GetInt();
896 if ( tm
.mday
> wxDateTime::GetNumberOfDays(tm
.mon
, year
) )
898 tm
.mday
= wxDateTime::GetNumberOfDays(tm
.mon
, year
);
901 SetDateAndNotify(wxDateTime(tm
.mday
, tm
.mon
, year
));
904 // ----------------------------------------------------------------------------
905 // keyboard interface
906 // ----------------------------------------------------------------------------
908 void wxCalendarCtrl::OnChar(wxKeyEvent
& event
)
910 switch ( event
.KeyCode() )
914 SetDateAndNotify(m_date
+ wxDateSpan::Year());
919 SetDateAndNotify(m_date
- wxDateSpan::Year());
923 SetDateAndNotify(m_date
- wxDateSpan::Month());
927 SetDateAndNotify(m_date
+ wxDateSpan::Month());
931 if ( event
.ControlDown() )
932 SetDateAndNotify(wxDateTime(m_date
).SetToNextWeekDay(
933 GetWindowStyle() & wxCAL_MONDAY_FIRST
934 ? wxDateTime::Sun
: wxDateTime::Sat
));
936 SetDateAndNotify(m_date
+ wxDateSpan::Day());
940 if ( event
.ControlDown() )
941 SetDateAndNotify(wxDateTime(m_date
).SetToPrevWeekDay(
942 GetWindowStyle() & wxCAL_MONDAY_FIRST
943 ? wxDateTime::Mon
: wxDateTime::Sun
));
945 SetDateAndNotify(m_date
- wxDateSpan::Day());
949 SetDateAndNotify(m_date
- wxDateSpan::Week());
953 SetDateAndNotify(m_date
+ wxDateSpan::Week());
957 if ( event
.ControlDown() )
958 SetDateAndNotify(wxDateTime::Today());
960 SetDateAndNotify(wxDateTime(1, m_date
.GetMonth(), m_date
.GetYear()));
964 SetDateAndNotify(wxDateTime(m_date
).SetToLastMonthDay());
968 GenerateEvent(wxEVT_CALENDAR_DOUBLECLICKED
);
976 // ----------------------------------------------------------------------------
978 // ----------------------------------------------------------------------------
980 void wxCalendarCtrl::EnableHolidayDisplay(bool display
)
982 long style
= GetWindowStyle();
984 style
|= wxCAL_SHOW_HOLIDAYS
;
986 style
&= ~wxCAL_SHOW_HOLIDAYS
;
988 SetWindowStyle(style
);
998 void wxCalendarCtrl::SetHolidayAttrs()
1000 if ( GetWindowStyle() & wxCAL_SHOW_HOLIDAYS
)
1002 ResetHolidayAttrs();
1004 wxDateTime::Tm tm
= m_date
.GetTm();
1005 wxDateTime
dtStart(1, tm
.mon
, tm
.year
),
1006 dtEnd
= dtStart
.GetLastMonthDay();
1008 wxDateTimeArray hol
;
1009 wxDateTimeHolidayAuthority::GetHolidaysInRange(dtStart
, dtEnd
, hol
);
1011 size_t count
= hol
.GetCount();
1012 for ( size_t n
= 0; n
< count
; n
++ )
1014 SetHoliday(hol
[n
].GetDay());
1019 void wxCalendarCtrl::SetHoliday(size_t day
)
1021 wxCHECK_RET( day
> 0 && day
< 32, _T("invalid day in SetHoliday") );
1023 wxCalendarDateAttr
*attr
= GetAttr(day
);
1026 attr
= new wxCalendarDateAttr
;
1029 attr
->SetHoliday(TRUE
);
1031 // can't use SetAttr() because it would delete this pointer
1032 m_attrs
[day
- 1] = attr
;
1035 void wxCalendarCtrl::ResetHolidayAttrs()
1037 for ( size_t day
= 0; day
< 31; day
++ )
1041 m_attrs
[day
]->SetHoliday(FALSE
);
1046 // ----------------------------------------------------------------------------
1048 // ----------------------------------------------------------------------------
1050 void wxCalendarEvent::Init()
1052 m_wday
= wxDateTime::Inv_WeekDay
;
1055 wxCalendarEvent::wxCalendarEvent(wxCalendarCtrl
*cal
, wxEventType type
)
1056 : wxCommandEvent(type
, cal
->GetId())
1058 m_date
= cal
->GetDate();
1061 #endif // wxUSE_SPINBTN