1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: src/generic/calctrlg.cpp
3 // Purpose: implementation of the wxGenericCalendarCtrl
4 // Author: Vadim Zeitlin
8 // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr>
9 // Licence: wxWindows licence
10 ///////////////////////////////////////////////////////////////////////////////
12 // ============================================================================
14 // ============================================================================
16 // ----------------------------------------------------------------------------
18 // ----------------------------------------------------------------------------
20 // For compilers that support precompilation, includes "wx.h".
21 #include "wx/wxprec.h"
28 #include "wx/dcclient.h"
29 #include "wx/settings.h"
31 #include "wx/combobox.h"
32 #include "wx/listbox.h"
33 #include "wx/stattext.h"
34 #include "wx/textctrl.h"
38 #if wxUSE_CALENDARCTRL
40 #include "wx/spinctrl.h"
41 #include "wx/calctrl.h"
42 #include "wx/generic/calctrlg.h"
46 // ----------------------------------------------------------------------------
48 // ----------------------------------------------------------------------------
50 BEGIN_EVENT_TABLE(wxGenericCalendarCtrl
, wxControl
)
51 EVT_PAINT(wxGenericCalendarCtrl::OnPaint
)
53 EVT_CHAR(wxGenericCalendarCtrl::OnChar
)
55 EVT_LEFT_DOWN(wxGenericCalendarCtrl::OnClick
)
56 EVT_LEFT_DCLICK(wxGenericCalendarCtrl::OnDClick
)
58 EVT_SYS_COLOUR_CHANGED(wxGenericCalendarCtrl::OnSysColourChanged
)
61 #if wxUSE_EXTENDED_RTTI
62 WX_DEFINE_FLAGS( wxCalendarCtrlStyle
)
64 wxBEGIN_FLAGS( wxCalendarCtrlStyle
)
65 // new style border flags, we put them first to
66 // use them for streaming out
67 wxFLAGS_MEMBER(wxBORDER_SIMPLE
)
68 wxFLAGS_MEMBER(wxBORDER_SUNKEN
)
69 wxFLAGS_MEMBER(wxBORDER_DOUBLE
)
70 wxFLAGS_MEMBER(wxBORDER_RAISED
)
71 wxFLAGS_MEMBER(wxBORDER_STATIC
)
72 wxFLAGS_MEMBER(wxBORDER_NONE
)
74 // old style border flags
75 wxFLAGS_MEMBER(wxSIMPLE_BORDER
)
76 wxFLAGS_MEMBER(wxSUNKEN_BORDER
)
77 wxFLAGS_MEMBER(wxDOUBLE_BORDER
)
78 wxFLAGS_MEMBER(wxRAISED_BORDER
)
79 wxFLAGS_MEMBER(wxSTATIC_BORDER
)
80 wxFLAGS_MEMBER(wxBORDER
)
82 // standard window styles
83 wxFLAGS_MEMBER(wxTAB_TRAVERSAL
)
84 wxFLAGS_MEMBER(wxCLIP_CHILDREN
)
85 wxFLAGS_MEMBER(wxTRANSPARENT_WINDOW
)
86 wxFLAGS_MEMBER(wxWANTS_CHARS
)
87 wxFLAGS_MEMBER(wxFULL_REPAINT_ON_RESIZE
)
88 wxFLAGS_MEMBER(wxALWAYS_SHOW_SB
)
89 wxFLAGS_MEMBER(wxVSCROLL
)
90 wxFLAGS_MEMBER(wxHSCROLL
)
92 wxFLAGS_MEMBER(wxCAL_SUNDAY_FIRST
)
93 wxFLAGS_MEMBER(wxCAL_MONDAY_FIRST
)
94 wxFLAGS_MEMBER(wxCAL_SHOW_HOLIDAYS
)
95 wxFLAGS_MEMBER(wxCAL_NO_YEAR_CHANGE
)
96 wxFLAGS_MEMBER(wxCAL_NO_MONTH_CHANGE
)
97 wxFLAGS_MEMBER(wxCAL_SEQUENTIAL_MONTH_SELECTION
)
98 wxFLAGS_MEMBER(wxCAL_SHOW_SURROUNDING_WEEKS
)
99 wxFLAGS_MEMBER(wxCAL_SHOW_WEEK_NUMBERS
)
101 wxEND_FLAGS( wxCalendarCtrlStyle
)
103 IMPLEMENT_DYNAMIC_CLASS_XTI(wxGenericCalendarCtrl
, wxControl
,"wx/calctrl.h")
105 wxBEGIN_PROPERTIES_TABLE(wxGenericCalendarCtrl
)
106 wxEVENT_RANGE_PROPERTY( Updated
, wxEVT_CALENDAR_SEL_CHANGED
, wxEVT_CALENDAR_WEEK_CLICKED
, wxCalendarEvent
)
107 wxHIDE_PROPERTY( Children
)
108 wxPROPERTY( Date
,wxDateTime
, SetDate
, GetDate
, , 0 /*flags*/ , wxT("Helpstring") , wxT("group"))
109 wxPROPERTY_FLAGS( WindowStyle
, wxCalendarCtrlStyle
, long , SetWindowStyleFlag
, GetWindowStyleFlag
, , 0 /*flags*/ , wxT("Helpstring") , wxT("group")) // style
110 wxEND_PROPERTIES_TABLE()
112 wxBEGIN_HANDLERS_TABLE(wxGenericCalendarCtrl
)
113 wxEND_HANDLERS_TABLE()
115 wxCONSTRUCTOR_6( wxGenericCalendarCtrl
, wxWindow
* , Parent
, wxWindowID
, Id
, wxDateTime
, Date
, wxPoint
, Position
, wxSize
, Size
, long , WindowStyle
)
117 IMPLEMENT_DYNAMIC_CLASS(wxGenericCalendarCtrl
, wxControl
)
120 // ============================================================================
122 // ============================================================================
124 // ----------------------------------------------------------------------------
126 // ----------------------------------------------------------------------------
131 // add attributes that are set in attr
132 void AddAttr(wxCalendarDateAttr
*self
, const wxCalendarDateAttr
& attr
)
134 if (attr
.HasTextColour())
135 self
->SetTextColour(attr
.GetTextColour());
136 if (attr
.HasBackgroundColour())
137 self
->SetBackgroundColour(attr
.GetBackgroundColour());
138 if (attr
.HasBorderColour())
139 self
->SetBorderColour(attr
.GetBorderColour());
141 self
->SetFont(attr
.GetFont());
142 if (attr
.HasBorder())
143 self
->SetBorder(attr
.GetBorder());
144 if (attr
.IsHoliday())
145 self
->SetHoliday(true);
148 // remove attributes that are set in attr
149 void DelAttr(wxCalendarDateAttr
*self
, const wxCalendarDateAttr
&attr
)
151 if (attr
.HasTextColour())
152 self
->SetTextColour(wxNullColour
);
153 if (attr
.HasBackgroundColour())
154 self
->SetBackgroundColour(wxNullColour
);
155 if (attr
.HasBorderColour())
156 self
->SetBorderColour(wxNullColour
);
158 self
->SetFont(wxNullFont
);
159 if (attr
.HasBorder())
160 self
->SetBorder(wxCAL_BORDER_NONE
);
161 if (attr
.IsHoliday())
162 self
->SetHoliday(false);
165 } // anonymous namespace
167 // ----------------------------------------------------------------------------
168 // wxGenericCalendarCtrl
169 // ----------------------------------------------------------------------------
171 wxGenericCalendarCtrl::wxGenericCalendarCtrl(wxWindow
*parent
,
173 const wxDateTime
& date
,
177 const wxString
& name
)
181 (void)Create(parent
, id
, date
, pos
, size
, style
, name
);
184 void wxGenericCalendarCtrl::Init()
189 m_staticMonth
= NULL
;
191 m_userChangedYear
= false;
195 m_calendarWeekWidth
= 0;
197 wxDateTime::WeekDay wd
;
198 for ( wd
= wxDateTime::Sun
; wd
< wxDateTime::Inv_WeekDay
; wxNextWDay(wd
) )
200 m_weekdays
[wd
] = wxDateTime::GetWeekDayName(wd
, wxDateTime::Name_Abbr
);
203 for ( size_t n
= 0; n
< WXSIZEOF(m_attrs
); n
++ )
211 void wxGenericCalendarCtrl::InitColours()
213 m_colHighlightFg
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHTTEXT
);
214 m_colHighlightBg
= wxSystemSettings::GetColour(wxSYS_COLOUR_HIGHLIGHT
);
215 m_colBackground
= wxSystemSettings::GetColour(wxSYS_COLOUR_WINDOW
);
216 m_colSurrounding
= wxSystemSettings::GetColour(wxSYS_COLOUR_GRAYTEXT
);
218 m_colHolidayFg
= *wxRED
;
219 // don't set m_colHolidayBg - by default, same as our bg colour
221 m_colHeaderFg
= *wxBLUE
;
222 m_colHeaderBg
= *wxLIGHT_GREY
;
225 bool wxGenericCalendarCtrl::Create(wxWindow
*parent
,
227 const wxDateTime
& date
,
231 const wxString
& name
)
233 if ( !wxControl::Create(parent
, id
, pos
, size
,
234 style
| wxCLIP_CHILDREN
| wxWANTS_CHARS
| wxFULL_REPAINT_ON_RESIZE
,
235 wxDefaultValidator
, name
) )
240 // needed to get the arrow keys normally used for the dialog navigation
241 SetWindowStyle(style
| wxWANTS_CHARS
);
243 m_date
= date
.IsValid() ? date
: wxDateTime::Today();
245 m_lowdate
= wxDefaultDateTime
;
246 m_highdate
= wxDefaultDateTime
;
248 if ( !HasFlag(wxCAL_SEQUENTIAL_MONTH_SELECTION
) )
250 CreateYearSpinCtrl();
251 m_staticYear
= new wxStaticText(GetParent(), wxID_ANY
, m_date
.Format(wxT("%Y")),
252 wxDefaultPosition
, wxDefaultSize
,
254 CreateMonthComboBox();
255 m_staticMonth
= new wxStaticText(GetParent(), wxID_ANY
, m_date
.Format(wxT("%B")),
256 wxDefaultPosition
, wxDefaultSize
,
260 ShowCurrentControls();
262 // we need to set the position as well because the main control position
263 // is not the same as the one specified in pos if we have the controls
265 SetInitialSize(size
);
268 // Since we don't paint the whole background make sure that the platform
269 // will use the right one.
270 SetBackgroundColour(m_colBackground
);
277 wxGenericCalendarCtrl::~wxGenericCalendarCtrl()
279 for ( size_t n
= 0; n
< WXSIZEOF(m_attrs
); n
++ )
284 if ( !HasFlag(wxCAL_SEQUENTIAL_MONTH_SELECTION
) )
287 delete m_staticMonth
;
293 void wxGenericCalendarCtrl::SetWindowStyleFlag(long style
)
295 // changing this style doesn't work because the controls are not
296 // created/shown/hidden accordingly
297 wxASSERT_MSG( (style
& wxCAL_SEQUENTIAL_MONTH_SELECTION
) ==
298 (m_windowStyle
& wxCAL_SEQUENTIAL_MONTH_SELECTION
),
299 wxT("wxCAL_SEQUENTIAL_MONTH_SELECTION can't be changed after creation") );
301 wxControl::SetWindowStyleFlag(style
);
304 // ----------------------------------------------------------------------------
305 // Create the wxComboBox and wxSpinCtrl
306 // ----------------------------------------------------------------------------
308 void wxGenericCalendarCtrl::CreateMonthComboBox()
310 m_comboMonth
= new wxComboBox(GetParent(), wxID_ANY
,
315 wxCB_READONLY
| wxCLIP_SIBLINGS
);
318 for ( m
= wxDateTime::Jan
; m
< wxDateTime::Inv_Month
; wxNextMonth(m
) )
320 m_comboMonth
->Append(wxDateTime::GetMonthName(m
));
323 m_comboMonth
->SetSelection(GetDate().GetMonth());
324 m_comboMonth
->SetSize(wxDefaultCoord
,
328 wxSIZE_AUTO_WIDTH
|wxSIZE_AUTO_HEIGHT
);
330 m_comboMonth
->Connect(m_comboMonth
->GetId(), wxEVT_COMMAND_COMBOBOX_SELECTED
,
331 wxCommandEventHandler(wxGenericCalendarCtrl::OnMonthChange
),
335 void wxGenericCalendarCtrl::CreateYearSpinCtrl()
337 m_spinYear
= new wxSpinCtrl(GetParent(), wxID_ANY
,
338 GetDate().Format(wxT("%Y")),
341 wxSP_ARROW_KEYS
| wxCLIP_SIBLINGS
,
342 -4300, 10000, GetDate().GetYear());
344 m_spinYear
->SetSize( 90, -1 );
347 m_spinYear
->Connect(m_spinYear
->GetId(), wxEVT_COMMAND_TEXT_UPDATED
,
348 wxCommandEventHandler(wxGenericCalendarCtrl::OnYearTextChange
),
351 m_spinYear
->Connect(m_spinYear
->GetId(), wxEVT_COMMAND_SPINCTRL_UPDATED
,
352 wxSpinEventHandler(wxGenericCalendarCtrl::OnYearChange
),
356 // ----------------------------------------------------------------------------
357 // forward wxWin functions to subcontrols
358 // ----------------------------------------------------------------------------
360 bool wxGenericCalendarCtrl::Destroy()
363 m_staticYear
->Destroy();
365 m_spinYear
->Destroy();
367 m_comboMonth
->Destroy();
369 m_staticMonth
->Destroy();
374 m_staticMonth
= NULL
;
376 return wxControl::Destroy();
379 bool wxGenericCalendarCtrl::Show(bool show
)
381 if ( !wxControl::Show(show
) )
386 if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION
) )
388 if ( GetMonthControl() )
390 GetMonthControl()->Show(show
);
391 GetYearControl()->Show(show
);
398 bool wxGenericCalendarCtrl::Enable(bool enable
)
400 if ( !wxControl::Enable(enable
) )
405 if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION
) )
407 GetMonthControl()->Enable(enable
);
408 GetYearControl()->Enable(enable
);
414 // ----------------------------------------------------------------------------
415 // enable/disable month/year controls
416 // ----------------------------------------------------------------------------
418 void wxGenericCalendarCtrl::ShowCurrentControls()
420 if ( !HasFlag(wxCAL_SEQUENTIAL_MONTH_SELECTION
) )
422 if ( AllowMonthChange() )
424 m_comboMonth
->Show();
425 m_staticMonth
->Hide();
427 if ( AllowYearChange() )
430 m_staticYear
->Hide();
438 m_comboMonth
->Hide();
439 m_staticMonth
->Show();
442 // year change not allowed here
444 m_staticYear
->Show();
446 //else: these controls are not even created, don't show/hide them
449 wxControl
*wxGenericCalendarCtrl::GetMonthControl() const
451 return AllowMonthChange() ? (wxControl
*)m_comboMonth
: (wxControl
*)m_staticMonth
;
454 wxControl
*wxGenericCalendarCtrl::GetYearControl() const
456 return AllowYearChange() ? (wxControl
*)m_spinYear
: (wxControl
*)m_staticYear
;
459 void wxGenericCalendarCtrl::EnableYearChange(bool enable
)
461 if ( enable
!= AllowYearChange() )
463 long style
= GetWindowStyle();
465 style
&= ~wxCAL_NO_YEAR_CHANGE
;
467 style
|= wxCAL_NO_YEAR_CHANGE
;
468 SetWindowStyle(style
);
470 ShowCurrentControls();
471 if ( GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION
)
478 bool wxGenericCalendarCtrl::EnableMonthChange(bool enable
)
480 if ( !wxCalendarCtrlBase::EnableMonthChange(enable
) )
483 ShowCurrentControls();
484 if ( GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION
)
490 // ----------------------------------------------------------------------------
492 // ----------------------------------------------------------------------------
494 bool wxGenericCalendarCtrl::SetDate(const wxDateTime
& date
)
498 bool sameMonth
= m_date
.GetMonth() == date
.GetMonth(),
499 sameYear
= m_date
.GetYear() == date
.GetYear();
501 if ( IsDateInRange(date
) )
503 if ( sameMonth
&& sameYear
)
505 // just change the day
510 if ( AllowMonthChange() && (AllowYearChange() || sameYear
) )
515 if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION
) )
517 // update the controls
518 m_comboMonth
->SetSelection(m_date
.GetMonth());
520 if ( AllowYearChange() )
522 if ( !m_userChangedYear
)
523 m_spinYear
->SetValue(m_date
.Format(wxT("%Y")));
527 // as the month changed, holidays did too
530 // update the calendar
541 m_userChangedYear
= false;
546 void wxGenericCalendarCtrl::ChangeDay(const wxDateTime
& date
)
548 if ( m_date
!= date
)
550 // we need to refresh the row containing the old date and the one
551 // containing the new one
552 wxDateTime dateOld
= m_date
;
555 RefreshDate(dateOld
);
557 // if the date is in the same row, it was already drawn correctly
558 if ( GetWeek(m_date
) != GetWeek(dateOld
) )
565 void wxGenericCalendarCtrl::SetDateAndNotify(const wxDateTime
& date
)
567 const wxDateTime dateOld
= GetDate();
568 if ( date
!= dateOld
&& SetDate(date
) )
570 GenerateAllChangeEvents(dateOld
);
574 // ----------------------------------------------------------------------------
576 // ----------------------------------------------------------------------------
578 bool wxGenericCalendarCtrl::SetLowerDateLimit(const wxDateTime
& date
/* = wxDefaultDateTime */)
582 if ( !(date
.IsValid()) || ( ( m_highdate
.IsValid() ) ? ( date
<= m_highdate
) : true ) )
594 bool wxGenericCalendarCtrl::SetUpperDateLimit(const wxDateTime
& date
/* = wxDefaultDateTime */)
598 if ( !(date
.IsValid()) || ( ( m_lowdate
.IsValid() ) ? ( date
>= m_lowdate
) : true ) )
610 bool wxGenericCalendarCtrl::SetDateRange(const wxDateTime
& lowerdate
/* = wxDefaultDateTime */, const wxDateTime
& upperdate
/* = wxDefaultDateTime */)
615 ( !( lowerdate
.IsValid() ) || ( ( upperdate
.IsValid() ) ? ( lowerdate
<= upperdate
) : true ) ) &&
616 ( !( upperdate
.IsValid() ) || ( ( lowerdate
.IsValid() ) ? ( upperdate
>= lowerdate
) : true ) ) )
618 m_lowdate
= lowerdate
;
619 m_highdate
= upperdate
;
629 bool wxGenericCalendarCtrl::GetDateRange(wxDateTime
*lowerdate
,
630 wxDateTime
*upperdate
) const
633 *lowerdate
= m_lowdate
;
635 *upperdate
= m_highdate
;
637 return m_lowdate
.IsValid() || m_highdate
.IsValid();
640 // ----------------------------------------------------------------------------
642 // ----------------------------------------------------------------------------
644 wxDateTime
wxGenericCalendarCtrl::GetStartDate() const
646 wxDateTime::Tm tm
= m_date
.GetTm();
648 wxDateTime date
= wxDateTime(1, tm
.mon
, tm
.year
);
651 date
.SetToPrevWeekDay(GetWeekStart());
653 if ( GetWindowStyle() & wxCAL_SHOW_SURROUNDING_WEEKS
)
655 // We want to offset the calendar if we start on the first..
656 if ( date
.GetDay() == 1 )
658 date
-= wxDateSpan::Week();
665 bool wxGenericCalendarCtrl::IsDateShown(const wxDateTime
& date
) const
667 if ( !(GetWindowStyle() & wxCAL_SHOW_SURROUNDING_WEEKS
) )
669 return date
.GetMonth() == m_date
.GetMonth();
677 bool wxGenericCalendarCtrl::IsDateInRange(const wxDateTime
& date
) const
679 // Check if the given date is in the range specified
680 return ( ( ( m_lowdate
.IsValid() ) ? ( date
>= m_lowdate
) : true )
681 && ( ( m_highdate
.IsValid() ) ? ( date
<= m_highdate
) : true ) );
684 bool wxGenericCalendarCtrl::AdjustDateToRange(wxDateTime
*date
) const
686 if ( m_lowdate
.IsValid() && *date
< m_lowdate
)
692 if ( m_highdate
.IsValid() && *date
> m_highdate
)
701 size_t wxGenericCalendarCtrl::GetWeek(const wxDateTime
& date
) const
703 size_t retval
= date
.GetWeekOfMonth(HasFlag(wxCAL_MONDAY_FIRST
)
704 ? wxDateTime::Monday_First
705 : wxDateTime::Sunday_First
);
707 if ( (GetWindowStyle() & wxCAL_SHOW_SURROUNDING_WEEKS
) )
709 // we need to offset an extra week if we "start" on the 1st of the month
710 wxDateTime::Tm tm
= date
.GetTm();
712 wxDateTime datetest
= wxDateTime(1, tm
.mon
, tm
.year
);
715 datetest
.SetToPrevWeekDay(GetWeekStart());
717 if ( datetest
.GetDay() == 1 )
726 // ----------------------------------------------------------------------------
728 // ----------------------------------------------------------------------------
730 // this is a composite control and it must arrange its parts each time its
731 // size or position changes: the combobox and spinctrl are along the top of
732 // the available area and the calendar takes up the rest of the space
734 // the static controls are supposed to be always smaller than combo/spin so we
735 // always use the latter for size calculations and position the static to take
738 // the constants used for the layout
739 #define VERT_MARGIN 5 // distance between combo and calendar
740 #define HORZ_MARGIN 5 // spin
742 wxSize
wxGenericCalendarCtrl::DoGetBestSize() const
744 // calc the size of the calendar
745 const_cast<wxGenericCalendarCtrl
*>(this)->RecalcGeometry();
747 wxCoord width
= 7*m_widthCol
+ m_calendarWeekWidth
,
748 height
= 7*m_heightRow
+ m_rowOffset
+ VERT_MARGIN
;
750 if ( !HasFlag(wxCAL_SEQUENTIAL_MONTH_SELECTION
) )
752 const wxSize bestSizeCombo
= m_comboMonth
->GetBestSize();
754 height
+= wxMax(bestSizeCombo
.y
, m_spinYear
->GetBestSize().y
)
757 // the spin control get clipped otherwise
761 wxCoord w2
= bestSizeCombo
.x
+ HORZ_MARGIN
+ GetCharWidth()*6;
766 wxSize
best(width
, height
);
767 if ( !HasFlag(wxBORDER_NONE
) )
769 best
+= GetWindowBorderSize();
777 void wxGenericCalendarCtrl::DoMoveWindow(int x
, int y
, int width
, int height
)
781 if ( !HasFlag(wxCAL_SEQUENTIAL_MONTH_SELECTION
) && m_staticMonth
)
783 wxSize sizeCombo
= m_comboMonth
->GetEffectiveMinSize();
784 wxSize sizeStatic
= m_staticMonth
->GetSize();
785 wxSize sizeSpin
= m_spinYear
->GetSize();
787 int maxHeight
= wxMax(sizeSpin
.y
, sizeCombo
.y
);
788 int dy
= (maxHeight
- sizeStatic
.y
) / 2;
790 m_comboMonth
->Move(x
, y
+ (maxHeight
- sizeCombo
.y
)/2 + 2); // FIXME, something is reporting the wrong size..
792 m_comboMonth
->Move(x
, y
+ (maxHeight
- sizeCombo
.y
)/2);
794 m_staticMonth
->SetSize(x
, y
+ dy
, sizeCombo
.x
, -1, sizeStatic
.y
);
796 int xDiff
= sizeCombo
.x
+ HORZ_MARGIN
;
798 m_spinYear
->SetSize(x
+ xDiff
, y
+ (maxHeight
- sizeSpin
.y
)/2, width
- xDiff
, maxHeight
);
799 m_staticYear
->SetSize(x
+ xDiff
, y
+ dy
, width
- xDiff
, sizeStatic
.y
);
801 yDiff
= maxHeight
+ VERT_MARGIN
;
803 else // no controls on the top
808 wxControl::DoMoveWindow(x
, y
+ yDiff
, width
, height
- yDiff
);
811 void wxGenericCalendarCtrl::DoGetSize(int *width
, int *height
) const
814 wxControl::DoGetSize( width
, height
);
816 if ( !HasFlag(wxCAL_SEQUENTIAL_MONTH_SELECTION
) && m_staticMonth
&& height
)
818 wxSize sizeCombo
= m_comboMonth
->GetEffectiveMinSize();
819 wxSize sizeSpin
= m_spinYear
->GetSize();
821 int maxHeight
= wxMax(sizeSpin
.y
, sizeCombo
.y
);
822 *height
+= maxHeight
+ VERT_MARGIN
;
825 wxControl::DoGetSize( width
, height
);
829 void wxGenericCalendarCtrl::RecalcGeometry()
833 dc
.SetFont(GetFont());
835 // determine the column width (weekday names are not necessarily wider
836 // than the numbers (in some languages), so let's not assume that they are)
838 for ( int day
= 10; day
<= 31; day
++)
841 dc
.GetTextExtent(wxString::Format(wxT("%d"), day
), &width
, &m_heightRow
);
842 if ( width
> m_widthCol
)
844 // 1.5 times the width gives nice margins even if the weekday
846 m_widthCol
= width
+width
/2;
849 wxDateTime::WeekDay wd
;
850 for ( wd
= wxDateTime::Sun
; wd
< wxDateTime::Inv_WeekDay
; wxNextWDay(wd
) )
853 dc
.GetTextExtent(m_weekdays
[wd
], &width
, &m_heightRow
);
854 if ( width
> m_widthCol
)
860 m_calendarWeekWidth
= HasFlag( wxCAL_SHOW_WEEK_NUMBERS
)
861 ? dc
.GetTextExtent( wxString::Format( wxT( "%d" ), 42 )).GetWidth() + 4 : 0;
863 // leave some margins
867 m_rowOffset
= HasFlag(wxCAL_SEQUENTIAL_MONTH_SELECTION
) ? m_heightRow
: 0; // conditional in relation to style
870 // ----------------------------------------------------------------------------
872 // ----------------------------------------------------------------------------
874 void wxGenericCalendarCtrl::OnPaint(wxPaintEvent
& WXUNUSED(event
))
878 dc
.SetFont(GetFont());
883 wxLogDebug("--- starting to paint, selection: %s, week %u\n",
884 m_date
.Format("%a %d-%m-%Y %H:%M:%S").c_str(),
889 wxCoord x0
= m_calendarWeekWidth
;
891 if ( HasFlag(wxCAL_SEQUENTIAL_MONTH_SELECTION
) )
893 // draw the sequential month-selector
895 dc
.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT
);
896 dc
.SetTextForeground(*wxBLACK
);
897 dc
.SetBrush(wxBrush(m_colHeaderBg
, wxBRUSHSTYLE_SOLID
));
898 dc
.SetPen(wxPen(m_colHeaderBg
, 1, wxPENSTYLE_SOLID
));
899 dc
.DrawRectangle(0, y
, GetClientSize().x
, m_heightRow
);
901 // Get extent of month-name + year
902 wxCoord monthw
, monthh
;
903 wxString headertext
= m_date
.Format(wxT("%B %Y"));
904 dc
.GetTextExtent(headertext
, &monthw
, &monthh
);
906 // draw month-name centered above weekdays
907 wxCoord monthx
= ((m_widthCol
* 7) - monthw
) / 2 + x0
;
908 wxCoord monthy
= ((m_heightRow
- monthh
) / 2) + y
;
909 dc
.DrawText(headertext
, monthx
, monthy
);
911 // calculate the "month-arrows"
912 wxPoint leftarrow
[3];
913 wxPoint rightarrow
[3];
915 int arrowheight
= monthh
/ 2;
917 leftarrow
[0] = wxPoint(0, arrowheight
/ 2);
918 leftarrow
[1] = wxPoint(arrowheight
/ 2, 0);
919 leftarrow
[2] = wxPoint(arrowheight
/ 2, arrowheight
- 1);
921 rightarrow
[0] = wxPoint(0,0);
922 rightarrow
[1] = wxPoint(arrowheight
/ 2, arrowheight
/ 2);
923 rightarrow
[2] = wxPoint(0, arrowheight
- 1);
925 // draw the "month-arrows"
927 wxCoord arrowy
= (m_heightRow
- arrowheight
) / 2;
928 wxCoord larrowx
= (m_widthCol
- (arrowheight
/ 2)) / 2 + x0
;
929 wxCoord rarrowx
= ((m_widthCol
- (arrowheight
/ 2)) / 2) + m_widthCol
*6 + x0
;
930 m_leftArrowRect
= m_rightArrowRect
= wxRect(0,0,0,0);
932 if ( AllowMonthChange() )
934 wxDateTime ldpm
= wxDateTime(1,m_date
.GetMonth(), m_date
.GetYear()) - wxDateSpan::Day(); // last day prev month
935 // Check if range permits change
936 if ( IsDateInRange(ldpm
) && ( ( ldpm
.GetYear() == m_date
.GetYear() ) ? true : AllowYearChange() ) )
938 m_leftArrowRect
= wxRect(larrowx
- 3, arrowy
- 3, (arrowheight
/ 2) + 8, (arrowheight
+ 6));
939 dc
.SetBrush(*wxBLACK_BRUSH
);
940 dc
.SetPen(*wxBLACK_PEN
);
941 dc
.DrawPolygon(3, leftarrow
, larrowx
, arrowy
, wxWINDING_RULE
);
942 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
943 dc
.DrawRectangle(m_leftArrowRect
);
945 wxDateTime fdnm
= wxDateTime(1,m_date
.GetMonth(), m_date
.GetYear()) + wxDateSpan::Month(); // first day next month
946 if ( IsDateInRange(fdnm
) && ( ( fdnm
.GetYear() == m_date
.GetYear() ) ? true : AllowYearChange() ) )
948 m_rightArrowRect
= wxRect(rarrowx
- 4, arrowy
- 3, (arrowheight
/ 2) + 8, (arrowheight
+ 6));
949 dc
.SetBrush(*wxBLACK_BRUSH
);
950 dc
.SetPen(*wxBLACK_PEN
);
951 dc
.DrawPolygon(3, rightarrow
, rarrowx
, arrowy
, wxWINDING_RULE
);
952 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
953 dc
.DrawRectangle(m_rightArrowRect
);
960 // first draw the week days
961 if ( IsExposed(x0
, y
, x0
+ 7*m_widthCol
, m_heightRow
) )
964 wxLogDebug("painting the header");
967 dc
.SetBackgroundMode(wxBRUSHSTYLE_TRANSPARENT
);
968 dc
.SetTextForeground(m_colHeaderFg
);
969 dc
.SetBrush(wxBrush(m_colHeaderBg
, wxBRUSHSTYLE_SOLID
));
970 dc
.SetPen(wxPen(m_colHeaderBg
, 1, wxPENSTYLE_SOLID
));
971 dc
.DrawRectangle(0, y
, GetClientSize().x
, m_heightRow
);
973 bool startOnMonday
= HasFlag(wxCAL_MONDAY_FIRST
);
974 for ( int wd
= 0; wd
< 7; wd
++ )
978 n
= wd
== 6 ? 0 : wd
+ 1;
982 dc
.GetTextExtent(m_weekdays
[n
], &dayw
, &dayh
);
983 dc
.DrawText(m_weekdays
[n
], x0
+ (wd
*m_widthCol
) + ((m_widthCol
- dayw
) / 2), y
); // center the day-name
987 // then the calendar itself
988 dc
.SetTextForeground(*wxBLACK
);
989 //dc.SetFont(*wxNORMAL_FONT);
993 // draw column with calendar week nr
994 if ( HasFlag( wxCAL_SHOW_WEEK_NUMBERS
) && IsExposed( 0, y
, m_calendarWeekWidth
, m_heightRow
* 6 ))
996 dc
.SetBackgroundMode(wxTRANSPARENT
);
997 dc
.SetBrush(wxBrush(m_colHeaderBg
, wxSOLID
));
998 dc
.SetPen(wxPen(m_colHeaderBg
, 1, wxSOLID
));
999 dc
.DrawRectangle( 0, y
, m_calendarWeekWidth
, m_heightRow
* 6 );
1000 wxDateTime date
= GetStartDate();
1001 for ( size_t i
= 0; i
< 6; ++i
)
1003 const int weekNr
= date
.GetWeekOfYear();
1004 wxString text
= wxString::Format( wxT( "%d" ), weekNr
);
1005 dc
.DrawText( text
, m_calendarWeekWidth
- dc
.GetTextExtent( text
).GetWidth() - 2, y
+ m_heightRow
* i
);
1006 date
+= wxDateSpan::Week();
1010 wxDateTime date
= GetStartDate();
1013 wxLogDebug("starting calendar from %s\n",
1014 date
.Format("%a %d-%m-%Y %H:%M:%S").c_str());
1017 dc
.SetBackgroundMode(wxBRUSHSTYLE_SOLID
);
1018 for ( size_t nWeek
= 1; nWeek
<= 6; nWeek
++, y
+= m_heightRow
)
1020 // if the update region doesn't intersect this row, don't paint it
1021 if ( !IsExposed(x0
, y
, x0
+ 7*m_widthCol
, m_heightRow
- 1) )
1023 date
+= wxDateSpan::Week();
1029 wxLogDebug("painting week %d at y = %d\n", nWeek
, y
);
1032 for ( int wd
= 0; wd
< 7; wd
++ )
1034 dc
.SetTextBackground(m_colBackground
);
1035 if ( IsDateShown(date
) )
1037 // don't use wxDate::Format() which prepends 0s
1038 unsigned int day
= date
.GetDay();
1039 wxString dayStr
= wxString::Format(wxT("%u"), day
);
1041 dc
.GetTextExtent(dayStr
, &width
, NULL
);
1043 bool changedColours
= false,
1044 changedFont
= false;
1047 wxCalendarDateAttr
*attr
= NULL
;
1049 if ( date
.GetMonth() != m_date
.GetMonth() || !IsDateInRange(date
) )
1051 // draw the days of adjacent months in different colour
1052 dc
.SetTextForeground(m_colSurrounding
);
1053 changedColours
= true;
1057 isSel
= date
.IsSameDate(m_date
);
1058 attr
= m_attrs
[day
- 1];
1062 dc
.SetTextForeground(m_colHighlightFg
);
1063 dc
.SetTextBackground(m_colHighlightBg
);
1065 changedColours
= true;
1069 wxColour colFg
, colBg
;
1071 if ( attr
->IsHoliday() )
1073 colFg
= m_colHolidayFg
;
1074 colBg
= m_colHolidayBg
;
1078 colFg
= attr
->GetTextColour();
1079 colBg
= attr
->GetBackgroundColour();
1084 dc
.SetTextForeground(colFg
);
1085 changedColours
= true;
1090 dc
.SetTextBackground(colBg
);
1091 changedColours
= true;
1094 if ( attr
->HasFont() )
1096 dc
.SetFont(attr
->GetFont());
1102 wxCoord x
= wd
*m_widthCol
+ (m_widthCol
- width
) / 2 + x0
;
1103 dc
.DrawText(dayStr
, x
, y
+ 1);
1105 if ( !isSel
&& attr
&& attr
->HasBorder() )
1108 if ( attr
->HasBorderColour() )
1110 colBorder
= attr
->GetBorderColour();
1114 colBorder
= GetForegroundColour();
1117 wxPen
pen(colBorder
, 1, wxPENSTYLE_SOLID
);
1119 dc
.SetBrush(*wxTRANSPARENT_BRUSH
);
1121 switch ( attr
->GetBorder() )
1123 case wxCAL_BORDER_SQUARE
:
1124 dc
.DrawRectangle(x
- 2, y
,
1125 width
+ 4, m_heightRow
);
1128 case wxCAL_BORDER_ROUND
:
1129 dc
.DrawEllipse(x
- 2, y
,
1130 width
+ 4, m_heightRow
);
1134 wxFAIL_MSG(wxT("unknown border type"));
1138 if ( changedColours
)
1140 dc
.SetTextForeground(GetForegroundColour());
1141 dc
.SetTextBackground(GetBackgroundColour());
1146 dc
.SetFont(GetFont());
1149 //else: just don't draw it
1151 date
+= wxDateSpan::Day();
1155 // Greying out out-of-range background
1156 bool showSurrounding
= (GetWindowStyle() & wxCAL_SHOW_SURROUNDING_WEEKS
) != 0;
1158 date
= ( showSurrounding
) ? GetStartDate() : wxDateTime(1, m_date
.GetMonth(), m_date
.GetYear());
1159 if ( !IsDateInRange(date
) )
1161 wxDateTime firstOOR
= GetLowerDateLimit() - wxDateSpan::Day(); // first out-of-range
1163 wxBrush oorbrush
= *wxLIGHT_GREY_BRUSH
;
1164 oorbrush
.SetStyle(wxBRUSHSTYLE_FDIAGONAL_HATCH
);
1166 HighlightRange(&dc
, date
, firstOOR
, wxTRANSPARENT_PEN
, &oorbrush
);
1169 date
= ( showSurrounding
) ? GetStartDate() + wxDateSpan::Weeks(6) - wxDateSpan::Day() : wxDateTime().SetToLastMonthDay(m_date
.GetMonth(), m_date
.GetYear());
1170 if ( !IsDateInRange(date
) )
1172 wxDateTime firstOOR
= GetUpperDateLimit() + wxDateSpan::Day(); // first out-of-range
1174 wxBrush oorbrush
= *wxLIGHT_GREY_BRUSH
;
1175 oorbrush
.SetStyle(wxBRUSHSTYLE_FDIAGONAL_HATCH
);
1177 HighlightRange(&dc
, firstOOR
, date
, wxTRANSPARENT_PEN
, &oorbrush
);
1181 wxLogDebug("+++ finished painting");
1185 void wxGenericCalendarCtrl::RefreshDate(const wxDateTime
& date
)
1191 // always refresh the whole row at once because our OnPaint() will draw
1192 // the whole row anyhow - and this allows the small optimization in
1193 // OnClick() below to work
1194 rect
.x
= m_calendarWeekWidth
;
1196 rect
.y
= (m_heightRow
* GetWeek(date
)) + m_rowOffset
;
1198 rect
.width
= 7*m_widthCol
;
1199 rect
.height
= m_heightRow
;
1202 // VZ: for some reason, the selected date seems to occupy more space under
1203 // MSW - this is probably some bug in the font size calculations, but I
1204 // don't know where exactly. This fix is ugly and leads to more
1205 // refreshes than really needed, but without it the selected days
1206 // leaves even more ugly underscores on screen.
1211 wxLogDebug("*** refreshing week %d at (%d, %d)-(%d, %d)\n",
1214 rect
.x
+ rect
.width
, rect
.y
+ rect
.height
);
1217 Refresh(true, &rect
);
1220 void wxGenericCalendarCtrl::HighlightRange(wxPaintDC
* pDC
, const wxDateTime
& fromdate
, const wxDateTime
& todate
, const wxPen
* pPen
, const wxBrush
* pBrush
)
1222 // Highlights the given range using pen and brush
1223 // Does nothing if todate < fromdate
1227 wxLogDebug("+++ HighlightRange: (%s) - (%s) +++", fromdate
.Format("%d %m %Y"), todate
.Format("%d %m %Y"));
1230 if ( todate
>= fromdate
)
1237 // implicit: both dates must be currently shown - checked by GetDateCoord
1238 if ( GetDateCoord(fromdate
, &fd
, &fw
) && GetDateCoord(todate
, &td
, &tw
) )
1241 wxLogDebug("Highlight range: (%i, %i) - (%i, %i)", fd
, fw
, td
, tw
);
1243 if ( ( (tw
- fw
) == 1 ) && ( td
< fd
) )
1245 // special case: interval 7 days or less not in same week
1246 // split in two separate intervals
1247 wxDateTime tfd
= fromdate
+ wxDateSpan::Days(7-fd
);
1248 wxDateTime ftd
= tfd
+ wxDateSpan::Day();
1250 wxLogDebug("Highlight: Separate segments");
1253 HighlightRange(pDC
, fromdate
, tfd
, pPen
, pBrush
);
1254 HighlightRange(pDC
, ftd
, todate
, pPen
, pBrush
);
1259 wxPoint corners
[8]; // potentially 8 corners in polygon
1260 wxCoord x0
= m_calendarWeekWidth
;
1264 // simple case: same week
1266 corners
[0] = wxPoint(x0
+ (fd
- 1) * m_widthCol
, (fw
* m_heightRow
) + m_rowOffset
);
1267 corners
[1] = wxPoint(x0
+ (fd
- 1) * m_widthCol
, ((fw
+ 1 ) * m_heightRow
) + m_rowOffset
);
1268 corners
[2] = wxPoint(x0
+ td
* m_widthCol
, ((tw
+ 1) * m_heightRow
) + m_rowOffset
);
1269 corners
[3] = wxPoint(x0
+ td
* m_widthCol
, (tw
* m_heightRow
) + m_rowOffset
);
1274 // "complex" polygon
1275 corners
[cidx
] = wxPoint(x0
+ (fd
- 1) * m_widthCol
, (fw
* m_heightRow
) + m_rowOffset
); cidx
++;
1279 corners
[cidx
] = wxPoint(x0
+ (fd
- 1) * m_widthCol
, ((fw
+ 1) * m_heightRow
) + m_rowOffset
); cidx
++;
1280 corners
[cidx
] = wxPoint(x0
, ((fw
+ 1) * m_heightRow
) + m_rowOffset
); cidx
++;
1283 corners
[cidx
] = wxPoint(x0
, ((tw
+ 1) * m_heightRow
) + m_rowOffset
); cidx
++;
1284 corners
[cidx
] = wxPoint(x0
+ td
* m_widthCol
, ((tw
+ 1) * m_heightRow
) + m_rowOffset
); cidx
++;
1288 corners
[cidx
] = wxPoint(x0
+ td
* m_widthCol
, (tw
* m_heightRow
) + m_rowOffset
); cidx
++;
1289 corners
[cidx
] = wxPoint(x0
+ 7 * m_widthCol
, (tw
* m_heightRow
) + m_rowOffset
); cidx
++;
1292 corners
[cidx
] = wxPoint(x0
+ 7 * m_widthCol
, (fw
* m_heightRow
) + m_rowOffset
); cidx
++;
1298 pDC
->SetBrush(*pBrush
);
1300 pDC
->DrawPolygon(numpoints
, corners
);
1306 wxLogDebug("--- HighlightRange ---");
1310 bool wxGenericCalendarCtrl::GetDateCoord(const wxDateTime
& date
, int *day
, int *week
) const
1315 wxLogDebug("+++ GetDateCoord: (%s) +++", date
.Format("%d %m %Y"));
1318 if ( IsDateShown(date
) )
1320 bool startOnMonday
= HasFlag(wxCAL_MONDAY_FIRST
);
1323 *day
= date
.GetWeekDay();
1325 if ( *day
== 0 ) // sunday
1327 *day
= ( startOnMonday
) ? 7 : 1;
1331 *day
+= ( startOnMonday
) ? 0 : 1;
1334 int targetmonth
= date
.GetMonth() + (12 * date
.GetYear());
1335 int thismonth
= m_date
.GetMonth() + (12 * m_date
.GetYear());
1338 if ( targetmonth
== thismonth
)
1340 *week
= GetWeek(date
);
1344 if ( targetmonth
< thismonth
)
1346 *week
= 1; // trivial
1348 else // targetmonth > thismonth
1354 // get the datecoord of the last day in the month currently shown
1356 wxLogDebug(" +++ LDOM +++");
1358 GetDateCoord(ldcm
.SetToLastMonthDay(m_date
.GetMonth(), m_date
.GetYear()), &lastday
, &lastweek
);
1360 wxLogDebug(" --- LDOM ---");
1363 wxTimeSpan span
= date
- ldcm
;
1365 int daysfromlast
= span
.GetDays();
1367 wxLogDebug("daysfromlast: %i", daysfromlast
);
1369 if ( daysfromlast
+ lastday
> 7 ) // past week boundary
1371 int wholeweeks
= (daysfromlast
/ 7);
1372 *week
= wholeweeks
+ lastweek
;
1373 if ( (daysfromlast
- (7 * wholeweeks
) + lastday
) > 7 )
1393 wxLogDebug("--- GetDateCoord: (%s) = (%i, %i) ---", date
.Format("%d %m %Y"), *day
, *week
);
1399 // ----------------------------------------------------------------------------
1401 // ----------------------------------------------------------------------------
1403 void wxGenericCalendarCtrl::OnDClick(wxMouseEvent
& event
)
1405 if ( HitTest(event
.GetPosition()) != wxCAL_HITTEST_DAY
)
1411 GenerateEvent(wxEVT_CALENDAR_DOUBLECLICKED
);
1415 void wxGenericCalendarCtrl::OnClick(wxMouseEvent
& event
)
1418 wxDateTime::WeekDay wday
;
1419 switch ( HitTest(event
.GetPosition(), &date
, &wday
) )
1421 case wxCAL_HITTEST_DAY
:
1422 if ( IsDateInRange(date
) )
1426 GenerateEvent(wxEVT_CALENDAR_SEL_CHANGED
);
1428 // we know that the month/year never change when the user
1429 // clicks on the control so there is no need to call
1430 // GenerateAllChangeEvents() here, we know which event to send
1431 GenerateEvent(wxEVT_CALENDAR_DAY_CHANGED
);
1435 case wxCAL_HITTEST_WEEK
:
1437 wxCalendarEvent
send( this, date
, wxEVT_CALENDAR_WEEK_CLICKED
);
1438 HandleWindowEvent( send
);
1442 case wxCAL_HITTEST_HEADER
:
1444 wxCalendarEvent
eventWd(this, GetDate(),
1445 wxEVT_CALENDAR_WEEKDAY_CLICKED
);
1446 eventWd
.SetWeekDay(wday
);
1447 (void)GetEventHandler()->ProcessEvent(eventWd
);
1451 case wxCAL_HITTEST_DECMONTH
:
1452 case wxCAL_HITTEST_INCMONTH
:
1453 case wxCAL_HITTEST_SURROUNDING_WEEK
:
1454 SetDateAndNotify(date
); // we probably only want to refresh the control. No notification.. (maybe as an option?)
1458 wxFAIL_MSG(wxT("unknown hittest code"));
1461 case wxCAL_HITTEST_NOWHERE
:
1466 // as we don't (always) skip the message, we're not going to receive the
1467 // focus on click by default if we don't do it ourselves
1471 wxCalendarHitTestResult
wxGenericCalendarCtrl::HitTest(const wxPoint
& pos
,
1473 wxDateTime::WeekDay
*wd
)
1477 // the position where the calendar really begins
1478 wxCoord x0
= m_calendarWeekWidth
;
1480 if ( HasFlag(wxCAL_SEQUENTIAL_MONTH_SELECTION
) )
1484 // we need to find out if the hit is on left arrow, on month or on right arrow
1486 if ( m_leftArrowRect
.Contains(pos
) )
1490 if ( IsDateInRange(m_date
- wxDateSpan::Month()) )
1492 *date
= m_date
- wxDateSpan::Month();
1496 *date
= GetLowerDateLimit();
1500 return wxCAL_HITTEST_DECMONTH
;
1503 if ( m_rightArrowRect
.Contains(pos
) )
1507 if ( IsDateInRange(m_date
+ wxDateSpan::Month()) )
1509 *date
= m_date
+ wxDateSpan::Month();
1513 *date
= GetUpperDateLimit();
1517 return wxCAL_HITTEST_INCMONTH
;
1521 if ( pos
.x
- x0
< 0 )
1523 if ( pos
.x
>= 0 && pos
.y
> m_rowOffset
+ m_heightRow
&& pos
.y
<= m_rowOffset
+ m_heightRow
* 7 )
1527 *date
= GetStartDate();
1528 *date
+= wxDateSpan::Week() * (( pos
.y
- m_rowOffset
) / m_heightRow
- 1 );
1531 *wd
= GetWeekStart();
1532 return wxCAL_HITTEST_WEEK
;
1534 else // early exit -> the rest of the function checks for clicks on days
1535 return wxCAL_HITTEST_NOWHERE
;
1538 // header: week days
1539 int wday
= (pos
.x
- x0
) / m_widthCol
;
1541 return wxCAL_HITTEST_NOWHERE
;
1542 if ( pos
.y
< (m_heightRow
+ m_rowOffset
))
1544 if ( pos
.y
> m_rowOffset
)
1548 if ( HasFlag(wxCAL_MONDAY_FIRST
) )
1550 wday
= wday
== 6 ? 0 : wday
+ 1;
1553 *wd
= (wxDateTime::WeekDay
)wday
;
1556 return wxCAL_HITTEST_HEADER
;
1560 return wxCAL_HITTEST_NOWHERE
;
1564 int week
= (pos
.y
- (m_heightRow
+ m_rowOffset
)) / m_heightRow
;
1565 if ( week
>= 6 || wday
>= 7 )
1567 return wxCAL_HITTEST_NOWHERE
;
1570 wxDateTime dt
= GetStartDate() + wxDateSpan::Days(7*week
+ wday
);
1572 if ( IsDateShown(dt
) )
1577 if ( dt
.GetMonth() == m_date
.GetMonth() )
1580 return wxCAL_HITTEST_DAY
;
1584 return wxCAL_HITTEST_SURROUNDING_WEEK
;
1589 return wxCAL_HITTEST_NOWHERE
;
1593 // ----------------------------------------------------------------------------
1594 // subcontrols events handling
1595 // ----------------------------------------------------------------------------
1597 void wxGenericCalendarCtrl::OnMonthChange(wxCommandEvent
& event
)
1599 wxDateTime::Tm tm
= m_date
.GetTm();
1601 wxDateTime::Month mon
= (wxDateTime::Month
)event
.GetInt();
1602 if ( tm
.mday
> wxDateTime::GetNumberOfDays(mon
, tm
.year
) )
1604 tm
.mday
= wxDateTime::GetNumberOfDays(mon
, tm
.year
);
1607 wxDateTime
dt(tm
.mday
, mon
, tm
.year
);
1608 if ( AdjustDateToRange(&dt
) )
1610 // The date must have been changed to ensure it's in valid range,
1611 // reflect this in the month choice control.
1612 m_comboMonth
->SetSelection(dt
.GetMonth());
1615 SetDateAndNotify(dt
);
1618 void wxGenericCalendarCtrl::HandleYearChange(wxCommandEvent
& event
)
1620 int year
= (int)event
.GetInt();
1621 if ( year
== INT_MIN
)
1623 // invalid year in the spin control, ignore it
1627 wxDateTime::Tm tm
= m_date
.GetTm();
1629 if ( tm
.mday
> wxDateTime::GetNumberOfDays(tm
.mon
, year
) )
1631 tm
.mday
= wxDateTime::GetNumberOfDays(tm
.mon
, year
);
1634 wxDateTime
dt(tm
.mday
, tm
.mon
, year
);
1635 if ( AdjustDateToRange(&dt
) )
1637 // As above, if the date was changed to keep it in valid range, its
1638 // possibly changed year must be shown in the GUI.
1639 m_spinYear
->SetValue(dt
.GetYear());
1642 SetDateAndNotify(dt
);
1645 void wxGenericCalendarCtrl::OnYearChange(wxSpinEvent
& event
)
1647 HandleYearChange( event
);
1650 void wxGenericCalendarCtrl::OnYearTextChange(wxCommandEvent
& event
)
1652 SetUserChangedYear();
1653 HandleYearChange(event
);
1656 // Responds to colour changes, and passes event on to children.
1657 void wxGenericCalendarCtrl::OnSysColourChanged(wxSysColourChangedEvent
& event
)
1662 // Propagate the event to the children
1663 wxControl::OnSysColourChanged(event
);
1665 // Redraw control area
1666 SetBackgroundColour(m_colBackground
);
1670 // ----------------------------------------------------------------------------
1671 // keyboard interface
1672 // ----------------------------------------------------------------------------
1674 void wxGenericCalendarCtrl::OnChar(wxKeyEvent
& event
)
1676 switch ( event
.GetKeyCode() )
1680 SetDateAndNotify(m_date
+ wxDateSpan::Year());
1685 SetDateAndNotify(m_date
- wxDateSpan::Year());
1689 SetDateAndNotify(m_date
- wxDateSpan::Month());
1693 SetDateAndNotify(m_date
+ wxDateSpan::Month());
1697 if ( event
.ControlDown() )
1699 wxDateTime target
= m_date
.SetToNextWeekDay(GetWeekEnd());
1700 AdjustDateToRange(&target
);
1701 SetDateAndNotify(target
);
1704 SetDateAndNotify(m_date
+ wxDateSpan::Day());
1708 if ( event
.ControlDown() )
1710 wxDateTime target
= m_date
.SetToPrevWeekDay(GetWeekStart());
1711 AdjustDateToRange(&target
);
1712 SetDateAndNotify(target
);
1715 SetDateAndNotify(m_date
- wxDateSpan::Day());
1719 SetDateAndNotify(m_date
- wxDateSpan::Week());
1723 SetDateAndNotify(m_date
+ wxDateSpan::Week());
1727 if ( event
.ControlDown() )
1728 SetDateAndNotify(wxDateTime::Today());
1730 SetDateAndNotify(wxDateTime(1, m_date
.GetMonth(), m_date
.GetYear()));
1734 SetDateAndNotify(wxDateTime(m_date
).SetToLastMonthDay());
1738 GenerateEvent(wxEVT_CALENDAR_DOUBLECLICKED
);
1746 // ----------------------------------------------------------------------------
1747 // holidays handling
1748 // ----------------------------------------------------------------------------
1750 void wxGenericCalendarCtrl::SetHoliday(size_t day
)
1752 wxCHECK_RET( day
> 0 && day
< 32, wxT("invalid day in SetHoliday") );
1754 wxCalendarDateAttr
*attr
= GetAttr(day
);
1757 attr
= new wxCalendarDateAttr
;
1760 attr
->SetHoliday(true);
1762 // can't use SetAttr() because it would delete this pointer
1763 m_attrs
[day
- 1] = attr
;
1766 void wxGenericCalendarCtrl::ResetHolidayAttrs()
1768 for ( size_t day
= 0; day
< 31; day
++ )
1772 m_attrs
[day
]->SetHoliday(false);
1777 void wxGenericCalendarCtrl::Mark(size_t day
, bool mark
)
1779 wxCHECK_RET( day
> 0 && day
< 32, wxT("invalid day in Mark") );
1781 const wxCalendarDateAttr
& m
= wxCalendarDateAttr::GetMark();
1783 if ( m_attrs
[day
- 1] )
1784 AddAttr(m_attrs
[day
- 1], m
);
1786 SetAttr(day
, new wxCalendarDateAttr(m
));
1789 if ( m_attrs
[day
- 1] )
1790 DelAttr(m_attrs
[day
- 1], m
);
1796 wxGenericCalendarCtrl::GetClassDefaultAttributes(wxWindowVariant variant
)
1798 // Use the same color scheme as wxListBox
1799 return wxListBox::GetClassDefaultAttributes(variant
);
1802 #endif // wxUSE_CALENDARCTRL