View Source wxCalendarEvent (wx v2.4.2)

Functions for wxCalendarEvent class

The wxCalendarEvent class is used together with wxCalendarCtrl.

See: wxCalendarCtrl

This class is derived (and can use functions) from: wxDateEvent wxCommandEvent wxEvent

wxWidgets docs: wxCalendarEvent

Summary

Functions

Returns the date.

Returns the week day on which the user clicked in EVT_CALENDAR_WEEKDAY_CLICKED handler.

Types

-type wxCalendar() ::
          #wxCalendar{type :: wxCalendarEvent:wxCalendarEventType(),
                      wday :: wx:wx_enum(),
                      date :: wx:wx_datetime()}.
-type wxCalendarEvent() :: wx:wx_object().
-type wxCalendarEventType() ::
          calendar_sel_changed | calendar_day_changed | calendar_month_changed | calendar_year_changed |
          calendar_doubleclicked | calendar_weekday_clicked.

Functions

-spec getDate(This) -> wx:wx_datetime() when This :: wxCalendarEvent().

Returns the date.

-spec getWeekDay(This) -> wx:wx_enum() when This :: wxCalendarEvent().

Returns the week day on which the user clicked in EVT_CALENDAR_WEEKDAY_CLICKED handler.

It doesn't make sense to call this function in other handlers.