]> git.saurik.com Git - wxWidgets.git/blame_incremental - include/wx/msw/calctrl.h
compilation fix for VC6 (and maybe not only): enums defined in containing class are...
[wxWidgets.git] / include / wx / msw / calctrl.h
... / ...
CommitLineData
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
13class WXDLLIMPEXP_ADV wxCalendarCtrl : public wxCalendarCtrlBase
14{
15public:
16 wxCalendarCtrl() { Init(); }
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 {
25 Init();
26
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);
48
49 virtual wxCalendarHitTestResult HitTest(const wxPoint& pos,
50 wxDateTime *date = NULL,
51 wxDateTime::WeekDay *wd = NULL);
52
53 virtual void SetWindowStyleFlag(long style);
54
55protected:
56 virtual wxSize DoGetBestSize() const;
57
58 virtual WXDWORD MSWGetStyle(long style, WXDWORD *exstyle) const;
59
60 virtual bool MSWOnNotify(int idCtrl, WXLPARAM lParam, WXLPARAM *result);
61
62 void MSWOnClick(wxMouseEvent& event);
63 void MSWOnDoubleClick(wxMouseEvent& event);
64
65private:
66 void Init() { m_marks = 0; }
67
68 // bring the control in sync with m_marks
69 void UpdateMarks();
70
71 // set first day of week in the control to correspond to our
72 // wxCAL_MONDAY_FIRST flag
73 void UpdateFirstDayOfWeek();
74
75
76 // current date, we need to store it instead of simply retrieving it from
77 // the control as needed in order to be able to generate the correct events
78 // from MSWOnNotify()
79 wxDateTime m_date;
80
81 // bit field containing the state (marked or not) of all days in the month
82 wxUint32 m_marks;
83
84
85 DECLARE_DYNAMIC_CLASS(wxCalendarCtrl)
86 DECLARE_NO_COPY_CLASS(wxCalendarCtrl)
87};
88
89#endif // _WX_MSW_CALCTRL_H_