1 /////////////////////////////////////////////////////////////////////////////
3 // Purpose: interface of wxDateEvent
4 // Author: wxWidgets team
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
12 This event class holds information about a date change and is used together
13 with wxDatePickerCtrl. It also serves as a base class
19 class wxDateEvent
: public wxCommandEvent
23 wxDateEvent(wxWindow
*win
, const wxDateTime
& dt
, wxEventType type
);
28 const wxDateTime
& GetDate() const;
31 Sets the date carried by the event, normally only used by the library
34 void SetDate(const wxDateTime
& date
);
37 wxEventType wxEVT_DATE_CHANGED
;
38 wxEventType wxEVT_TIME_CHANGED
;