]> git.saurik.com Git - wxWidgets.git/blame - docs/latex/wx/calctrl.tex
Remove use of GetVolumeInformation since it causes long delays on network drives.
[wxWidgets.git] / docs / latex / wx / calctrl.tex
CommitLineData
4f6aed9c
VZ
1%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
2%% Name: calctrl.tex
3%% Purpose: wxCalendarCtrl documentation
4%% Author: Vadim Zeitlin
5%% Modified by:
6%% Created: 03.01.00
7%% RCS-ID: $Id$
8%% Copyright: (c) Vadim Zeitlin
8795498c 9%% License: wxWindows license
4f6aed9c
VZ
10%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
11
12\section{\class{wxCalendarCtrl}}\label{wxcalendarctrl}
13
dceb1c09
JS
14The calendar control allows the user to pick a date. For this,
15it displays a window containing several parts: a control at the top to pick the month
16and the year (either or both of them may be disabled), and a month
f6bcfd97
BP
17area below them which shows all the days in the month. The user can move the
18current selection using the keyboard and select the date (generating
19{\tt EVT\_CALENDAR} event) by pressing {\tt <Return>} or double clicking it.
20
21It has advanced possibilities for the customization of its display. All global
22settings (such as colours and fonts used) can, of course, be changed. But
23also, the display style for each day in the month can be set independently
24using \helpref{wxCalendarDateAttr}{wxcalendardateattr} class.
25
26An item without custom attributes is drawn with the default colours and
27font and without border, but setting custom attributes with
28\helpref{SetAttr}{wxcalendarctrlsetattr} allows to modify its appearance. Just
29create a custom attribute object and set it for the day you want to be
30displayed specially (note that the control will take ownership of the pointer,
31i.e. it will delete it itself). A day may be marked as being a holiday, even
2edb0bde 32if it is not recognized as one by \helpref{wxDateTime}{tdateholidays} using
f6bcfd97
BP
33\helpref{SetHoliday}{wxcalendardateattrsetholiday} method.
34
35As the attributes are specified for each day, they may change when the month
36is changed, so you will often want to update them in
37{\tt EVT\_CALENDAR\_MONTH} event handler.
38
39\wxheading{Derived from}
40
41\helpref{wxControl}{wxcontrol}\\
42\helpref{wxWindow}{wxwindow}\\
43\helpref{wxEvtHandler}{wxevthandler}\\
44\helpref{wxObject}{wxobject}
4f6aed9c
VZ
45
46\wxheading{Include files}
47
48<wx/calctrl.h>
49
f6bcfd97
BP
50\wxheading{Window styles}
51
52\twocolwidtha{5cm}
53\begin{twocollist}\itemsep=4pt
54\twocolitem{\windowstyle{wxCAL\_SUNDAY\_FIRST}}{Show Sunday as the first day in the week}
55\twocolitem{\windowstyle{wxCAL\_MONDAY\_FIRST}}{Show Monday as the first day in the week}
56\twocolitem{\windowstyle{wxCAL\_SHOW\_HOLIDAYS}}{Highlight holidays in the calendar}
57\twocolitem{\windowstyle{wxCAL\_NO\_YEAR\_CHANGE}}{Disable the year changing}
58\twocolitem{\windowstyle{wxCAL\_NO\_MONTH\_CHANGE}}{Disable the month (and, implicitly, the year) changing}
37df1f33
VZ
59\twocolitem{\windowstyle{wxCAL\_SHOW\_SURROUNDING\_WEEKS}}{Show the neighbouring weeks in the previous and next months}
60\twocolitem{\windowstyle{wxCAL\_SEQUENTIAL\_MONTH\_SELECTION}}{Use alternative, more compact, style for the month and year selection controls.}
f6bcfd97
BP
61\end{twocollist}
62
63The default calendar style is {\tt wxCAL\_SHOW\_HOLIDAYS}.
64
65\wxheading{Event table macros}
66
67To process input from a calendar control, use these event handler macros to
68direct input to member functions that take a
69\helpref{wxCalendarEvent}{wxcalendarevent} argument.
70
71\twocolwidtha{7cm}
72\begin{twocollist}\itemsep=7pt
2edb0bde 73\twocolitem{{\bf EVT\_CALENDAR(id, func)}}{A day was double clicked in the calendar.}
f6bcfd97
BP
74\twocolitem{{\bf EVT\_CALENDAR\_SEL\_CHANGED(id, func)}}{The selected date changed.}
75\twocolitem{{\bf EVT\_CALENDAR\_DAY(id, func)}}{The selected day changed.}
76\twocolitem{{\bf EVT\_CALENDAR\_MONTH(id, func)}}{The selected month changed.}
77\twocolitem{{\bf EVT\_CALENDAR\_YEAR(id, func)}}{The selected year changed.}
78\twocolitem{{\bf EVT\_CALENDAR\_WEEKDAY\_CLICKED(id, func)}}{User clicked on the week day header}
79\end{twocollist}%
80
81Note that changing the selected date will result in either of
82{\tt EVT\_CALENDAR\_DAY}, {\tt MONTH} or {\tt YEAR} events and
83{\tt EVT\_CALENDAR\_SEL\_CHANGED} one.
84
85\wxheading{Constants}
86
87The following are the possible return values for
88\helpref{HitTest}{wxcalendarctrlhittest} method:
a3dafe87 89
6aa358ae 90{\small
a3dafe87 91\begin{verbatim}
f6bcfd97 92enum wxCalendarHitTestResult
6aa358ae 93{
f6bcfd97
BP
94 wxCAL_HITTEST_NOWHERE, // outside of anything
95 wxCAL_HITTEST_HEADER, // on the header (weekdays)
96 wxCAL_HITTEST_DAY // on a day in the calendar
6aa358ae 97}
a3dafe87 98\end{verbatim}
6aa358ae 99}
f6bcfd97
BP
100
101\wxheading{See also}
102
103\helpref{Calendar sample}{samplecalendar}\\
104\helpref{wxCalendarDateAttr}{wxcalendardateattr}\\
105\helpref{wxCalendarEvent}{wxcalendarevent}
106
107\latexignore{\rtfignore{\wxheading{Members}}}
108
feb72429 109
f6bcfd97
BP
110\membersection{wxCalendarCtrl::wxCalendarCtrl}\label{wxcalendarctrlwxcalendarctrldef}
111
112\func{}{wxCalendarCtrl}{\void}
113
114Default constructor, use \helpref{Create}{wxcalendarctrlcreate} after it.
115
f6bcfd97
BP
116\func{}{wxCalendarCtrl}{\param{wxWindow* }{parent}, \param{wxWindowID }{id}, \param{const wxDateTime\& }{date = wxDefaultDateTime}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize}, \param{long }{style = wxCAL\_SHOW\_HOLIDAYS}, \param{const wxString\& }{name = wxCalendarNameStr}}
117
118Does the same as \helpref{Create}{wxcalendarctrlcreate} method.
119
feb72429 120
f6bcfd97
BP
121\membersection{wxCalendarCtrl::Create}\label{wxcalendarctrlcreate}
122
123\func{bool}{Create}{\param{wxWindow* }{parent}, \param{wxWindowID }{id}, \param{const wxDateTime\& }{date = wxDefaultDateTime}, \param{const wxPoint\& }{pos = wxDefaultPosition}, \param{const wxSize\& }{size = wxDefaultSize}, \param{long }{style = wxCAL\_SHOW\_HOLIDAYS}, \param{const wxString\& }{name = wxCalendarNameStr}}
124
125Creates the control. See \helpref{wxWindow}{wxwindowctor} for the meaning of
126the parameters and the control overview for the possible styles.
127
feb72429 128
f6bcfd97
BP
129\membersection{wxCalendarCtrl::\destruct{wxCalendarCtrl}}\label{wxcalendarctrldtor}
130
131\func{}{\destruct{wxCalendarCtrl}}{\void}
132
133Destroys the control.
134
feb72429 135
f6bcfd97
BP
136\membersection{wxCalendarCtrl::SetDate}\label{wxcalendarctrlsetdate}
137
138\func{void}{SetDate}{\param{const wxDateTime\& }{date}}
139
140Sets the current date.
141
feb72429 142
f6bcfd97
BP
143\membersection{wxCalendarCtrl::GetDate}\label{wxcalendarctrlgetdate}
144
145\constfunc{const wxDateTime\&}{GetDate}{\void}
146
147Gets the currently selected date.
148
feb72429 149
f6bcfd97
BP
150\membersection{wxCalendarCtrl::EnableYearChange}\label{wxcalendarctrlenableyearchange}
151
cc81d32f 152\func{void}{EnableYearChange}{\param{bool }{enable = true}}
f6bcfd97
BP
153
154This function should be used instead of changing {\tt wxCAL\_NO\_YEAR\_CHANGE}
2edb0bde 155style bit directly. It allows or disallows the user to change the year
f6bcfd97
BP
156interactively.
157
feb72429 158
f6bcfd97
BP
159\membersection{wxCalendarCtrl::EnableMonthChange}\label{wxcalendarctrlenablemonthchange}
160
cc81d32f 161\func{void}{EnableMonthChange}{\param{bool }{enable = true}}
f6bcfd97
BP
162
163This function should be used instead of changing
164{\tt wxCAL\_NO\_MONTH\_CHANGE} style bit. It allows or disallows the user to
165change the month interactively. Note that if the month can not be changed, the
166year can not be changed neither.
167
feb72429 168
f6bcfd97
BP
169\membersection{wxCalendarCtrl::EnableHolidayDisplay}\label{wxcalendarctrlenableholidaydisplay}
170
cc81d32f 171\func{void}{EnableHolidayDisplay}{\param{bool }{display = true}}
f6bcfd97
BP
172
173This function should be used instead of changing {\tt wxCAL\_SHOW\_HOLIDAYS}
174style bit directly. It enables or disables the special highlighting of the
175holidays.
176
feb72429 177
f6bcfd97
BP
178\membersection{wxCalendarCtrl::SetHeaderColours}\label{wxcalendarctrlsetheadercolours}
179
180\func{void}{SetHeaderColours}{\param{const wxColour\& }{colFg}, \param{const wxColour\& }{colBg}}
181
182Set the colours used for painting the weekdays at the top of the control.
183
feb72429 184
f6bcfd97
BP
185\membersection{wxCalendarCtrl::GetHeaderColourFg}\label{wxcalendarctrlgetheadercolourfg}
186
187\constfunc{const wxColour\&}{GetHeaderColourFg}{\void}
188
189Gets the foreground colour of the header part of the calendar window.
190
191\wxheading{See also}
192
193\helpref{SetHeaderColours}{wxcalendarctrlsetheadercolours}
194
feb72429 195
f6bcfd97
BP
196\membersection{wxCalendarCtrl::GetHeaderColourBg}\label{wxcalendarctrlgetheadercolourbg}
197
198\constfunc{const wxColour\&}{GetHeaderColourBg}{\void}
199
200Gets the background colour of the header part of the calendar window.
201
202\wxheading{See also}
203
204\helpref{SetHeaderColours}{wxcalendarctrlsetheadercolours}
205
feb72429 206
f6bcfd97
BP
207\membersection{wxCalendarCtrl::SetHighlightColours}\label{wxcalendarctrlsethighlightcolours}
208
209\func{void}{SetHighlightColours}{\param{const wxColour\& }{colFg}, \param{const wxColour\& }{colBg}}
210
211Set the colours to be used for highlighting the currently selected date.
212
feb72429 213
f6bcfd97
BP
214\membersection{wxCalendarCtrl::GetHighlightColourFg}\label{wxcalendarctrlgethighlightcolourfg}
215
216\constfunc{const wxColour\&}{GetHighlightColourFg}{\void}
217
218Gets the foreground highlight colour.
219
220\wxheading{See also}
221
222\helpref{SetHighlightColours}{wxcalendarctrlsethighlightcolours}
223
feb72429 224
f6bcfd97
BP
225\membersection{wxCalendarCtrl::GetHighlightColourBg}\label{wxcalendarctrlgethighlightcolourbg}
226
227\constfunc{const wxColour\&}{GetHighlightColourBg}{\void}
228
229Gets the background highlight colour.
230
231\wxheading{See also}
232
233\helpref{SetHighlightColours}{wxcalendarctrlsethighlightcolours}
234
feb72429 235
f6bcfd97
BP
236\membersection{wxCalendarCtrl::SetHolidayColours}\label{wxcalendarctrlsetholidaycolours}
237
238\func{void}{SetHolidayColours}{\param{const wxColour\& }{colFg}, \param{const wxColour\& }{colBg}}
239
240Sets the colours to be used for the holidays highlighting (only used if the
241window style includes {\tt wxCAL\_SHOW\_HOLIDAYS} flag).
242
feb72429 243
f6bcfd97
BP
244\membersection{wxCalendarCtrl::GetHolidayColourFg}\label{wxcalendarctrlgetholidaycolourfg}
245
246\constfunc{const wxColour\&}{GetHolidayColourFg}{\void}
247
2edb0bde 248Return the foreground colour currently used for holiday highlighting.
f6bcfd97
BP
249
250\wxheading{See also}
251
252\helpref{SetHolidayColours}{wxcalendarctrlsetholidaycolours}
253
feb72429 254
f6bcfd97
BP
255\membersection{wxCalendarCtrl::GetHolidayColourBg}\label{wxcalendarctrlgetholidaycolourbg}
256
257\constfunc{const wxColour\&}{GetHolidayColourBg}{\void}
258
259Return the background colour currently used for holiday highlighting.
260
261\wxheading{See also}
262
263\helpref{SetHolidayColours}{wxcalendarctrlsetholidaycolours}
264
feb72429 265
f6bcfd97
BP
266\membersection{wxCalendarCtrl::GetAttr}\label{wxcalendarctrlgetattr}
267
268\constfunc{wxCalendarDateAttr *}{GetAttr}{\param{size\_t }{day}}
269
270Returns the attribute for the given date (should be in the range $1\ldots31$).
271
272The returned pointer may be {\tt NULL}.
273
feb72429 274
f6bcfd97
BP
275\membersection{wxCalendarCtrl::SetAttr}\label{wxcalendarctrlsetattr}
276
277\func{void}{SetAttr}{\param{size\_t }{day}, \param{wxCalendarDateAttr* }{attr}}
278
279Associates the attribute with the specified date (in the range $1\ldots31$).
280
281If the pointer is {\tt NULL}, the items attribute is cleared.
282
feb72429 283
f6bcfd97
BP
284\membersection{wxCalendarCtrl::SetHoliday}\label{wxcalendarctrlsetholiday}
285
286\func{void}{SetHoliday}{\param{size\_t }{day}}
287
288Marks the specified day as being a holiday in the current month.
289
feb72429 290
f6bcfd97
BP
291\membersection{wxCalendarCtrl::ResetAttr}\label{wxcalendarctrlresetattr}
292
293\func{void}{ResetAttr}{\param{size\_t }{day}}
294
295Clears any attributes associated with the given day (in the range
296$1\ldots31$).
297
feb72429 298
f6bcfd97
BP
299\membersection{wxCalendarCtrl::HitTest}\label{wxcalendarctrlhittest}
300
301\func{wxCalendarHitTestResult}{HitTest}{\param{const wxPoint\& }{pos}, \param{wxDateTime* }{date = NULL}, \param{wxDateTime::WeekDay* }{wd = NULL}}
302
303Returns one of {\tt wxCAL\_HITTEST\_XXX}
304\helpref{constants}{wxcalendarctrl} and fills either {\it date} or
305{\it wd} pointer with the corresponding value depending on the hit test code.
306
307\section{\class{wxCalendarDateAttr}}\label{wxcalendardateattr}
308
309wxCalendarDateAttr is a custom attributes for a calendar date. The objects of
310this class are used with \helpref{wxCalendarCtrl}{wxcalendarctrl}.
311
312\wxheading{Derived from}
313
314No base class
315
316\wxheading{Constants}
317
318Here are the possible kinds of borders which may be used to decorate a date:
319
a3dafe87 320\begin{verbatim}
f6bcfd97
BP
321enum wxCalendarDateBorder
322{
6aa358ae
GT
323 wxCAL_BORDER_NONE, // no border (default)
324 wxCAL_BORDER_SQUARE, // a rectangular border
325 wxCAL_BORDER_ROUND // a round border
f6bcfd97 326}
a3dafe87 327\end{verbatim}
f6bcfd97
BP
328
329\wxheading{See also}
330
331\helpref{wxCalendarCtrl}{wxcalendarctrl}
332
0e10e38d
VZ
333\wxheading{Include files}
334
335<wx/calctrl.h>
336
f6bcfd97
BP
337\latexignore{\rtfignore{\wxheading{Members}}}
338
feb72429 339
f6bcfd97
BP
340\membersection{wxCalendarDateAttr::wxCalendarDateAttr}\label{wxcalendardateattrwxcalendardateattr}
341
342\func{}{wxCalendarDateAttr}{\void}
343
344\func{}{wxCalendarDateAttr}{\param{const wxColour\& }{colText}, \param{const wxColour\& }{colBack = wxNullColour}, \param{const wxColour\& }{colBorder = wxNullColour}, \param{const wxFont\& }{font = wxNullFont}, \param{wxCalendarDateBorder }{border = wxCAL\_BORDER\_NONE}}
345
346\func{}{wxCalendarDateAttr}{\param{wxCalendarDateBorder }{border}, \param{const wxColour\& }{colBorder = wxNullColour}}
347
348The constructors.
349
feb72429 350
f6bcfd97
BP
351\membersection{wxCalendarDateAttr::SetTextColour}\label{wxcalendardateattrsettextcolour}
352
353\func{void}{SetTextColour}{\param{const wxColour\& }{colText}}
354
355Sets the text (foreground) colour to use.
356
feb72429 357
f6bcfd97
BP
358\membersection{wxCalendarDateAttr::SetBackgroundColour}\label{wxcalendardateattrsetbackgroundcolour}
359
360\func{void}{SetBackgroundColour}{\param{const wxColour\& }{colBack}}
361
362Sets the text background colour to use.
363
feb72429 364
f6bcfd97
BP
365\membersection{wxCalendarDateAttr::SetBorderColour}\label{wxcalendardateattrsetbordercolour}
366
367\func{void}{SetBorderColour}{\param{const wxColour\& }{col}}
368
369Sets the border colour to use.
370
feb72429 371
f6bcfd97
BP
372\membersection{wxCalendarDateAttr::SetFont}\label{wxcalendardateattrsetfont}
373
374\func{void}{SetFont}{\param{const wxFont\& }{font}}
375
376Sets the font to use.
377
feb72429 378
f6bcfd97
BP
379\membersection{wxCalendarDateAttr::SetBorder}\label{wxcalendardateattrsetborder}
380
381\func{void}{SetBorder}{\param{wxCalendarDateBorder }{border}}
382
383Sets the \helpref{border kind}{wxcalendardateattr}
384
feb72429 385
f6bcfd97
BP
386\membersection{wxCalendarDateAttr::SetHoliday}\label{wxcalendardateattrsetholiday}
387
388\func{void}{SetHoliday}{\param{bool }{holiday}}
389
390Display the date with this attribute as a holiday.
391
feb72429 392
f6bcfd97
BP
393\membersection{wxCalendarDateAttr::HasTextColour}\label{wxcalendardateattrhastextcolour}
394
395\constfunc{bool}{HasTextColour}{\void}
396
154b6b0f 397Returns {\tt true} if this item has a non-default text foreground colour.
f6bcfd97 398
feb72429 399
f6bcfd97
BP
400\membersection{wxCalendarDateAttr::HasBackgroundColour}\label{wxcalendardateattrhasbackgroundcolour}
401
402\constfunc{bool}{HasBackgroundColour}{\void}
403
154b6b0f 404Returns {\tt true} if this attribute specifies a non-default text background colour.
f6bcfd97 405
feb72429 406
f6bcfd97
BP
407\membersection{wxCalendarDateAttr::HasBorderColour}\label{wxcalendardateattrhasbordercolour}
408
409\constfunc{bool}{HasBorderColour}{\void}
410
154b6b0f 411Returns {\tt true} if this attribute specifies a non-default border colour.
f6bcfd97 412
feb72429 413
f6bcfd97
BP
414\membersection{wxCalendarDateAttr::HasFont}\label{wxcalendardateattrhasfont}
415
416\constfunc{bool}{HasFont}{\void}
417
154b6b0f 418Returns {\tt true} if this attribute specifies a non-default font.
f6bcfd97 419
feb72429 420
f6bcfd97
BP
421\membersection{wxCalendarDateAttr::HasBorder}\label{wxcalendardateattrhasborder}
422
423\constfunc{bool}{HasBorder}{\void}
424
154b6b0f 425Returns {\tt true} if this attribute specifies a non-default (i.e. any) border.
f6bcfd97 426
feb72429 427
f6bcfd97
BP
428\membersection{wxCalendarDateAttr::IsHoliday}\label{wxcalendardateattrisholiday}
429
430\constfunc{bool}{IsHoliday}{\void}
431
cc81d32f 432Returns {\tt true} if this attribute specifies that this item should be
f6bcfd97
BP
433displayed as a holiday.
434
feb72429 435
f6bcfd97
BP
436\membersection{wxCalendarDateAttr::GetTextColour}\label{wxcalendardateattrgettextcolour}
437
438\constfunc{const wxColour\&}{GetTextColour}{\void}
439
440Returns the text colour to use for the item with this attribute.
441
feb72429 442
f6bcfd97
BP
443\membersection{wxCalendarDateAttr::GetBackgroundColour}\label{wxcalendardateattrgetbackgroundcolour}
444
445\constfunc{const wxColour\&}{GetBackgroundColour}{\void}
446
447Returns the background colour to use for the item with this attribute.
448
feb72429 449
f6bcfd97
BP
450\membersection{wxCalendarDateAttr::GetBorderColour}\label{wxcalendardateattrgetbordercolour}
451
452\constfunc{const wxColour\&}{GetBorderColour}{\void}
453
454Returns the border colour to use for the item with this attribute.
455
feb72429 456
f6bcfd97
BP
457\membersection{wxCalendarDateAttr::GetFont}\label{wxcalendardateattrgetfont}
458
459\constfunc{const wxFont\&}{GetFont}{\void}
460
461Returns the font to use for the item with this attribute.
462
feb72429 463
f6bcfd97
BP
464\membersection{wxCalendarDateAttr::GetBorder}\label{wxcalendardateattrgetborder}
465
466\constfunc{wxCalendarDateBorder}{GetBorder}{\void}
467
468Returns the \helpref{border}{wxcalendardateattr} to use for the item with this attribute.
469
feb72429
VZ
470
471%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
472
f6bcfd97
BP
473\section{\class{wxCalendarEvent}}\label{wxcalendarevent}
474
475The wxCalendarEvent class is used together with
476\helpref{wxCalendarCtrl}{wxcalendarctrl}.
477
feb72429
VZ
478\wxheading{Derived from}
479
480\helpref{wxDateEvent}{wxdateevent}\\
481\helpref{wxCommandEvent}{wxcommandevent}\\
482\helpref{wxEvent}{wxevent}\\
483\helpref{wxObject}{wxobject}
484
485\wxheading{Include files}
486
487<wx/calctrl.h>
488
f6bcfd97
BP
489\wxheading{See also}
490
491\helpref{wxCalendarCtrl}{wxcalendarctrl}
492
493\latexignore{\rtfignore{\wxheading{Members}}}
494
f6bcfd97 495
f510b7b2 496\membersection{wxCalendarEvent::GetWeekDay}\label{wxcalendareventgetweekday}
f6bcfd97
BP
497
498\constfunc{wxDateTime::WeekDay}{GetWeekDay}{\void}
4f6aed9c 499
f6bcfd97
BP
500Returns the week day on which the user clicked in
501{\tt EVT\_CALENDAR\_WEEKDAY\_CLICKED} handler. It doesn't make sense to call
502this function in other handlers.
457e6c54 503
12ac619f 504
f510b7b2 505\membersection{wxCalendarEvent::SetWeekDay}\label{wxcalendareventsetweekday}
12ac619f
JS
506
507\func{void}{SetWeekDay}{\param{wxDateTime::WeekDay}{ day}}
508
feb72429
VZ
509Sets the week day carried by the event, normally only used by the library
510internally.
12ac619f 511