| 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: wxWindows license |
| 9 | %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% |
| 10 | |
| 11 | \section{\class{wxDateEvent}}\label{wxdateevent} |
| 12 | |
| 13 | This event class holds information about a date change and is used together |
| 14 | with \helpref{wxDatePickerCtrl}{wxdatepickerctrl}. It also serves as a base class |
| 15 | for \helpref{wxCalendarEvent}{wxcalendarevent}. |
| 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 | \latexignore{\rtfignore{\wxheading{Members}}} |
| 28 | |
| 29 | \membersection{wxDateEvent::GetDate}\label{wxdateeventgetdate} |
| 30 | |
| 31 | \constfunc{const wxDateTime\&}{GetDate}{\void} |
| 32 | |
| 33 | Returns the date. |
| 34 | |
| 35 | |
| 36 | \membersection{wxDateEvent::SetDate}\label{wxdateeventsetdate} |
| 37 | |
| 38 | \func{void}{SetDate}{\param{const wxDateTime\&}{ date}} |
| 39 | |
| 40 | Sets the date carried by the event, normally only used by the library |
| 41 | internally. |
| 42 | |