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"
34 #include "wx/generic/calctrl.h"
36 // ----------------------------------------------------------------------------
38 // ----------------------------------------------------------------------------
40 BEGIN_EVENT_TABLE(wxCalendarCtrl
, wxControl
)
41 EVT_PAINT(wxCalendarCtrl::OnPaint
)
43 EVT_LEFT_DOWN(wxCalendarCtrl::OnClick
)
46 IMPLEMENT_DYNAMIC_CLASS(wxCalendarCtrl
, wxControl
)
48 // ============================================================================
50 // ============================================================================
52 // ----------------------------------------------------------------------------
54 // ----------------------------------------------------------------------------
56 void wxCalendarCtrl::Init()
65 bool wxCalendarCtrl::Create(wxWindow
*parent
,
67 const wxDateTime
& date
,
73 m_date
= date
.IsValid() ? date
: wxDateTime::Today();
76 if ( size
.x
== -1 || size
.y
== -1 )
78 sizeReal
= DoGetBestSize();
91 SetBackgroundColour(*wxWHITE
);
96 // ----------------------------------------------------------------------------
98 // ----------------------------------------------------------------------------
100 wxDateTime
wxCalendarCtrl::GetStartDate() const
102 wxDateTime::Tm tm
= m_date
.GetTm();
104 wxDateTime date
= wxDateTime(1, tm
.mon
, tm
.year
);
105 date
.SetToPrevWeekDay(wxDateTime::Sun
);
110 bool wxCalendarCtrl::IsDateShown(const wxDateTime
& date
) const
112 return date
.GetMonth() == m_date
.GetMonth();
115 // ----------------------------------------------------------------------------
117 // ----------------------------------------------------------------------------
119 wxSize
wxCalendarCtrl::DoGetBestSize() const
121 return wxSize(230, 200);
124 void wxCalendarCtrl::DoSetSize(int x
, int y
,
125 int width
, int height
,
128 wxControl::DoSetSize(x
, y
, width
, height
, sizeFlags
);
131 void wxCalendarCtrl::DoMoveWindow(int x
, int y
, int width
, int height
)
133 wxControl::DoMoveWindow(x
, y
, width
, height
);
136 // ----------------------------------------------------------------------------
138 // ----------------------------------------------------------------------------
140 void wxCalendarCtrl::OnPaint(wxPaintEvent
& event
)
144 wxDateTime::WeekDay wd
;
145 wxString weekdays
[7];
147 dc
.SetFont(*wxSWISS_FONT
);
149 // determine the column width (we assume that the weekday names are always
150 // wider (in any language) than the numbers)
152 for ( wd
= wxDateTime::Sun
; wd
< wxDateTime::Inv_WeekDay
; wxNextWDay(wd
) )
154 weekdays
[wd
] = wxDateTime::GetWeekDayName(wd
, wxDateTime::Name_Abbr
);
157 dc
.GetTextExtent(weekdays
[wd
], &width
, &m_heightRow
);
158 if ( width
> m_widthCol
)
164 // leave some margins
168 // first draw the week days
169 dc
.SetTextForeground(*wxBLUE
);
170 dc
.SetBrush(wxBrush(*wxLIGHT_GREY
, wxSOLID
));
171 dc
.SetBackgroundMode(wxTRANSPARENT
);
172 dc
.SetPen(*wxWHITE_PEN
);
173 dc
.DrawRectangle(0, 0, 7*m_widthCol
- 1, m_heightRow
);
174 for ( wd
= wxDateTime::Sun
; wd
< wxDateTime::Inv_WeekDay
; wxNextWDay(wd
) )
176 dc
.DrawText(weekdays
[wd
], wd
*m_widthCol
+ 1, 0);
179 // then the calendar itself
180 dc
.SetTextForeground(*wxBLACK
);
181 //dc.SetFont(*wxNORMAL_FONT);
183 wxCoord y
= m_heightRow
;
185 wxDateTime date
= GetStartDate();
186 dc
.SetBackgroundMode(wxSOLID
);
187 for ( size_t nWeek
= 0; nWeek
< 6; nWeek
++ )
189 for ( wd
= wxDateTime::Sun
; wd
< wxDateTime::Inv_WeekDay
; wxNextWDay(wd
) )
191 if ( IsDateShown(date
) )
193 wxString day
= wxString::Format(_T("%u"), date
.GetDay());
195 dc
.GetTextExtent(day
, &width
, (wxCoord
*)NULL
);
197 bool isSel
= m_date
== date
;
200 dc
.SetTextForeground(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHTTEXT
));
201 dc
.SetTextBackground(wxSystemSettings::GetSystemColour(wxSYS_COLOUR_HIGHLIGHT
));
204 dc
.DrawText(day
, wd
*m_widthCol
+ (m_widthCol
- width
) / 2, y
);
208 dc
.SetTextForeground(*wxBLACK
);
209 dc
.SetTextBackground(m_backgroundColour
);
212 //else: just don't draw it
214 date
+= wxDateSpan::Day();
221 // ----------------------------------------------------------------------------
223 // ----------------------------------------------------------------------------
225 void wxCalendarCtrl::OnClick(wxMouseEvent
& event
)
228 if ( !HitTest(event
.GetPosition(), &date
) )
240 bool wxCalendarCtrl::HitTest(const wxPoint
& pos
, wxDateTime
*date
)
243 if ( y
< m_heightRow
)
247 int week
= y
/ m_heightRow
,
248 wday
= pos
.x
/ m_widthCol
;
250 if ( week
>= 6 || wday
>= 7 )
253 wxCHECK_MSG( date
, FALSE
, _T("bad pointer in wxCalendarCtrl::HitTest") );
255 *date
= GetStartDate();
256 *date
+= wxDateSpan::Days(7*week
+ wday
);
257 return IsDateShown(*date
);