]>
Commit | Line | Data |
---|---|---|
1 | /////////////////////////////////////////////////////////////////////////////// | |
2 | // Name: generic/calctrl.cpp | |
3 | // Purpose: implementation fo the generic wxCalendarCtrl | |
4 | // Author: Vadim Zeitlin | |
5 | // Modified by: | |
6 | // Created: 29.12.99 | |
7 | // RCS-ID: $Id$ | |
8 | // Copyright: (c) 1999 Vadim Zeitlin <zeitlin@dptmaths.ens-cachan.fr> | |
9 | // Licence: wxWindows license | |
10 | /////////////////////////////////////////////////////////////////////////////// | |
11 | ||
12 | // ============================================================================ | |
13 | // declarations | |
14 | // ============================================================================ | |
15 | ||
16 | // ---------------------------------------------------------------------------- | |
17 | // headers | |
18 | // ---------------------------------------------------------------------------- | |
19 | ||
20 | #ifdef __GNUG__ | |
21 | #pragma implementation "calctrl.h" | |
22 | #endif | |
23 | ||
24 | // For compilers that support precompilation, includes "wx.h". | |
25 | #include "wx/wxprec.h" | |
26 | ||
27 | #ifdef __BORLANDC__ | |
28 | #pragma hdrstop | |
29 | #endif | |
30 | ||
31 | #ifndef WX_PRECOMP | |
32 | #include "wx/dcclient.h" | |
33 | #include "wx/settings.h" | |
34 | #include "wx/brush.h" | |
35 | #include "wx/combobox.h" | |
36 | #include "wx/stattext.h" | |
37 | #endif //WX_PRECOMP | |
38 | ||
39 | #if wxUSE_CALENDARCTRL | |
40 | ||
41 | #include "wx/calctrl.h" | |
42 | ||
43 | #define DEBUG_PAINT 0 | |
44 | ||
45 | // ---------------------------------------------------------------------------- | |
46 | // private classes | |
47 | // ---------------------------------------------------------------------------- | |
48 | ||
49 | class wxMonthComboBox : public wxComboBox | |
50 | { | |
51 | public: | |
52 | wxMonthComboBox(wxCalendarCtrl *cal); | |
53 | ||
54 | void OnMonthChange(wxCommandEvent& event) { m_cal->OnMonthChange(event); } | |
55 | ||
56 | private: | |
57 | wxCalendarCtrl *m_cal; | |
58 | ||
59 | DECLARE_EVENT_TABLE() | |
60 | }; | |
61 | ||
62 | class wxYearSpinCtrl : public wxSpinCtrl | |
63 | { | |
64 | public: | |
65 | wxYearSpinCtrl(wxCalendarCtrl *cal); | |
66 | ||
67 | void OnYearChange(wxSpinEvent& event) { m_cal->OnYearChange(event); } | |
68 | ||
69 | private: | |
70 | wxCalendarCtrl *m_cal; | |
71 | ||
72 | DECLARE_EVENT_TABLE() | |
73 | }; | |
74 | ||
75 | // ---------------------------------------------------------------------------- | |
76 | // wxWin macros | |
77 | // ---------------------------------------------------------------------------- | |
78 | ||
79 | BEGIN_EVENT_TABLE(wxCalendarCtrl, wxControl) | |
80 | EVT_PAINT(wxCalendarCtrl::OnPaint) | |
81 | ||
82 | EVT_CHAR(wxCalendarCtrl::OnChar) | |
83 | ||
84 | EVT_LEFT_DOWN(wxCalendarCtrl::OnClick) | |
85 | EVT_LEFT_DCLICK(wxCalendarCtrl::OnDClick) | |
86 | END_EVENT_TABLE() | |
87 | ||
88 | BEGIN_EVENT_TABLE(wxMonthComboBox, wxComboBox) | |
89 | EVT_COMBOBOX(-1, wxMonthComboBox::OnMonthChange) | |
90 | END_EVENT_TABLE() | |
91 | ||
92 | BEGIN_EVENT_TABLE(wxYearSpinCtrl, wxSpinCtrl) | |
93 | EVT_SPINCTRL(-1, wxYearSpinCtrl::OnYearChange) | |
94 | END_EVENT_TABLE() | |
95 | ||
96 | IMPLEMENT_DYNAMIC_CLASS(wxCalendarCtrl, wxControl) | |
97 | IMPLEMENT_DYNAMIC_CLASS(wxCalendarEvent, wxCommandEvent) | |
98 | ||
99 | // ---------------------------------------------------------------------------- | |
100 | // events | |
101 | // ---------------------------------------------------------------------------- | |
102 | ||
103 | DEFINE_EVENT_TYPE(wxEVT_CALENDAR_SEL_CHANGED) | |
104 | DEFINE_EVENT_TYPE(wxEVT_CALENDAR_DAY_CHANGED) | |
105 | DEFINE_EVENT_TYPE(wxEVT_CALENDAR_MONTH_CHANGED) | |
106 | DEFINE_EVENT_TYPE(wxEVT_CALENDAR_YEAR_CHANGED) | |
107 | DEFINE_EVENT_TYPE(wxEVT_CALENDAR_DOUBLECLICKED) | |
108 | DEFINE_EVENT_TYPE(wxEVT_CALENDAR_WEEKDAY_CLICKED) | |
109 | ||
110 | // ============================================================================ | |
111 | // implementation | |
112 | // ============================================================================ | |
113 | ||
114 | // ---------------------------------------------------------------------------- | |
115 | // wxMonthComboBox and wxYearSpinCtrl | |
116 | // ---------------------------------------------------------------------------- | |
117 | ||
118 | wxMonthComboBox::wxMonthComboBox(wxCalendarCtrl *cal) | |
119 | : wxComboBox(cal->GetParent(), -1, | |
120 | wxEmptyString, | |
121 | wxDefaultPosition, | |
122 | wxDefaultSize, | |
123 | 0, NULL, | |
124 | wxCB_READONLY | wxCLIP_SIBLINGS) | |
125 | { | |
126 | m_cal = cal; | |
127 | ||
128 | wxDateTime::Month m; | |
129 | for ( m = wxDateTime::Jan; m < wxDateTime::Inv_Month; wxNextMonth(m) ) | |
130 | { | |
131 | Append(wxDateTime::GetMonthName(m)); | |
132 | } | |
133 | ||
134 | SetSelection(m_cal->GetDate().GetMonth()); | |
135 | SetSize(-1, -1, -1, -1, wxSIZE_AUTO_WIDTH|wxSIZE_AUTO_HEIGHT); | |
136 | } | |
137 | ||
138 | wxYearSpinCtrl::wxYearSpinCtrl(wxCalendarCtrl *cal) | |
139 | : wxSpinCtrl(cal->GetParent(), -1, | |
140 | cal->GetDate().Format(_T("%Y")), | |
141 | wxDefaultPosition, | |
142 | wxDefaultSize, | |
143 | wxSP_ARROW_KEYS | wxCLIP_SIBLINGS, | |
144 | -4300, 10000, cal->GetDate().GetYear()) | |
145 | { | |
146 | m_cal = cal; | |
147 | } | |
148 | ||
149 | // ---------------------------------------------------------------------------- | |
150 | // wxCalendarCtrl | |
151 | // ---------------------------------------------------------------------------- | |
152 | ||
153 | void wxCalendarCtrl::Init() | |
154 | { | |
155 | m_comboMonth = NULL; | |
156 | m_spinYear = NULL; | |
157 | ||
158 | m_widthCol = | |
159 | m_heightRow = 0; | |
160 | ||
161 | wxDateTime::WeekDay wd; | |
162 | for ( wd = wxDateTime::Sun; wd < wxDateTime::Inv_WeekDay; wxNextWDay(wd) ) | |
163 | { | |
164 | m_weekdays[wd] = wxDateTime::GetWeekDayName(wd, wxDateTime::Name_Abbr); | |
165 | } | |
166 | ||
167 | for ( size_t n = 0; n < WXSIZEOF(m_attrs); n++ ) | |
168 | { | |
169 | m_attrs[n] = NULL; | |
170 | } | |
171 | ||
172 | wxSystemSettings ss; | |
173 | m_colHighlightFg = ss.GetSystemColour(wxSYS_COLOUR_HIGHLIGHTTEXT); | |
174 | m_colHighlightBg = ss.GetSystemColour(wxSYS_COLOUR_HIGHLIGHT); | |
175 | ||
176 | m_colHolidayFg = *wxRED; | |
177 | // don't set m_colHolidayBg - by default, same as our bg colour | |
178 | ||
179 | m_colHeaderFg = *wxBLUE; | |
180 | m_colHeaderBg = *wxLIGHT_GREY; | |
181 | } | |
182 | ||
183 | bool wxCalendarCtrl::Create(wxWindow *parent, | |
184 | wxWindowID id, | |
185 | const wxDateTime& date, | |
186 | const wxPoint& pos, | |
187 | const wxSize& size, | |
188 | long style, | |
189 | const wxString& name) | |
190 | { | |
191 | if ( !wxControl::Create(parent, id, pos, size, | |
192 | style | wxCLIP_CHILDREN | wxWANTS_CHARS, | |
193 | wxDefaultValidator, name) ) | |
194 | { | |
195 | return FALSE; | |
196 | } | |
197 | ||
198 | // needed to get the arrow keys normally used for the dialog navigation | |
199 | SetWindowStyle(style | wxWANTS_CHARS); | |
200 | ||
201 | m_date = date.IsValid() ? date : wxDateTime::Today(); | |
202 | ||
203 | m_lowdate = wxDefaultDateTime; | |
204 | m_highdate = wxDefaultDateTime; | |
205 | ||
206 | if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ) | |
207 | { | |
208 | m_spinYear = new wxYearSpinCtrl(this); | |
209 | m_staticYear = new wxStaticText(GetParent(), -1, m_date.Format(_T("%Y")), | |
210 | wxDefaultPosition, wxDefaultSize, | |
211 | wxALIGN_CENTRE); | |
212 | ||
213 | m_comboMonth = new wxMonthComboBox(this); | |
214 | m_staticMonth = new wxStaticText(GetParent(), -1, m_date.Format(_T("%B")), | |
215 | wxDefaultPosition, wxDefaultSize, | |
216 | wxALIGN_CENTRE); | |
217 | } | |
218 | ||
219 | ShowCurrentControls(); | |
220 | ||
221 | wxSize sizeReal; | |
222 | if ( size.x == -1 || size.y == -1 ) | |
223 | { | |
224 | sizeReal = DoGetBestSize(); | |
225 | if ( size.x != -1 ) | |
226 | sizeReal.x = size.x; | |
227 | if ( size.y != -1 ) | |
228 | sizeReal.y = size.y; | |
229 | } | |
230 | else | |
231 | { | |
232 | sizeReal = size; | |
233 | } | |
234 | ||
235 | SetSize(sizeReal); | |
236 | ||
237 | SetBackgroundColour(*wxWHITE); | |
238 | SetFont(*wxSWISS_FONT); | |
239 | ||
240 | SetHolidayAttrs(); | |
241 | ||
242 | return TRUE; | |
243 | } | |
244 | ||
245 | wxCalendarCtrl::~wxCalendarCtrl() | |
246 | { | |
247 | for ( size_t n = 0; n < WXSIZEOF(m_attrs); n++ ) | |
248 | { | |
249 | delete m_attrs[n]; | |
250 | } | |
251 | } | |
252 | ||
253 | // ---------------------------------------------------------------------------- | |
254 | // forward wxWin functions to subcontrols | |
255 | // ---------------------------------------------------------------------------- | |
256 | ||
257 | bool wxCalendarCtrl::Show(bool show) | |
258 | { | |
259 | if ( !wxControl::Show(show) ) | |
260 | { | |
261 | return FALSE; | |
262 | } | |
263 | ||
264 | if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ) | |
265 | { | |
266 | if ( GetMonthControl() ) | |
267 | { | |
268 | GetMonthControl()->Show(show); | |
269 | GetYearControl()->Show(show); | |
270 | } | |
271 | } | |
272 | ||
273 | return TRUE; | |
274 | } | |
275 | ||
276 | bool wxCalendarCtrl::Enable(bool enable) | |
277 | { | |
278 | if ( !wxControl::Enable(enable) ) | |
279 | { | |
280 | return FALSE; | |
281 | } | |
282 | ||
283 | if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ) | |
284 | { | |
285 | GetMonthControl()->Enable(enable); | |
286 | GetYearControl()->Enable(enable); | |
287 | } | |
288 | ||
289 | return TRUE; | |
290 | } | |
291 | ||
292 | // ---------------------------------------------------------------------------- | |
293 | // enable/disable month/year controls | |
294 | // ---------------------------------------------------------------------------- | |
295 | ||
296 | void wxCalendarCtrl::ShowCurrentControls() | |
297 | { | |
298 | if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ) | |
299 | { | |
300 | if ( AllowMonthChange() ) | |
301 | { | |
302 | m_comboMonth->Show(); | |
303 | m_staticMonth->Hide(); | |
304 | ||
305 | if ( AllowYearChange() ) | |
306 | { | |
307 | m_spinYear->Show(); | |
308 | m_staticYear->Hide(); | |
309 | ||
310 | // skip the rest | |
311 | return; | |
312 | } | |
313 | } | |
314 | else | |
315 | { | |
316 | m_comboMonth->Hide(); | |
317 | m_staticMonth->Show(); | |
318 | } | |
319 | ||
320 | // year change not allowed here | |
321 | m_spinYear->Hide(); | |
322 | m_staticYear->Show(); | |
323 | } | |
324 | } | |
325 | ||
326 | wxControl *wxCalendarCtrl::GetMonthControl() const | |
327 | { | |
328 | return AllowMonthChange() ? (wxControl *)m_comboMonth : (wxControl *)m_staticMonth; | |
329 | } | |
330 | ||
331 | wxControl *wxCalendarCtrl::GetYearControl() const | |
332 | { | |
333 | return AllowYearChange() ? (wxControl *)m_spinYear : (wxControl *)m_staticYear; | |
334 | } | |
335 | ||
336 | void wxCalendarCtrl::EnableYearChange(bool enable) | |
337 | { | |
338 | if ( enable != AllowYearChange() ) | |
339 | { | |
340 | long style = GetWindowStyle(); | |
341 | if ( enable ) | |
342 | style &= ~wxCAL_NO_YEAR_CHANGE; | |
343 | else | |
344 | style |= wxCAL_NO_YEAR_CHANGE; | |
345 | SetWindowStyle(style); | |
346 | ||
347 | ShowCurrentControls(); | |
348 | if ( GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION ) | |
349 | { | |
350 | Refresh(); | |
351 | } | |
352 | } | |
353 | } | |
354 | ||
355 | void wxCalendarCtrl::EnableMonthChange(bool enable) | |
356 | { | |
357 | if ( enable != AllowMonthChange() ) | |
358 | { | |
359 | long style = GetWindowStyle(); | |
360 | if ( enable ) | |
361 | style &= ~wxCAL_NO_MONTH_CHANGE; | |
362 | else | |
363 | style |= wxCAL_NO_MONTH_CHANGE; | |
364 | SetWindowStyle(style); | |
365 | ||
366 | ShowCurrentControls(); | |
367 | if ( GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION ) | |
368 | { | |
369 | Refresh(); | |
370 | } | |
371 | } | |
372 | } | |
373 | ||
374 | // ---------------------------------------------------------------------------- | |
375 | // changing date | |
376 | // ---------------------------------------------------------------------------- | |
377 | ||
378 | bool wxCalendarCtrl::SetDate(const wxDateTime& date) | |
379 | { | |
380 | bool retval = FALSE; | |
381 | ||
382 | bool sameMonth = m_date.GetMonth() == date.GetMonth(), | |
383 | sameYear = m_date.GetYear() == date.GetYear(); | |
384 | ||
385 | if ( IsDateInRange(date) ) | |
386 | { | |
387 | if ( sameMonth && sameYear ) | |
388 | { | |
389 | // just change the day | |
390 | retval = TRUE; | |
391 | ChangeDay(date); | |
392 | } | |
393 | else | |
394 | { | |
395 | if ( !AllowMonthChange() || (!AllowYearChange() && !sameYear) ) | |
396 | { | |
397 | // forbidden | |
398 | return retval; | |
399 | } | |
400 | ||
401 | // change everything | |
402 | retval = TRUE; | |
403 | m_date = date; | |
404 | ||
405 | if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ) | |
406 | { | |
407 | // update the controls | |
408 | m_comboMonth->SetSelection(m_date.GetMonth()); | |
409 | ||
410 | if ( AllowYearChange() ) | |
411 | { | |
412 | m_spinYear->SetValue(m_date.Format(_T("%Y"))); | |
413 | } | |
414 | } | |
415 | ||
416 | // as the month changed, holidays did too | |
417 | SetHolidayAttrs(); | |
418 | ||
419 | // update the calendar | |
420 | Refresh(); | |
421 | } | |
422 | } | |
423 | ||
424 | return retval; | |
425 | } | |
426 | ||
427 | void wxCalendarCtrl::ChangeDay(const wxDateTime& date) | |
428 | { | |
429 | if ( m_date != date ) | |
430 | { | |
431 | // we need to refresh the row containing the old date and the one | |
432 | // containing the new one | |
433 | wxDateTime dateOld = m_date; | |
434 | m_date = date; | |
435 | ||
436 | RefreshDate(dateOld); | |
437 | ||
438 | // if the date is in the same row, it was already drawn correctly | |
439 | if ( GetWeek(m_date) != GetWeek(dateOld) ) | |
440 | { | |
441 | RefreshDate(m_date); | |
442 | } | |
443 | } | |
444 | } | |
445 | ||
446 | void wxCalendarCtrl::SetDateAndNotify(const wxDateTime& date) | |
447 | { | |
448 | wxDateTime::Tm tm1 = m_date.GetTm(), | |
449 | tm2 = date.GetTm(); | |
450 | ||
451 | wxEventType type; | |
452 | if ( tm1.year != tm2.year ) | |
453 | type = wxEVT_CALENDAR_YEAR_CHANGED; | |
454 | else if ( tm1.mon != tm2.mon ) | |
455 | type = wxEVT_CALENDAR_MONTH_CHANGED; | |
456 | else if ( tm1.mday != tm2.mday ) | |
457 | type = wxEVT_CALENDAR_DAY_CHANGED; | |
458 | else | |
459 | return; | |
460 | ||
461 | if ( SetDate(date) ) | |
462 | { | |
463 | GenerateEvents(type, wxEVT_CALENDAR_SEL_CHANGED); | |
464 | } | |
465 | } | |
466 | ||
467 | // ---------------------------------------------------------------------------- | |
468 | // date range | |
469 | // ---------------------------------------------------------------------------- | |
470 | ||
471 | bool wxCalendarCtrl::SetLowerDateLimit(const wxDateTime& date /* = wxDefaultDateTime */) | |
472 | { | |
473 | bool retval = TRUE; | |
474 | ||
475 | if ( !(date.IsValid()) || ( ( m_highdate.IsValid() ) ? ( date <= m_highdate ) : TRUE ) ) | |
476 | { | |
477 | m_lowdate = date; | |
478 | } | |
479 | else | |
480 | { | |
481 | retval = FALSE; | |
482 | } | |
483 | ||
484 | return retval; | |
485 | } | |
486 | ||
487 | bool wxCalendarCtrl::SetUpperDateLimit(const wxDateTime& date /* = wxDefaultDateTime */) | |
488 | { | |
489 | bool retval = TRUE; | |
490 | ||
491 | if ( !(date.IsValid()) || ( ( m_lowdate.IsValid() ) ? ( date >= m_lowdate ) : TRUE ) ) | |
492 | { | |
493 | m_highdate = date; | |
494 | } | |
495 | else | |
496 | { | |
497 | retval = FALSE; | |
498 | } | |
499 | ||
500 | return retval; | |
501 | } | |
502 | ||
503 | bool wxCalendarCtrl::SetDateRange(const wxDateTime& lowerdate /* = wxDefaultDateTime */, const wxDateTime& upperdate /* = wxDefaultDateTime */) | |
504 | { | |
505 | bool retval = TRUE; | |
506 | ||
507 | if ( | |
508 | ( !( lowerdate.IsValid() ) || ( ( upperdate.IsValid() ) ? ( lowerdate <= upperdate ) : TRUE ) ) && | |
509 | ( !( upperdate.IsValid() ) || ( ( lowerdate.IsValid() ) ? ( upperdate >= lowerdate ) : TRUE ) ) ) | |
510 | { | |
511 | m_lowdate = lowerdate; | |
512 | m_highdate = upperdate; | |
513 | } | |
514 | else | |
515 | { | |
516 | retval = FALSE; | |
517 | } | |
518 | ||
519 | return retval; | |
520 | } | |
521 | ||
522 | // ---------------------------------------------------------------------------- | |
523 | // date helpers | |
524 | // ---------------------------------------------------------------------------- | |
525 | ||
526 | wxDateTime wxCalendarCtrl::GetStartDate() const | |
527 | { | |
528 | wxDateTime::Tm tm = m_date.GetTm(); | |
529 | ||
530 | wxDateTime date = wxDateTime(1, tm.mon, tm.year); | |
531 | ||
532 | // rewind back | |
533 | date.SetToPrevWeekDay(GetWindowStyle() & wxCAL_MONDAY_FIRST | |
534 | ? wxDateTime::Mon : wxDateTime::Sun); | |
535 | ||
536 | if ( GetWindowStyle() & wxCAL_SHOW_SURROUNDING_WEEKS ) | |
537 | { | |
538 | // We want to offset the calendar if we start on the first.. | |
539 | if ( date.GetDay() == 1 ) | |
540 | { | |
541 | date -= wxDateSpan::Week(); | |
542 | } | |
543 | } | |
544 | ||
545 | return date; | |
546 | } | |
547 | ||
548 | bool wxCalendarCtrl::IsDateShown(const wxDateTime& date) const | |
549 | { | |
550 | if ( !(GetWindowStyle() & wxCAL_SHOW_SURROUNDING_WEEKS) ) | |
551 | { | |
552 | return date.GetMonth() == m_date.GetMonth(); | |
553 | } | |
554 | else | |
555 | { | |
556 | return TRUE; | |
557 | } | |
558 | } | |
559 | ||
560 | bool wxCalendarCtrl::IsDateInRange(const wxDateTime& date) const | |
561 | { | |
562 | bool retval = TRUE; | |
563 | // Check if the given date is in the range specified | |
564 | retval = ( ( ( m_lowdate.IsValid() ) ? ( date >= m_lowdate ) : TRUE ) | |
565 | && ( ( m_highdate.IsValid() ) ? ( date <= m_highdate ) : TRUE ) ); | |
566 | return retval; | |
567 | } | |
568 | ||
569 | bool wxCalendarCtrl::ChangeYear(wxDateTime* target) const | |
570 | { | |
571 | bool retval = FALSE; | |
572 | ||
573 | if ( !(IsDateInRange(*target)) ) | |
574 | { | |
575 | if ( target->GetYear() < m_date.GetYear() ) | |
576 | { | |
577 | if ( target->GetYear() >= GetLowerDateLimit().GetYear() ) | |
578 | { | |
579 | *target = GetLowerDateLimit(); | |
580 | retval = TRUE; | |
581 | } | |
582 | else | |
583 | { | |
584 | *target = m_date; | |
585 | } | |
586 | } | |
587 | else | |
588 | { | |
589 | if ( target->GetYear() <= GetUpperDateLimit().GetYear() ) | |
590 | { | |
591 | *target = GetUpperDateLimit(); | |
592 | retval = TRUE; | |
593 | } | |
594 | else | |
595 | { | |
596 | *target = m_date; | |
597 | } | |
598 | } | |
599 | } | |
600 | else | |
601 | { | |
602 | retval = TRUE; | |
603 | } | |
604 | ||
605 | return retval; | |
606 | } | |
607 | ||
608 | bool wxCalendarCtrl::ChangeMonth(wxDateTime* target) const | |
609 | { | |
610 | bool retval = TRUE; | |
611 | ||
612 | if ( !(IsDateInRange(*target)) ) | |
613 | { | |
614 | retval = FALSE; | |
615 | ||
616 | if ( target->GetMonth() < m_date.GetMonth() ) | |
617 | { | |
618 | *target = GetLowerDateLimit(); | |
619 | } | |
620 | else | |
621 | { | |
622 | *target = GetUpperDateLimit(); | |
623 | } | |
624 | } | |
625 | ||
626 | return retval; | |
627 | } | |
628 | ||
629 | size_t wxCalendarCtrl::GetWeek(const wxDateTime& date) const | |
630 | { | |
631 | size_t retval = date.GetWeekOfMonth(GetWindowStyle() & wxCAL_MONDAY_FIRST | |
632 | ? wxDateTime::Monday_First | |
633 | : wxDateTime::Sunday_First); | |
634 | ||
635 | if ( (GetWindowStyle() & wxCAL_SHOW_SURROUNDING_WEEKS) ) | |
636 | { | |
637 | // we need to offset an extra week if we "start" on the 1st of the month | |
638 | wxDateTime::Tm tm = date.GetTm(); | |
639 | ||
640 | wxDateTime datetest = wxDateTime(1, tm.mon, tm.year); | |
641 | ||
642 | // rewind back | |
643 | datetest.SetToPrevWeekDay(GetWindowStyle() & wxCAL_MONDAY_FIRST | |
644 | ? wxDateTime::Mon : wxDateTime::Sun); | |
645 | ||
646 | if ( datetest.GetDay() == 1 ) | |
647 | { | |
648 | retval += 1; | |
649 | } | |
650 | } | |
651 | ||
652 | return retval; | |
653 | } | |
654 | ||
655 | // ---------------------------------------------------------------------------- | |
656 | // size management | |
657 | // ---------------------------------------------------------------------------- | |
658 | ||
659 | // this is a composite control and it must arrange its parts each time its | |
660 | // size or position changes: the combobox and spinctrl are along the top of | |
661 | // the available area and the calendar takes up therest of the space | |
662 | ||
663 | // the static controls are supposed to be always smaller than combo/spin so we | |
664 | // always use the latter for size calculations and position the static to take | |
665 | // the same space | |
666 | ||
667 | // the constants used for the layout | |
668 | #define VERT_MARGIN 5 // distance between combo and calendar | |
669 | #define HORZ_MARGIN 15 // spin | |
670 | ||
671 | wxSize wxCalendarCtrl::DoGetBestSize() const | |
672 | { | |
673 | // calc the size of the calendar | |
674 | ((wxCalendarCtrl *)this)->RecalcGeometry(); // const_cast | |
675 | ||
676 | wxCoord width = 7*m_widthCol, | |
677 | height = 7*m_heightRow + m_rowOffset; | |
678 | ||
679 | // the combobox doesn't report its height correctly (it returns the | |
680 | // height including the drop down list) so don't use it | |
681 | ||
682 | if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ) | |
683 | { | |
684 | height += VERT_MARGIN + m_spinYear->GetBestSize().y; | |
685 | } | |
686 | else | |
687 | { | |
688 | height += VERT_MARGIN; | |
689 | } | |
690 | ||
691 | // if ( GetWindowStyle() & (wxRAISED_BORDER | wxSUNKEN_BORDER) ) // This doesn't work. Default is wxBORDER_DEFAULT (0) | |
692 | if ( !(GetWindowStyle() & wxBORDER_NONE) ) | |
693 | { | |
694 | // the border would clip the last line otherwise | |
695 | height += 6; | |
696 | width += 4; | |
697 | } | |
698 | ||
699 | return wxSize(width, height); | |
700 | } | |
701 | ||
702 | void wxCalendarCtrl::DoSetSize(int x, int y, | |
703 | int width, int height, | |
704 | int sizeFlags) | |
705 | { | |
706 | wxControl::DoSetSize(x, y, width, height, sizeFlags); | |
707 | } | |
708 | ||
709 | void wxCalendarCtrl::DoMoveWindow(int x, int y, int width, int height) | |
710 | { | |
711 | int xDiff = 0; | |
712 | int yDiff = 0; | |
713 | ||
714 | if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ) | |
715 | { | |
716 | wxSize sizeCombo = m_comboMonth->GetSize(); | |
717 | wxSize sizeStatic = m_staticMonth->GetSize(); | |
718 | ||
719 | int dy = (sizeCombo.y - sizeStatic.y) / 2; | |
720 | ||
721 | m_comboMonth->Move(x, y); | |
722 | m_staticMonth->SetSize(x, y + dy, sizeCombo.x, sizeStatic.y); | |
723 | ||
724 | xDiff = sizeCombo.x + HORZ_MARGIN; | |
725 | ||
726 | m_spinYear->SetSize(x + xDiff, y, width - xDiff, sizeCombo.y); | |
727 | m_staticYear->SetSize(x + xDiff, y + dy, width - xDiff, sizeStatic.y); | |
728 | ||
729 | wxSize sizeSpin = m_spinYear->GetSize(); | |
730 | yDiff = wxMax(sizeSpin.y, sizeCombo.y) + VERT_MARGIN; | |
731 | } | |
732 | ||
733 | wxControl::DoMoveWindow(x, y + yDiff, width, height - yDiff); | |
734 | } | |
735 | ||
736 | void wxCalendarCtrl::DoGetPosition(int *x, int *y) const | |
737 | { | |
738 | wxControl::DoGetPosition(x, y); | |
739 | ||
740 | if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ) | |
741 | { | |
742 | // our real top corner is not in this position | |
743 | if ( y ) | |
744 | { | |
745 | *y -= GetMonthControl()->GetSize().y + VERT_MARGIN; | |
746 | } | |
747 | } | |
748 | } | |
749 | ||
750 | void wxCalendarCtrl::DoGetSize(int *width, int *height) const | |
751 | { | |
752 | wxControl::DoGetSize(width, height); | |
753 | ||
754 | if ( !(GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ) | |
755 | { | |
756 | // our real height is bigger | |
757 | if ( height ) | |
758 | { | |
759 | *height += GetMonthControl()->GetSize().y + VERT_MARGIN; | |
760 | } | |
761 | } | |
762 | } | |
763 | ||
764 | void wxCalendarCtrl::RecalcGeometry() | |
765 | { | |
766 | if ( m_widthCol != 0 ) | |
767 | return; | |
768 | ||
769 | wxClientDC dc(this); | |
770 | ||
771 | dc.SetFont(m_font); | |
772 | ||
773 | // determine the column width (we assume that the weekday names are always | |
774 | // wider (in any language) than the numbers) | |
775 | m_widthCol = 0; | |
776 | wxDateTime::WeekDay wd; | |
777 | for ( wd = wxDateTime::Sun; wd < wxDateTime::Inv_WeekDay; wxNextWDay(wd) ) | |
778 | { | |
779 | wxCoord width; | |
780 | dc.GetTextExtent(m_weekdays[wd], &width, &m_heightRow); | |
781 | if ( width > m_widthCol ) | |
782 | { | |
783 | m_widthCol = width; | |
784 | } | |
785 | } | |
786 | ||
787 | // leave some margins | |
788 | m_widthCol += 2; | |
789 | m_heightRow += 2; | |
790 | ||
791 | m_rowOffset = (GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ? m_heightRow : 0; // conditional in relation to style | |
792 | } | |
793 | ||
794 | // ---------------------------------------------------------------------------- | |
795 | // drawing | |
796 | // ---------------------------------------------------------------------------- | |
797 | ||
798 | void wxCalendarCtrl::OnPaint(wxPaintEvent& WXUNUSED(event)) | |
799 | { | |
800 | wxPaintDC dc(this); | |
801 | ||
802 | dc.SetFont(m_font); | |
803 | ||
804 | RecalcGeometry(); | |
805 | ||
806 | #if DEBUG_PAINT | |
807 | wxLogDebug("--- starting to paint, selection: %s, week %u\n", | |
808 | m_date.Format("%a %d-%m-%Y %H:%M:%S").c_str(), | |
809 | GetWeek(m_date)); | |
810 | #endif | |
811 | ||
812 | wxCoord y = 0; | |
813 | ||
814 | ///////////////////////////////////////////////////////////////////////////////////////// | |
815 | ||
816 | if ( (GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ) | |
817 | { | |
818 | // draw the sequential month-selector | |
819 | ||
820 | dc.SetBackgroundMode(wxTRANSPARENT); | |
821 | dc.SetTextForeground(*wxBLACK); | |
822 | dc.SetBrush(wxBrush(m_colHeaderBg, wxSOLID)); | |
823 | dc.SetPen(wxPen(m_colHeaderBg, 1, wxSOLID)); | |
824 | dc.DrawRectangle(0, y, 7*m_widthCol, m_heightRow); | |
825 | ||
826 | // Get extent of month-name + year | |
827 | wxCoord monthw, monthh; | |
828 | wxString headertext = m_date.Format(wxT("%B %Y")); | |
829 | dc.GetTextExtent(headertext, &monthw, &monthh); | |
830 | ||
831 | // draw month-name centered above weekdays | |
832 | wxCoord monthx = ((m_widthCol * 7) - monthw) / 2; | |
833 | wxCoord monthy = ((m_heightRow - monthh) / 2) + y; | |
834 | dc.DrawText(headertext, monthx, monthy); | |
835 | ||
836 | // calculate the "month-arrows" | |
837 | wxPoint leftarrow[3]; | |
838 | wxPoint rightarrow[3]; | |
839 | ||
840 | int arrowheight = monthh / 2; | |
841 | ||
842 | leftarrow[0] = wxPoint(0, arrowheight / 2); | |
843 | leftarrow[1] = wxPoint(arrowheight / 2, 0); | |
844 | leftarrow[2] = wxPoint(arrowheight / 2, arrowheight - 1); | |
845 | ||
846 | rightarrow[0] = wxPoint(0, 0); | |
847 | rightarrow[1] = wxPoint(arrowheight / 2, arrowheight / 2); | |
848 | rightarrow[2] = wxPoint(0, arrowheight - 1); | |
849 | ||
850 | // draw the "month-arrows" | |
851 | ||
852 | wxCoord arrowy = (m_heightRow - arrowheight) / 2; | |
853 | wxCoord larrowx = (m_widthCol - (arrowheight / 2)) / 2; | |
854 | wxCoord rarrowx = ((m_widthCol - (arrowheight / 2)) / 2) + m_widthCol*6; | |
855 | m_leftArrowRect = wxRect(0, 0, 0, 0); | |
856 | m_rightArrowRect = wxRect(0, 0, 0, 0); | |
857 | ||
858 | if ( AllowMonthChange() ) | |
859 | { | |
860 | wxDateTime ldpm = wxDateTime(1,m_date.GetMonth(), m_date.GetYear()) - wxDateSpan::Day(); // last day prev month | |
861 | // Check if range permits change | |
862 | if ( IsDateInRange(ldpm) && ( ( ldpm.GetYear() == m_date.GetYear() ) ? TRUE : AllowYearChange() ) ) | |
863 | { | |
864 | m_leftArrowRect = wxRect(larrowx - 3, arrowy - 3, (arrowheight / 2) + 8, (arrowheight + 6)); | |
865 | dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); | |
866 | dc.SetPen(wxPen(*wxBLACK, 1, wxSOLID)); | |
867 | dc.DrawPolygon(3, leftarrow, larrowx , arrowy, wxWINDING_RULE); | |
868 | dc.SetBrush(*wxTRANSPARENT_BRUSH); | |
869 | dc.DrawRectangle(m_leftArrowRect); | |
870 | } | |
871 | wxDateTime fdnm = wxDateTime(1,m_date.GetMonth(), m_date.GetYear()) + wxDateSpan::Month(); // first day next month | |
872 | if ( IsDateInRange(fdnm) && ( ( fdnm.GetYear() == m_date.GetYear() ) ? TRUE : AllowYearChange() ) ) | |
873 | { | |
874 | m_rightArrowRect = wxRect(rarrowx - 4, arrowy - 3, (arrowheight / 2) + 8, (arrowheight + 6)); | |
875 | dc.SetBrush(wxBrush(*wxBLACK, wxSOLID)); | |
876 | dc.SetPen(wxPen(*wxBLACK, 1, wxSOLID)); | |
877 | dc.DrawPolygon(3, rightarrow, rarrowx , arrowy, wxWINDING_RULE); | |
878 | dc.SetBrush(*wxTRANSPARENT_BRUSH); | |
879 | dc.DrawRectangle(m_rightArrowRect); | |
880 | } | |
881 | } | |
882 | ||
883 | y += m_heightRow; | |
884 | } | |
885 | ||
886 | ///////////////////////////////////////////////////////////////////////////////////////// | |
887 | ||
888 | // first draw the week days | |
889 | if ( IsExposed(0, y, 7*m_widthCol, m_heightRow) ) | |
890 | { | |
891 | #if DEBUG_PAINT | |
892 | wxLogDebug("painting the header"); | |
893 | #endif | |
894 | ||
895 | dc.SetBackgroundMode(wxTRANSPARENT); | |
896 | dc.SetTextForeground(m_colHeaderFg); | |
897 | dc.SetBrush(wxBrush(m_colHeaderBg, wxSOLID)); | |
898 | dc.SetPen(wxPen(m_colHeaderBg, 1, wxSOLID)); | |
899 | dc.DrawRectangle(0, y, 7*m_widthCol, m_heightRow); | |
900 | ||
901 | bool startOnMonday = (GetWindowStyle() & wxCAL_MONDAY_FIRST) != 0; | |
902 | for ( size_t wd = 0; wd < 7; wd++ ) | |
903 | { | |
904 | size_t n; | |
905 | if ( startOnMonday ) | |
906 | n = wd == 6 ? 0 : wd + 1; | |
907 | else | |
908 | n = wd; | |
909 | wxCoord dayw, dayh; | |
910 | dc.GetTextExtent(m_weekdays[n], &dayw, &dayh); | |
911 | // dc.DrawText(m_weekdays[n], wd*m_widthCol + 1, y); | |
912 | dc.DrawText(m_weekdays[n], (wd*m_widthCol) + ((m_widthCol- dayw) / 2), y); // center the day-name | |
913 | } | |
914 | } | |
915 | ||
916 | // then the calendar itself | |
917 | dc.SetTextForeground(*wxBLACK); | |
918 | //dc.SetFont(*wxNORMAL_FONT); | |
919 | ||
920 | y += m_heightRow; | |
921 | wxDateTime date = GetStartDate(); | |
922 | ||
923 | #if DEBUG_PAINT | |
924 | wxLogDebug("starting calendar from %s\n", | |
925 | date.Format("%a %d-%m-%Y %H:%M:%S").c_str()); | |
926 | #endif | |
927 | ||
928 | dc.SetBackgroundMode(wxSOLID); | |
929 | for ( size_t nWeek = 1; nWeek <= 6; nWeek++, y += m_heightRow ) | |
930 | { | |
931 | // if the update region doesn't intersect this row, don't paint it | |
932 | if ( !IsExposed(0, y, 7*m_widthCol, m_heightRow - 1) ) | |
933 | { | |
934 | date += wxDateSpan::Week(); | |
935 | ||
936 | continue; | |
937 | } | |
938 | ||
939 | #if DEBUG_PAINT | |
940 | wxLogDebug("painting week %d at y = %d\n", nWeek, y); | |
941 | #endif | |
942 | ||
943 | for ( size_t wd = 0; wd < 7; wd++ ) | |
944 | { | |
945 | if ( IsDateShown(date) ) | |
946 | { | |
947 | // don't use wxDate::Format() which prepends 0s | |
948 | unsigned int day = date.GetDay(); | |
949 | wxString dayStr = wxString::Format(_T("%u"), day); | |
950 | wxCoord width; | |
951 | dc.GetTextExtent(dayStr, &width, (wxCoord *)NULL); | |
952 | ||
953 | bool changedColours = FALSE, | |
954 | changedFont = FALSE; | |
955 | ||
956 | bool isSel = FALSE; | |
957 | wxCalendarDateAttr *attr = NULL; | |
958 | ||
959 | if ( date.GetMonth() != m_date.GetMonth() || !IsDateInRange(date) ) | |
960 | { | |
961 | // surrounding week or out-of-range | |
962 | // draw "disabled" | |
963 | dc.SetTextForeground(*wxLIGHT_GREY); | |
964 | changedColours = TRUE; | |
965 | } | |
966 | else | |
967 | { | |
968 | isSel = date.IsSameDate(m_date); | |
969 | attr = m_attrs[day - 1]; | |
970 | ||
971 | if ( isSel ) | |
972 | { | |
973 | dc.SetTextForeground(m_colHighlightFg); | |
974 | dc.SetTextBackground(m_colHighlightBg); | |
975 | ||
976 | changedColours = TRUE; | |
977 | } | |
978 | else if ( attr ) | |
979 | { | |
980 | wxColour colFg, colBg; | |
981 | ||
982 | if ( attr->IsHoliday() ) | |
983 | { | |
984 | colFg = m_colHolidayFg; | |
985 | colBg = m_colHolidayBg; | |
986 | } | |
987 | else | |
988 | { | |
989 | colFg = attr->GetTextColour(); | |
990 | colBg = attr->GetBackgroundColour(); | |
991 | } | |
992 | ||
993 | if ( colFg.Ok() ) | |
994 | { | |
995 | dc.SetTextForeground(colFg); | |
996 | changedColours = TRUE; | |
997 | } | |
998 | ||
999 | if ( colBg.Ok() ) | |
1000 | { | |
1001 | dc.SetTextBackground(colBg); | |
1002 | changedColours = TRUE; | |
1003 | } | |
1004 | ||
1005 | if ( attr->HasFont() ) | |
1006 | { | |
1007 | dc.SetFont(attr->GetFont()); | |
1008 | changedFont = TRUE; | |
1009 | } | |
1010 | } | |
1011 | } | |
1012 | ||
1013 | wxCoord x = wd*m_widthCol + (m_widthCol - width) / 2; | |
1014 | dc.DrawText(dayStr, x, y + 1); | |
1015 | ||
1016 | if ( !isSel && attr && attr->HasBorder() ) | |
1017 | { | |
1018 | wxColour colBorder; | |
1019 | if ( attr->HasBorderColour() ) | |
1020 | { | |
1021 | colBorder = attr->GetBorderColour(); | |
1022 | } | |
1023 | else | |
1024 | { | |
1025 | colBorder = m_foregroundColour; | |
1026 | } | |
1027 | ||
1028 | wxPen pen(colBorder, 1, wxSOLID); | |
1029 | dc.SetPen(pen); | |
1030 | dc.SetBrush(*wxTRANSPARENT_BRUSH); | |
1031 | ||
1032 | switch ( attr->GetBorder() ) | |
1033 | { | |
1034 | case wxCAL_BORDER_SQUARE: | |
1035 | dc.DrawRectangle(x - 2, y, | |
1036 | width + 4, m_heightRow); | |
1037 | break; | |
1038 | ||
1039 | case wxCAL_BORDER_ROUND: | |
1040 | dc.DrawEllipse(x - 2, y, | |
1041 | width + 4, m_heightRow); | |
1042 | break; | |
1043 | ||
1044 | default: | |
1045 | wxFAIL_MSG(_T("unknown border type")); | |
1046 | } | |
1047 | } | |
1048 | ||
1049 | if ( changedColours ) | |
1050 | { | |
1051 | dc.SetTextForeground(m_foregroundColour); | |
1052 | dc.SetTextBackground(m_backgroundColour); | |
1053 | } | |
1054 | ||
1055 | if ( changedFont ) | |
1056 | { | |
1057 | dc.SetFont(m_font); | |
1058 | } | |
1059 | } | |
1060 | //else: just don't draw it | |
1061 | ||
1062 | date += wxDateSpan::Day(); | |
1063 | } | |
1064 | } | |
1065 | ||
1066 | // Greying out out-of-range background | |
1067 | bool showSurrounding = (GetWindowStyle() & wxCAL_SHOW_SURROUNDING_WEEKS) != 0; | |
1068 | ||
1069 | date = ( showSurrounding ) ? GetStartDate() : wxDateTime(1, m_date.GetMonth(), m_date.GetYear()); | |
1070 | if ( !IsDateInRange(date) ) | |
1071 | { | |
1072 | wxDateTime firstOOR = GetLowerDateLimit() - wxDateSpan::Day(); // first out-of-range | |
1073 | ||
1074 | wxBrush oorbrush = *wxLIGHT_GREY_BRUSH; | |
1075 | oorbrush.SetStyle(wxFDIAGONAL_HATCH); | |
1076 | ||
1077 | HighlightRange(&dc, date, firstOOR, wxTRANSPARENT_PEN, &oorbrush); | |
1078 | } | |
1079 | ||
1080 | date = ( showSurrounding ) ? GetStartDate() + wxDateSpan::Weeks(6) - wxDateSpan::Day() : wxDateTime().SetToLastMonthDay(m_date.GetMonth(), m_date.GetYear()); | |
1081 | if ( !IsDateInRange(date) ) | |
1082 | { | |
1083 | wxDateTime firstOOR = GetUpperDateLimit() + wxDateSpan::Day(); // first out-of-range | |
1084 | ||
1085 | wxBrush oorbrush = *wxLIGHT_GREY_BRUSH; | |
1086 | oorbrush.SetStyle(wxFDIAGONAL_HATCH); | |
1087 | ||
1088 | HighlightRange(&dc, firstOOR, date, wxTRANSPARENT_PEN, &oorbrush); | |
1089 | } | |
1090 | ||
1091 | #if DEBUG_PAINT | |
1092 | wxLogDebug("+++ finished painting"); | |
1093 | #endif | |
1094 | } | |
1095 | ||
1096 | void wxCalendarCtrl::RefreshDate(const wxDateTime& date) | |
1097 | { | |
1098 | RecalcGeometry(); | |
1099 | ||
1100 | wxRect rect; | |
1101 | ||
1102 | // always refresh the whole row at once because our OnPaint() will draw | |
1103 | // the whole row anyhow - and this allows the small optimisation in | |
1104 | // OnClick() below to work | |
1105 | rect.x = 0; | |
1106 | ||
1107 | rect.y = (m_heightRow * GetWeek(date)) + m_rowOffset; | |
1108 | ||
1109 | rect.width = 7*m_widthCol; | |
1110 | rect.height = m_heightRow; | |
1111 | ||
1112 | #ifdef __WXMSW__ | |
1113 | // VZ: for some reason, the selected date seems to occupy more space under | |
1114 | // MSW - this is probably some bug in the font size calculations, but I | |
1115 | // don't know where exactly. This fix is ugly and leads to more | |
1116 | // refreshes than really needed, but without it the selected days | |
1117 | // leaves even more ugly underscores on screen. | |
1118 | rect.Inflate(0, 1); | |
1119 | #endif // MSW | |
1120 | ||
1121 | #if DEBUG_PAINT | |
1122 | wxLogDebug("*** refreshing week %d at (%d, %d)-(%d, %d)\n", | |
1123 | GetWeek(date), | |
1124 | rect.x, rect.y, | |
1125 | rect.x + rect.width, rect.y + rect.height); | |
1126 | #endif | |
1127 | ||
1128 | Refresh(TRUE, &rect); | |
1129 | } | |
1130 | ||
1131 | void wxCalendarCtrl::HighlightRange(wxPaintDC* pDC, const wxDateTime& fromdate, const wxDateTime& todate, wxPen* pPen, wxBrush* pBrush) | |
1132 | { | |
1133 | // Highlights the given range using pen and brush | |
1134 | // Does nothing if todate < fromdate | |
1135 | ||
1136 | ||
1137 | #if DEBUG_PAINT | |
1138 | wxLogDebug("+++ HighlightRange: (%s) - (%s) +++", fromdate.Format("%d %m %Y"), todate.Format("%d %m %Y")); | |
1139 | #endif | |
1140 | ||
1141 | if ( todate >= fromdate ) | |
1142 | { | |
1143 | // do stuff | |
1144 | // date-coordinates | |
1145 | int fd, fw; | |
1146 | int td, tw; | |
1147 | ||
1148 | // implicit: both dates must be currently shown - checked by GetDateCoord | |
1149 | if ( GetDateCoord(fromdate, &fd, &fw) && GetDateCoord(todate, &td, &tw) ) | |
1150 | { | |
1151 | #if DEBUG_PAINT | |
1152 | wxLogDebug("Highlight range: (%i, %i) - (%i, %i)", fd, fw, td, tw); | |
1153 | #endif | |
1154 | if ( ( (tw - fw) == 1 ) && ( td < fd ) ) | |
1155 | { | |
1156 | // special case: interval 7 days or less not in same week | |
1157 | // split in two seperate intervals | |
1158 | wxDateTime tfd = fromdate + wxDateSpan::Days(7-fd); | |
1159 | wxDateTime ftd = tfd + wxDateSpan::Day(); | |
1160 | #if DEBUG_PAINT | |
1161 | wxLogDebug("Highlight: Seperate segments"); | |
1162 | #endif | |
1163 | // draw seperately | |
1164 | HighlightRange(pDC, fromdate, tfd, pPen, pBrush); | |
1165 | HighlightRange(pDC, ftd, todate, pPen, pBrush); | |
1166 | } | |
1167 | else | |
1168 | { | |
1169 | int numpoints; | |
1170 | wxPoint corners[8]; // potentially 8 corners in polygon | |
1171 | ||
1172 | if ( fw == tw ) | |
1173 | { | |
1174 | // simple case: same week | |
1175 | numpoints = 4; | |
1176 | corners[0] = wxPoint((fd - 1) * m_widthCol, (fw * m_heightRow) + m_rowOffset); | |
1177 | corners[1] = wxPoint((fd - 1) * m_widthCol, ((fw + 1 ) * m_heightRow) + m_rowOffset); | |
1178 | corners[2] = wxPoint(td * m_widthCol, ((tw + 1) * m_heightRow) + m_rowOffset); | |
1179 | corners[3] = wxPoint(td * m_widthCol, (tw * m_heightRow) + m_rowOffset); | |
1180 | } | |
1181 | else | |
1182 | { | |
1183 | int cidx = 0; | |
1184 | // "complex" polygon | |
1185 | corners[cidx] = wxPoint((fd - 1) * m_widthCol, (fw * m_heightRow) + m_rowOffset); cidx++; | |
1186 | ||
1187 | if ( fd > 1 ) | |
1188 | { | |
1189 | corners[cidx] = wxPoint((fd - 1) * m_widthCol, ((fw + 1) * m_heightRow) + m_rowOffset); cidx++; | |
1190 | corners[cidx] = wxPoint(0, ((fw + 1) * m_heightRow) + m_rowOffset); cidx++; | |
1191 | } | |
1192 | ||
1193 | corners[cidx] = wxPoint(0, ((tw + 1) * m_heightRow) + m_rowOffset); cidx++; | |
1194 | corners[cidx] = wxPoint(td * m_widthCol, ((tw + 1) * m_heightRow) + m_rowOffset); cidx++; | |
1195 | ||
1196 | if ( td < 7 ) | |
1197 | { | |
1198 | corners[cidx] = wxPoint(td * m_widthCol, (tw * m_heightRow) + m_rowOffset); cidx++; | |
1199 | corners[cidx] = wxPoint(7 * m_widthCol, (tw * m_heightRow) + m_rowOffset); cidx++; | |
1200 | } | |
1201 | ||
1202 | corners[cidx] = wxPoint(7 * m_widthCol, (fw * m_heightRow) + m_rowOffset); cidx++; | |
1203 | ||
1204 | numpoints = cidx; | |
1205 | } | |
1206 | ||
1207 | // draw the polygon | |
1208 | pDC->SetBrush(*pBrush); | |
1209 | pDC->SetPen(*pPen); | |
1210 | pDC->DrawPolygon(numpoints, corners); | |
1211 | } | |
1212 | } | |
1213 | } | |
1214 | // else do nothing | |
1215 | #if DEBUG_PAINT | |
1216 | wxLogDebug("--- HighlightRange ---"); | |
1217 | #endif | |
1218 | } | |
1219 | ||
1220 | bool wxCalendarCtrl::GetDateCoord(const wxDateTime& date, int *day, int *week) const | |
1221 | { | |
1222 | bool retval = TRUE; | |
1223 | ||
1224 | #if DEBUG_PAINT | |
1225 | wxLogDebug("+++ GetDateCoord: (%s) +++", date.Format("%d %m %Y")); | |
1226 | #endif | |
1227 | ||
1228 | if ( IsDateShown(date) ) | |
1229 | { | |
1230 | bool startOnMonday = ( GetWindowStyle() & wxCAL_MONDAY_FIRST ) != 0; | |
1231 | ||
1232 | // Find day | |
1233 | *day = date.GetWeekDay(); | |
1234 | ||
1235 | if ( *day == 0 ) // sunday | |
1236 | { | |
1237 | *day = ( startOnMonday ) ? 7 : 1; | |
1238 | } | |
1239 | else | |
1240 | { | |
1241 | day += ( startOnMonday ) ? 0 : 1; | |
1242 | } | |
1243 | ||
1244 | int targetmonth = date.GetMonth() + (12 * date.GetYear()); | |
1245 | int thismonth = m_date.GetMonth() + (12 * m_date.GetYear()); | |
1246 | ||
1247 | // Find week | |
1248 | if ( targetmonth == thismonth ) | |
1249 | { | |
1250 | *week = GetWeek(date); | |
1251 | } | |
1252 | else | |
1253 | { | |
1254 | if ( targetmonth < thismonth ) | |
1255 | { | |
1256 | *week = 1; // trivial | |
1257 | } | |
1258 | else // targetmonth > thismonth | |
1259 | { | |
1260 | wxDateTime ldcm; | |
1261 | int lastweek; | |
1262 | int lastday; | |
1263 | ||
1264 | // get the datecoord of the last day in the month currently shown | |
1265 | #if DEBUG_PAINT | |
1266 | wxLogDebug(" +++ LDOM +++"); | |
1267 | #endif | |
1268 | GetDateCoord(ldcm.SetToLastMonthDay(m_date.GetMonth(), m_date.GetYear()), &lastday, &lastweek); | |
1269 | #if DEBUG_PAINT | |
1270 | wxLogDebug(" --- LDOM ---"); | |
1271 | #endif | |
1272 | ||
1273 | wxTimeSpan span = date - ldcm; | |
1274 | ||
1275 | int daysfromlast = span.GetDays(); | |
1276 | #if DEBUG_PAINT | |
1277 | wxLogDebug("daysfromlast: %i", daysfromlast); | |
1278 | #endif | |
1279 | if ( daysfromlast + lastday > 7 ) // past week boundary | |
1280 | { | |
1281 | int wholeweeks = (daysfromlast / 7); | |
1282 | *week = wholeweeks + lastweek; | |
1283 | if ( (daysfromlast - (7 * wholeweeks) + lastday) > 7 ) | |
1284 | { | |
1285 | *week += 1; | |
1286 | } | |
1287 | } | |
1288 | else | |
1289 | { | |
1290 | *week = lastweek; | |
1291 | } | |
1292 | } | |
1293 | } | |
1294 | } | |
1295 | else | |
1296 | { | |
1297 | *day = -1; | |
1298 | *week = -1; | |
1299 | retval = FALSE; | |
1300 | } | |
1301 | ||
1302 | #if DEBUG_PAINT | |
1303 | wxLogDebug("--- GetDateCoord: (%s) = (%i, %i) ---", date.Format("%d %m %Y"), *day, *week); | |
1304 | #endif | |
1305 | ||
1306 | return retval; | |
1307 | } | |
1308 | ||
1309 | // ---------------------------------------------------------------------------- | |
1310 | // mouse handling | |
1311 | // ---------------------------------------------------------------------------- | |
1312 | ||
1313 | void wxCalendarCtrl::OnDClick(wxMouseEvent& event) | |
1314 | { | |
1315 | if ( HitTest(event.GetPosition()) != wxCAL_HITTEST_DAY ) | |
1316 | { | |
1317 | event.Skip(); | |
1318 | } | |
1319 | else | |
1320 | { | |
1321 | GenerateEvent(wxEVT_CALENDAR_DOUBLECLICKED); | |
1322 | } | |
1323 | } | |
1324 | ||
1325 | void wxCalendarCtrl::OnClick(wxMouseEvent& event) | |
1326 | { | |
1327 | wxDateTime date; | |
1328 | wxDateTime::WeekDay wday; | |
1329 | switch ( HitTest(event.GetPosition(), &date, &wday) ) | |
1330 | { | |
1331 | case wxCAL_HITTEST_DAY: | |
1332 | if ( IsDateInRange(date) ) | |
1333 | { | |
1334 | ChangeDay(date); | |
1335 | ||
1336 | GenerateEvents(wxEVT_CALENDAR_DAY_CHANGED, | |
1337 | wxEVT_CALENDAR_SEL_CHANGED); | |
1338 | } | |
1339 | break; | |
1340 | ||
1341 | case wxCAL_HITTEST_HEADER: | |
1342 | { | |
1343 | wxCalendarEvent event(this, wxEVT_CALENDAR_WEEKDAY_CLICKED); | |
1344 | event.m_wday = wday; | |
1345 | (void)GetEventHandler()->ProcessEvent(event); | |
1346 | } | |
1347 | break; | |
1348 | ||
1349 | case wxCAL_HITTEST_DECMONTH: | |
1350 | case wxCAL_HITTEST_INCMONTH: | |
1351 | case wxCAL_HITTEST_SURROUNDING_WEEK: | |
1352 | SetDateAndNotify(date); // we probably only want to refresh the control. No notification.. (maybe as an option?) | |
1353 | break; | |
1354 | ||
1355 | default: | |
1356 | wxFAIL_MSG(_T("unknown hittest code")); | |
1357 | // fall through | |
1358 | ||
1359 | case wxCAL_HITTEST_NOWHERE: | |
1360 | event.Skip(); | |
1361 | break; | |
1362 | } | |
1363 | } | |
1364 | ||
1365 | wxCalendarHitTestResult wxCalendarCtrl::HitTest(const wxPoint& pos, | |
1366 | wxDateTime *date, | |
1367 | wxDateTime::WeekDay *wd) | |
1368 | { | |
1369 | RecalcGeometry(); | |
1370 | ||
1371 | wxCoord y = pos.y; | |
1372 | ||
1373 | /////////////////////////////////////////////////////////////////////////////////////////////////////// | |
1374 | if ( (GetWindowStyle() & wxCAL_SEQUENTIAL_MONTH_SELECTION) ) | |
1375 | { | |
1376 | // Header: month | |
1377 | ||
1378 | // we need to find out if the hit is on left arrow, on month or on right arrow | |
1379 | // left arrow? | |
1380 | if ( wxRegion(m_leftArrowRect).Contains(pos) == wxInRegion ) | |
1381 | { | |
1382 | if ( date ) | |
1383 | { | |
1384 | if ( IsDateInRange(m_date - wxDateSpan::Month()) ) | |
1385 | { | |
1386 | *date = m_date - wxDateSpan::Month(); | |
1387 | } | |
1388 | else | |
1389 | { | |
1390 | *date = GetLowerDateLimit(); | |
1391 | } | |
1392 | } | |
1393 | ||
1394 | return wxCAL_HITTEST_DECMONTH; | |
1395 | } | |
1396 | ||
1397 | if ( wxRegion(m_rightArrowRect).Contains(pos) == wxInRegion ) | |
1398 | { | |
1399 | if ( date ) | |
1400 | { | |
1401 | if ( IsDateInRange(m_date + wxDateSpan::Month()) ) | |
1402 | { | |
1403 | *date = m_date + wxDateSpan::Month(); | |
1404 | } | |
1405 | else | |
1406 | { | |
1407 | *date = GetUpperDateLimit(); | |
1408 | } | |
1409 | } | |
1410 | ||
1411 | return wxCAL_HITTEST_INCMONTH; | |
1412 | } | |
1413 | ||
1414 | } | |
1415 | ||
1416 | /////////////////////////////////////////////////////////////////////////////////////////////////////// | |
1417 | // Header: Days | |
1418 | int wday = pos.x / m_widthCol; | |
1419 | // if ( y < m_heightRow ) | |
1420 | if ( y < (m_heightRow + m_rowOffset) ) | |
1421 | { | |
1422 | if ( y > m_rowOffset ) | |
1423 | { | |
1424 | if ( wd ) | |
1425 | { | |
1426 | if ( GetWindowStyle() & wxCAL_MONDAY_FIRST ) | |
1427 | { | |
1428 | wday = wday == 6 ? 0 : wday + 1; | |
1429 | } | |
1430 | ||
1431 | *wd = (wxDateTime::WeekDay)wday; | |
1432 | } | |
1433 | ||
1434 | return wxCAL_HITTEST_HEADER; | |
1435 | } | |
1436 | else | |
1437 | { | |
1438 | return wxCAL_HITTEST_NOWHERE; | |
1439 | } | |
1440 | } | |
1441 | ||
1442 | // int week = (y - m_heightRow) / m_heightRow; | |
1443 | int week = (y - (m_heightRow + m_rowOffset)) / m_heightRow; | |
1444 | if ( week >= 6 || wday >= 7 ) | |
1445 | { | |
1446 | return wxCAL_HITTEST_NOWHERE; | |
1447 | } | |
1448 | ||
1449 | wxDateTime dt = GetStartDate() + wxDateSpan::Days(7*week + wday); | |
1450 | ||
1451 | if ( IsDateShown(dt) ) | |
1452 | { | |
1453 | if ( date ) | |
1454 | *date = dt; | |
1455 | ||
1456 | if ( dt.GetMonth() == m_date.GetMonth() ) | |
1457 | { | |
1458 | ||
1459 | return wxCAL_HITTEST_DAY; | |
1460 | } | |
1461 | else | |
1462 | { | |
1463 | return wxCAL_HITTEST_SURROUNDING_WEEK; | |
1464 | } | |
1465 | } | |
1466 | else | |
1467 | { | |
1468 | return wxCAL_HITTEST_NOWHERE; | |
1469 | } | |
1470 | } | |
1471 | ||
1472 | // ---------------------------------------------------------------------------- | |
1473 | // subcontrols events handling | |
1474 | // ---------------------------------------------------------------------------- | |
1475 | ||
1476 | void wxCalendarCtrl::OnMonthChange(wxCommandEvent& event) | |
1477 | { | |
1478 | wxDateTime::Tm tm = m_date.GetTm(); | |
1479 | ||
1480 | wxDateTime::Month mon = (wxDateTime::Month)event.GetInt(); | |
1481 | if ( tm.mday > wxDateTime::GetNumberOfDays(mon, tm.year) ) | |
1482 | { | |
1483 | tm.mday = wxDateTime::GetNumberOfDays(mon, tm.year); | |
1484 | } | |
1485 | ||
1486 | wxDateTime target = wxDateTime(tm.mday, mon, tm.year); | |
1487 | ||
1488 | ChangeMonth(&target); | |
1489 | SetDateAndNotify(target); | |
1490 | } | |
1491 | ||
1492 | void wxCalendarCtrl::OnYearChange(wxSpinEvent& event) | |
1493 | { | |
1494 | wxDateTime::Tm tm = m_date.GetTm(); | |
1495 | ||
1496 | int year = (int)event.GetInt(); | |
1497 | if ( tm.mday > wxDateTime::GetNumberOfDays(tm.mon, year) ) | |
1498 | { | |
1499 | tm.mday = wxDateTime::GetNumberOfDays(tm.mon, year); | |
1500 | } | |
1501 | ||
1502 | wxDateTime target = wxDateTime(tm.mday, tm.mon, year); | |
1503 | ||
1504 | if ( ChangeYear(&target) ) | |
1505 | { | |
1506 | SetDateAndNotify(target); | |
1507 | } | |
1508 | else | |
1509 | { | |
1510 | // In this case we don't want to change the date. That would put us | |
1511 | // inside the same year but a strange number of months forward/back.. | |
1512 | m_spinYear->SetValue(target.GetYear()); | |
1513 | } | |
1514 | ||
1515 | } | |
1516 | ||
1517 | // ---------------------------------------------------------------------------- | |
1518 | // keyboard interface | |
1519 | // ---------------------------------------------------------------------------- | |
1520 | ||
1521 | void wxCalendarCtrl::OnChar(wxKeyEvent& event) | |
1522 | { | |
1523 | wxDateTime target; | |
1524 | switch ( event.KeyCode() ) | |
1525 | { | |
1526 | case _T('+'): | |
1527 | case WXK_ADD: | |
1528 | target = m_date + wxDateSpan::Year(); | |
1529 | if ( ChangeYear(&target) ) | |
1530 | { | |
1531 | SetDateAndNotify(target); | |
1532 | } | |
1533 | break; | |
1534 | ||
1535 | case _T('-'): | |
1536 | case WXK_SUBTRACT: | |
1537 | target = m_date - wxDateSpan::Year(); | |
1538 | if ( ChangeYear(&target) ) | |
1539 | { | |
1540 | SetDateAndNotify(target); | |
1541 | } | |
1542 | break; | |
1543 | ||
1544 | case WXK_PRIOR: | |
1545 | target = m_date - wxDateSpan::Month(); | |
1546 | ChangeMonth(&target); | |
1547 | SetDateAndNotify(target); // always | |
1548 | break; | |
1549 | ||
1550 | case WXK_NEXT: | |
1551 | target = m_date + wxDateSpan::Month(); | |
1552 | ChangeMonth(&target); | |
1553 | SetDateAndNotify(target); // always | |
1554 | break; | |
1555 | ||
1556 | case WXK_RIGHT: | |
1557 | if ( event.ControlDown() ) | |
1558 | { | |
1559 | target = wxDateTime(m_date).SetToNextWeekDay( | |
1560 | GetWindowStyle() & wxCAL_MONDAY_FIRST | |
1561 | ? wxDateTime::Sun : wxDateTime::Sat); | |
1562 | if ( !IsDateInRange(target) ) | |
1563 | { | |
1564 | target = GetUpperDateLimit(); | |
1565 | } | |
1566 | SetDateAndNotify(target); | |
1567 | } | |
1568 | else | |
1569 | SetDateAndNotify(m_date + wxDateSpan::Day()); | |
1570 | break; | |
1571 | ||
1572 | case WXK_LEFT: | |
1573 | if ( event.ControlDown() ) | |
1574 | { | |
1575 | target = wxDateTime(m_date).SetToPrevWeekDay( | |
1576 | GetWindowStyle() & wxCAL_MONDAY_FIRST | |
1577 | ? wxDateTime::Mon : wxDateTime::Sun); | |
1578 | if ( !IsDateInRange(target) ) | |
1579 | { | |
1580 | target = GetLowerDateLimit(); | |
1581 | } | |
1582 | SetDateAndNotify(target); | |
1583 | } | |
1584 | else | |
1585 | SetDateAndNotify(m_date - wxDateSpan::Day()); | |
1586 | break; | |
1587 | ||
1588 | case WXK_UP: | |
1589 | SetDateAndNotify(m_date - wxDateSpan::Week()); | |
1590 | break; | |
1591 | ||
1592 | case WXK_DOWN: | |
1593 | SetDateAndNotify(m_date + wxDateSpan::Week()); | |
1594 | break; | |
1595 | ||
1596 | case WXK_HOME: | |
1597 | if ( event.ControlDown() ) | |
1598 | SetDateAndNotify(wxDateTime::Today()); | |
1599 | else | |
1600 | SetDateAndNotify(wxDateTime(1, m_date.GetMonth(), m_date.GetYear())); | |
1601 | break; | |
1602 | ||
1603 | case WXK_END: | |
1604 | SetDateAndNotify(wxDateTime(m_date).SetToLastMonthDay()); | |
1605 | break; | |
1606 | ||
1607 | case WXK_RETURN: | |
1608 | GenerateEvent(wxEVT_CALENDAR_DOUBLECLICKED); | |
1609 | break; | |
1610 | ||
1611 | default: | |
1612 | event.Skip(); | |
1613 | } | |
1614 | } | |
1615 | ||
1616 | // ---------------------------------------------------------------------------- | |
1617 | // holidays handling | |
1618 | // ---------------------------------------------------------------------------- | |
1619 | ||
1620 | void wxCalendarCtrl::EnableHolidayDisplay(bool display) | |
1621 | { | |
1622 | long style = GetWindowStyle(); | |
1623 | if ( display ) | |
1624 | style |= wxCAL_SHOW_HOLIDAYS; | |
1625 | else | |
1626 | style &= ~wxCAL_SHOW_HOLIDAYS; | |
1627 | ||
1628 | SetWindowStyle(style); | |
1629 | ||
1630 | if ( display ) | |
1631 | SetHolidayAttrs(); | |
1632 | else | |
1633 | ResetHolidayAttrs(); | |
1634 | ||
1635 | Refresh(); | |
1636 | } | |
1637 | ||
1638 | void wxCalendarCtrl::SetHolidayAttrs() | |
1639 | { | |
1640 | if ( GetWindowStyle() & wxCAL_SHOW_HOLIDAYS ) | |
1641 | { | |
1642 | ResetHolidayAttrs(); | |
1643 | ||
1644 | wxDateTime::Tm tm = m_date.GetTm(); | |
1645 | wxDateTime dtStart(1, tm.mon, tm.year), | |
1646 | dtEnd = dtStart.GetLastMonthDay(); | |
1647 | ||
1648 | wxDateTimeArray hol; | |
1649 | wxDateTimeHolidayAuthority::GetHolidaysInRange(dtStart, dtEnd, hol); | |
1650 | ||
1651 | size_t count = hol.GetCount(); | |
1652 | for ( size_t n = 0; n < count; n++ ) | |
1653 | { | |
1654 | SetHoliday(hol[n].GetDay()); | |
1655 | } | |
1656 | } | |
1657 | } | |
1658 | ||
1659 | void wxCalendarCtrl::SetHoliday(size_t day) | |
1660 | { | |
1661 | wxCHECK_RET( day > 0 && day < 32, _T("invalid day in SetHoliday") ); | |
1662 | ||
1663 | wxCalendarDateAttr *attr = GetAttr(day); | |
1664 | if ( !attr ) | |
1665 | { | |
1666 | attr = new wxCalendarDateAttr; | |
1667 | } | |
1668 | ||
1669 | attr->SetHoliday(TRUE); | |
1670 | ||
1671 | // can't use SetAttr() because it would delete this pointer | |
1672 | m_attrs[day - 1] = attr; | |
1673 | } | |
1674 | ||
1675 | void wxCalendarCtrl::ResetHolidayAttrs() | |
1676 | { | |
1677 | for ( size_t day = 0; day < 31; day++ ) | |
1678 | { | |
1679 | if ( m_attrs[day] ) | |
1680 | { | |
1681 | m_attrs[day]->SetHoliday(FALSE); | |
1682 | } | |
1683 | } | |
1684 | } | |
1685 | ||
1686 | // ---------------------------------------------------------------------------- | |
1687 | // wxCalendarEvent | |
1688 | // ---------------------------------------------------------------------------- | |
1689 | ||
1690 | void wxCalendarEvent::Init() | |
1691 | { | |
1692 | m_wday = wxDateTime::Inv_WeekDay; | |
1693 | } | |
1694 | ||
1695 | wxCalendarEvent::wxCalendarEvent(wxCalendarCtrl *cal, wxEventType type) | |
1696 | : wxCommandEvent(type, cal->GetId()) | |
1697 | { | |
1698 | m_date = cal->GetDate(); | |
1699 | SetEventObject(cal); | |
1700 | } | |
1701 | ||
1702 | #endif // wxUSE_CALENDARCTRL | |
1703 |