]> git.saurik.com Git - wxWidgets.git/blob - include/wx/generic/calctrl.h
renamed BLOCK_SIZE which conflicts with a #define in a std Linux (and maybe not only...
[wxWidgets.git] / include / wx / generic / calctrl.h
1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: generic/calctrl.h
3 // Purpose: generic implementation of date-picker control
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 licence
10 ///////////////////////////////////////////////////////////////////////////////
11
12 #ifndef _WX_GENERIC_CALCTRL_H
13 #define _WX_GENERIC_CALCTRL_H
14
15 #include "wx/control.h" // the base class
16 #include "wx/dcclient.h" // for wxPaintDC
17
18 class WXDLLEXPORT wxComboBox;
19 class WXDLLEXPORT wxStaticText;
20 class WXDLLEXPORT wxSpinCtrl;
21
22 #define wxCalendarNameStr _T("CalendarCtrl")
23
24 // ----------------------------------------------------------------------------
25 // wxCalendarCtrl: a control allowing the user to pick a date interactively
26 // ----------------------------------------------------------------------------
27
28 class WXDLLIMPEXP_ADV wxCalendarCtrl : public wxControl
29 {
30 public:
31 // construction
32 wxCalendarCtrl() { Init(); }
33 wxCalendarCtrl(wxWindow *parent,
34 wxWindowID id,
35 const wxDateTime& date = wxDefaultDateTime,
36 const wxPoint& pos = wxDefaultPosition,
37 const wxSize& size = wxDefaultSize,
38 long style = wxCAL_SHOW_HOLIDAYS | wxWANTS_CHARS,
39 const wxString& name = wxCalendarNameStr);
40
41 bool Create(wxWindow *parent,
42 wxWindowID id,
43 const wxDateTime& date = wxDefaultDateTime,
44 const wxPoint& pos = wxDefaultPosition,
45 const wxSize& size = wxDefaultSize,
46 long style = wxCAL_SHOW_HOLIDAYS | wxWANTS_CHARS,
47 const wxString& name = wxCalendarNameStr);
48
49 virtual ~wxCalendarCtrl();
50
51 virtual bool Destroy();
52
53 // set/get the current date
54 // ------------------------
55
56 bool SetDate(const wxDateTime& date); // we need to be able to control if the event should be sent in SetDateAndNotify(...)
57 const wxDateTime& GetDate() const { return m_date; }
58
59 // set/get the range in which selection can occur
60 // ---------------------------------------------
61
62 bool SetLowerDateLimit(const wxDateTime& date = wxDefaultDateTime);
63 const wxDateTime& GetLowerDateLimit() const { return m_lowdate; }
64 bool SetUpperDateLimit(const wxDateTime& date = wxDefaultDateTime);
65 const wxDateTime& GetUpperDateLimit() const { return m_highdate; }
66
67 bool SetDateRange(const wxDateTime& lowerdate = wxDefaultDateTime, const wxDateTime& upperdate = wxDefaultDateTime);
68
69 // calendar mode
70 // -------------
71
72 // some calendar styles can't be changed after the control creation by
73 // just using SetWindowStyle() and Refresh() and the functions below
74 // should be used instead for them
75
76 // corresponds to wxCAL_NO_YEAR_CHANGE bit
77 void EnableYearChange(bool enable = true);
78
79 // corresponds to wxCAL_NO_MONTH_CHANGE bit
80 void EnableMonthChange(bool enable = true);
81
82 // corresponds to wxCAL_SHOW_HOLIDAYS bit
83 void EnableHolidayDisplay(bool display = true);
84
85 // customization
86 // -------------
87
88 // header colours are used for painting the weekdays at the top
89 void SetHeaderColours(const wxColour& colFg, const wxColour& colBg)
90 {
91 m_colHeaderFg = colFg;
92 m_colHeaderBg = colBg;
93 }
94
95 const wxColour& GetHeaderColourFg() const { return m_colHeaderFg; }
96 const wxColour& GetHeaderColourBg() const { return m_colHeaderBg; }
97
98 // highlight colour is used for the currently selected date
99 void SetHighlightColours(const wxColour& colFg, const wxColour& colBg)
100 {
101 m_colHighlightFg = colFg;
102 m_colHighlightBg = colBg;
103 }
104
105 const wxColour& GetHighlightColourFg() const { return m_colHighlightFg; }
106 const wxColour& GetHighlightColourBg() const { return m_colHighlightBg; }
107
108 // holiday colour is used for the holidays (if style & wxCAL_SHOW_HOLIDAYS)
109 void SetHolidayColours(const wxColour& colFg, const wxColour& colBg)
110 {
111 m_colHolidayFg = colFg;
112 m_colHolidayBg = colBg;
113 }
114
115 const wxColour& GetHolidayColourFg() const { return m_colHolidayFg; }
116 const wxColour& GetHolidayColourBg() const { return m_colHolidayBg; }
117
118 // an item without custom attributes is drawn with the default colours and
119 // font and without border, setting custom attributes allows to modify this
120 //
121 // the day parameter should be in 1..31 range, for days 29, 30, 31 the
122 // corresponding attribute is just unused if there is no such day in the
123 // current month
124
125 wxCalendarDateAttr *GetAttr(size_t day) const
126 {
127 wxCHECK_MSG( day > 0 && day < 32, NULL, _T("invalid day") );
128
129 return m_attrs[day - 1];
130 }
131
132 void SetAttr(size_t day, wxCalendarDateAttr *attr)
133 {
134 wxCHECK_RET( day > 0 && day < 32, _T("invalid day") );
135
136 delete m_attrs[day - 1];
137 m_attrs[day - 1] = attr;
138 }
139
140 void SetHoliday(size_t day);
141
142 void ResetAttr(size_t day) { SetAttr(day, (wxCalendarDateAttr *)NULL); }
143
144 // returns one of wxCAL_HITTEST_XXX constants and fills either date or wd
145 // with the corresponding value (none for NOWHERE, the date for DAY and wd
146 // for HEADER)
147 wxCalendarHitTestResult HitTest(const wxPoint& pos,
148 wxDateTime *date = NULL,
149 wxDateTime::WeekDay *wd = NULL);
150
151 // implementation only from now on
152 // -------------------------------
153
154 // forward these functions to all subcontrols
155 virtual bool Enable(bool enable = true);
156 virtual bool Show(bool show = true);
157
158 virtual wxVisualAttributes GetDefaultAttributes() const
159 { return GetClassDefaultAttributes(GetWindowVariant()); }
160
161 static wxVisualAttributes
162 GetClassDefaultAttributes(wxWindowVariant variant = wxWINDOW_VARIANT_NORMAL);
163
164 private:
165 // common part of all ctors
166 void Init();
167
168 // event handlers
169 void OnPaint(wxPaintEvent& event);
170 void OnClick(wxMouseEvent& event);
171 void OnDClick(wxMouseEvent& event);
172 void OnChar(wxKeyEvent& event);
173 void OnMonthChange(wxCommandEvent& event);
174 void OnYearChange(wxCommandEvent& event);
175 void OnYearTextChange(wxCommandEvent& event);
176
177 // override some base class virtuals
178 virtual wxSize DoGetBestSize() const;
179 virtual void DoGetPosition(int *x, int *y) const;
180 virtual void DoGetSize(int *width, int *height) const;
181 virtual void DoSetSize(int x, int y, int width, int height, int sizeFlags);
182 virtual void DoMoveWindow(int x, int y, int width, int height);
183
184 // (re)calc m_widthCol and m_heightRow
185 void RecalcGeometry();
186
187 // set the date and send the notification
188 void SetDateAndNotify(const wxDateTime& date);
189
190 // get the week (row, in range 1..6) for the given date
191 size_t GetWeek(const wxDateTime& date) const;
192
193 // get the date from which we start drawing days
194 wxDateTime GetStartDate() const;
195
196 // is this date shown?
197 bool IsDateShown(const wxDateTime& date) const;
198
199 // is this date in the given range?
200 bool IsDateInRange(const wxDateTime& date) const;
201
202 // range helpers
203 bool ChangeYear(wxDateTime* target) const;
204 bool ChangeMonth(wxDateTime* target) const;
205
206 // redraw the given date
207 void RefreshDate(const wxDateTime& date);
208
209 // change the date inside the same month/year
210 void ChangeDay(const wxDateTime& date);
211
212 // set the attributes for the holidays if needed
213 void SetHolidayAttrs();
214
215 // reset all holidays
216 void ResetHolidayAttrs();
217
218 // generate the given calendar event(s)
219 void GenerateEvent(wxEventType type)
220 {
221 wxCalendarEvent event(this, type);
222 (void)GetEventHandler()->ProcessEvent(event);
223 }
224
225 void GenerateEvents(wxEventType type1, wxEventType type2)
226 {
227 GenerateEvent(type1);
228 GenerateEvent(type2);
229 }
230
231 // do we allow changing the month/year?
232 bool AllowMonthChange() const
233 {
234 return (GetWindowStyle() & wxCAL_NO_MONTH_CHANGE)
235 != wxCAL_NO_MONTH_CHANGE;
236 }
237 bool AllowYearChange() const
238 {
239 return !(GetWindowStyle() & wxCAL_NO_YEAR_CHANGE);
240 }
241
242 // show the correct controls
243 void ShowCurrentControls();
244
245 // create the month combo and year spin controls
246 void CreateMonthComboBox();
247 void CreateYearSpinCtrl();
248
249 public:
250 // get the currently shown control for month/year
251 wxControl *GetMonthControl() const;
252 wxControl *GetYearControl() const;
253
254 private:
255 // OnPaint helper-methods
256
257 // Highlight the [fromdate : todate] range using pen and brush
258 void HighlightRange(wxPaintDC* dc, const wxDateTime& fromdate, const wxDateTime& todate, wxPen* pen, wxBrush* brush);
259
260 // Get the "coordinates" for the date relative to the month currently displayed.
261 // using (day, week): upper left coord is (1, 1), lower right coord is (7, 6)
262 // if the date isn't visible (-1, -1) is put in (day, week) and false is returned
263 bool GetDateCoord(const wxDateTime& date, int *day, int *week) const;
264
265 // Set the flag for SetDate(): otherwise it would overwrite the year
266 // typed in by the user
267 void SetUserChangedYear() { m_userChangedYear = true; }
268
269 // the subcontrols
270 wxStaticText *m_staticMonth;
271 wxComboBox *m_comboMonth;
272
273 wxStaticText *m_staticYear;
274 wxSpinCtrl *m_spinYear;
275
276 // the current selection
277 wxDateTime m_date;
278
279 // the date-range
280 wxDateTime m_lowdate;
281 wxDateTime m_highdate;
282
283 // default attributes
284 wxColour m_colHighlightFg,
285 m_colHighlightBg,
286 m_colHolidayFg,
287 m_colHolidayBg,
288 m_colHeaderFg,
289 m_colHeaderBg;
290
291 // the attributes for each of the month days
292 wxCalendarDateAttr *m_attrs[31];
293
294 // the width and height of one column/row in the calendar
295 wxCoord m_widthCol,
296 m_heightRow,
297 m_rowOffset;
298
299 wxRect m_leftArrowRect,
300 m_rightArrowRect;
301
302 // the week day names
303 wxString m_weekdays[7];
304
305 // true if SetDate() is being called as the result of changing the year in
306 // the year control
307 bool m_userChangedYear;
308
309 DECLARE_DYNAMIC_CLASS(wxCalendarCtrl)
310 DECLARE_EVENT_TABLE()
311 DECLARE_NO_COPY_CLASS(wxCalendarCtrl)
312 };
313
314 #endif // _WX_GENERIC_CALCTRL_H