]>
Commit | Line | Data |
---|---|---|
51317496 VZ |
1 | ///////////////////////////////////////////////////////////////////////////// |
2 | // Name: wx/msw/calctrl.h | |
3 | // Purpose: wxCalendarCtrl control implementation for MSW | |
4 | // Author: Vadim Zeitlin | |
5 | // RCS-ID: $Id$ | |
6 | // Copyright: (C) 2008 Vadim Zeitlin <vadim@wxwidgets.org> | |
7 | // Licence: wxWindows licence | |
8 | ///////////////////////////////////////////////////////////////////////////// | |
9 | ||
10 | #ifndef _WX_MSW_CALCTRL_H_ | |
11 | #define _WX_MSW_CALCTRL_H_ | |
12 | ||
13 | class WXDLLIMPEXP_ADV wxCalendarCtrl : public wxCalendarCtrlBase | |
14 | { | |
15 | public: | |
82c6027b | 16 | wxCalendarCtrl() { Init(); } |
51317496 VZ |
17 | wxCalendarCtrl(wxWindow *parent, |
18 | wxWindowID id, | |
19 | const wxDateTime& date = wxDefaultDateTime, | |
20 | const wxPoint& pos = wxDefaultPosition, | |
21 | const wxSize& size = wxDefaultSize, | |
22 | long style = wxCAL_SHOW_HOLIDAYS, | |
23 | const wxString& name = wxCalendarNameStr) | |
24 | { | |
82c6027b VZ |
25 | Init(); |
26 | ||
51317496 VZ |
27 | Create(parent, id, date, pos, size, style, name); |
28 | } | |
29 | ||
30 | bool Create(wxWindow *parent, | |
31 | wxWindowID id, | |
32 | const wxDateTime& date = wxDefaultDateTime, | |
33 | const wxPoint& pos = wxDefaultPosition, | |
34 | const wxSize& size = wxDefaultSize, | |
35 | long style = wxCAL_SHOW_HOLIDAYS, | |
36 | const wxString& name = wxCalendarNameStr); | |
37 | ||
38 | virtual bool SetDate(const wxDateTime& date); | |
39 | virtual wxDateTime GetDate() const; | |
40 | ||
41 | virtual bool SetDateRange(const wxDateTime& lowerdate = wxDefaultDateTime, | |
42 | const wxDateTime& upperdate = wxDefaultDateTime); | |
43 | virtual bool GetDateRange(wxDateTime *lowerdate, wxDateTime *upperdate) const; | |
44 | ||
45 | virtual bool EnableMonthChange(bool enable = true); | |
46 | ||
47 | virtual void Mark(size_t day, bool mark); | |
6d9b6716 | 48 | virtual void SetHoliday(size_t day); |
51317496 | 49 | |
ee22a3a2 VZ |
50 | virtual wxCalendarHitTestResult HitTest(const wxPoint& pos, |
51 | wxDateTime *date = NULL, | |
52 | wxDateTime::WeekDay *wd = NULL); | |
53 | ||
db0b0942 VZ |
54 | virtual void SetWindowStyleFlag(long style); |
55 | ||
51317496 | 56 | protected: |
c24fd888 | 57 | virtual wxSize DoGetBestSize() const; |
51317496 VZ |
58 | |
59 | virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const; | |
60 | ||
61 | virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result); | |
62 | ||
3ccd1b49 | 63 | void MSWOnClick(wxMouseEvent& event); |
b3ed7020 VZ |
64 | void MSWOnDoubleClick(wxMouseEvent& event); |
65 | ||
51317496 | 66 | private: |
6d9b6716 | 67 | void Init(); |
82c6027b | 68 | |
db0b0942 | 69 | // bring the control in sync with m_marks |
82c6027b VZ |
70 | void UpdateMarks(); |
71 | ||
db0b0942 VZ |
72 | // set first day of week in the control to correspond to our |
73 | // wxCAL_MONDAY_FIRST flag | |
74 | void UpdateFirstDayOfWeek(); | |
75 | ||
6d9b6716 VZ |
76 | // reset holiday information |
77 | virtual void ResetHolidayAttrs() { m_holidays = 0; } | |
78 | ||
79 | // redisplay holidays | |
80 | virtual void RefreshHolidays() { UpdateMarks(); } | |
81 | ||
82c6027b VZ |
82 | |
83 | // current date, we need to store it instead of simply retrieving it from | |
84 | // the control as needed in order to be able to generate the correct events | |
85 | // from MSWOnNotify() | |
a4fcd589 VZ |
86 | wxDateTime m_date; |
87 | ||
82c6027b VZ |
88 | // bit field containing the state (marked or not) of all days in the month |
89 | wxUint32 m_marks; | |
90 | ||
6d9b6716 VZ |
91 | // the same but indicating whether a day is a holiday or not |
92 | wxUint32 m_holidays; | |
93 | ||
82c6027b | 94 | |
51317496 | 95 | DECLARE_DYNAMIC_CLASS(wxCalendarCtrl) |
c0c133e1 | 96 | wxDECLARE_NO_COPY_CLASS(wxCalendarCtrl); |
51317496 VZ |
97 | }; |
98 | ||
99 | #endif // _WX_MSW_CALCTRL_H_ |