]>
Commit | Line | Data |
---|---|---|
feb72429 VZ |
1 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
2 | %% Name: dateevt.tex | |
3 | %% Purpose: wxDateEvent documentation | |
4 | %% Author: Vadim Zeitlin | |
5 | %% Created: 2005-01-15 | |
6 | %% RCS-ID: $Id$ | |
7 | %% Copyright: (c) 2005 Vadim Zeitlin | |
8 | %% License: wxWidgets license | |
9 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% | |
10 | ||
11 | \section{\class{wxDateEvent}}\label{wxdateevent} | |
12 | ||
13 | This event class carries information about a date change and is used together | |
14 | with \helpref{wxDatePickerCtrl}{wxdatepickerctrl} and serves as a base class | |
23bec39a | 15 | for \helpref{wxCalendarEvent}{wxcalendarevent}. |
feb72429 VZ |
16 | |
17 | \wxheading{Derived from} | |
18 | ||
19 | \helpref{wxCommandEvent}{wxcommandevent}\\ | |
20 | \helpref{wxEvent}{wxevent}\\ | |
21 | \helpref{wxObject}{wxobject} | |
22 | ||
23 | \wxheading{Include files} | |
24 | ||
25 | <wx/dateevt.h> | |
26 | ||
27 | ||
28 | \latexignore{\rtfignore{\wxheading{Members}}} | |
29 | ||
30 | \membersection{wxDateEvent::GetDate}\label{wxdateeventgetdate} | |
31 | ||
32 | \constfunc{const wxDateTime\&}{GetDate}{\void} | |
33 | ||
34 | Returns the date. | |
35 | ||
36 | ||
37 | \membersection{wxDateEvent::SetDate}\label{wxdateeventsetdate} | |
38 | ||
39 | \func{void}{SetDate}{\param{const wxDateTime\&}{ date}} | |
40 | ||
41 | Sets the date carried by the event, normally only used by the library | |
42 | internally. | |
43 | ||
44 |