wxCalendarCtrl (wx v2.5.4)

Copy Markdown View Source

The calendar control allows the user to pick a date.

The user can move the current selection using the keyboard and select the date (generating EVT_CALENDAR event) by pressing <Return> or double clicking it.

Generic calendar has advanced possibilities for the customization of its display, described below. If you want to use these possibilities on every platform, use wxGenericCalendarCtrl instead of wxCalendarCtrl.

All global settings (such as colours and fonts used) can, of course, be changed. But also, the display style for each day in the month can be set independently using wxCalendarDateAttr class.

An item without custom attributes is drawn with the default colours and font and without border, but setting custom attributes with setAttr/3 allows modifying its appearance. Just create a custom attribute object and set it for the day you want to be displayed specially (note that the control will take ownership of the pointer, i.e. it will delete it itself). A day may be marked as being a holiday, even if it is not recognized as one by wx_datetime() using the wxCalendarDateAttr:setHoliday/2 method.

As the attributes are specified for each day, they may change when the month is changed, so you will often want to update them in EVT_CALENDAR_PAGE_CHANGED event handler.

If neither the wxCAL_SUNDAY_FIRST or wxCAL_MONDAY_FIRST style is given, the first day of the week is determined from operating system's settings, if possible. The native wxGTK calendar chooses the first weekday based on locale, and these styles have no effect on it.

Styles

This class supports the following styles:

  • wxCAL_SUNDAY_FIRST: Show Sunday as the first day in the week (not in wxGTK)

  • wxCAL_MONDAY_FIRST: Show Monday as the first day in the week (not in wxGTK)

  • wxCAL_SHOW_HOLIDAYS: Highlight holidays in the calendar (only generic)

  • wxCAL_NO_YEAR_CHANGE: Disable the year changing (deprecated, only generic)

  • wxCAL_NO_MONTH_CHANGE: Disable the month (and, implicitly, the year) changing

  • wxCAL_SHOW_SURROUNDING_WEEKS: Show the neighbouring weeks in the previous and next months (only generic, always on for the native controls)

  • wxCAL_SEQUENTIAL_MONTH_SELECTION: Use alternative, more compact, style for the month and year selection controls. (only generic)

  • wxCAL_SHOW_WEEK_NUMBERS: Show week numbers on the left side of the calendar. (not in generic)

See:

This class is derived, and can use functions, from:

wxWidgets docs: wxCalendarCtrl

Events

Event types emitted from this class:

Summary

Functions

Creates the control.

Destroys the object

This function should be used instead of changing wxCAL\_SHOW\_HOLIDAYS style bit directly.

This function should be used instead of changing wxCAL\_NO\_MONTH\_CHANGE style bit.

enableYearChange/2 deprecated

Deprecated

Returns the attribute for the given date (should be in the range 1...31).

Gets the currently selected date.

Gets the background colour of the header part of the calendar window.

Gets the foreground colour of the header part of the calendar window.

Gets the background highlight colour.

Gets the foreground highlight colour.

Return the background colour currently used for holiday highlighting.

Return the foreground colour currently used for holiday highlighting.

Returns one of wxCalendarHitTestResult constants and fills either date or wd pointer with the corresponding value depending on the hit test code.

Default constructor.

Does the same as create/4 method.

Clears any attributes associated with the given day (in the range 1...31).

Associates the attribute with the specified date (in the range 1...31).

Sets the current date.

Set the colours used for painting the weekdays at the top of the control.

Set the colours to be used for highlighting the currently selected date.

Marks the specified day as being a holiday in the current month.

Sets the colours to be used for the holidays highlighting.

Types

wxCalendarCtrl()

-type wxCalendarCtrl() :: wx:wx_object().

Functions

create(This, Parent, Id) ≡ create(This, Parent, Id, [])

create/4

-spec create(This, Parent, Id) -> boolean()
                when This :: wxCalendarCtrl(), Parent :: wxWindow:wxWindow(), Id :: integer().
-spec create(This, Parent, Id, [Option]) -> boolean()
                when
                    This :: wxCalendarCtrl(),
                    Parent :: wxWindow:wxWindow(),
                    Id :: integer(),
                    Option ::
                        {date, wx:wx_datetime()} |
                        {pos, {X :: integer(), Y :: integer()}} |
                        {size, {W :: integer(), H :: integer()}} |
                        {style, integer()}.

Creates the control.

See wxWindow:new/3 for the meaning of the parameters and the control overview for the possible styles.

destroy(This :: wxCalendarCtrl()) -> ok

Destroys the object

enableHolidayDisplay(This) ≡ enableHolidayDisplay(This, [])

enableHolidayDisplay/2

-spec enableHolidayDisplay(This) -> ok when This :: wxCalendarCtrl().
-spec enableHolidayDisplay(This, [Option]) -> ok
                              when This :: wxCalendarCtrl(), Option :: {display, boolean()}.

This function should be used instead of changing wxCAL\_SHOW\_HOLIDAYS style bit directly.

It enables or disables the special highlighting of the holidays.

enableMonthChange(This) ≡ enableMonthChange(This, [])

enableMonthChange/2

-spec enableMonthChange(This) -> boolean() when This :: wxCalendarCtrl().
-spec enableMonthChange(This, [Option]) -> boolean()
                           when This :: wxCalendarCtrl(), Option :: {enable, boolean()}.

This function should be used instead of changing wxCAL\_NO\_MONTH\_CHANGE style bit.

It allows or disallows the user to change the month interactively. Note that if the month cannot be changed, the year cannot be changed neither.

Return: true if the value of this option really changed or false if it was already set to the requested value.

enableYearChange(This) ≡ enableYearChange(This, [])

enableYearChange/2

This function is deprecated. wxCalendarCtrl:enableYearChange/2 is deprecated; not available in wxWidgets-2.9 and later.
-spec enableYearChange(This) -> ok when This :: wxCalendarCtrl().
-spec enableYearChange(This, [Option]) -> ok
                          when This :: wxCalendarCtrl(), Option :: {enable, boolean()}.

Deprecated:

This function should be used instead of changing wxCAL_NO_YEAR_CHANGE style bit directly. It allows or disallows the user to change the year interactively. Only in generic wxCalendarCtrl.

getAttr(This, Day) -> Result

Returns the attribute for the given date (should be in the range 1...31).

The returned pointer may be NULL. Only in generic wxCalendarCtrl.

getDate(This :: wxCalendarCtrl()) -> wx:wx_datetime()

Gets the currently selected date.

getHeaderColourBg(This :: wxCalendarCtrl()) -> wx:wx_colour4()

Gets the background colour of the header part of the calendar window.

This method is currently only implemented in generic wxCalendarCtrl and always returns wxNullColour in the native versions.

See: setHeaderColours/3

getHeaderColourFg(This :: wxCalendarCtrl()) -> wx:wx_colour4()

Gets the foreground colour of the header part of the calendar window.

This method is currently only implemented in generic wxCalendarCtrl and always returns wxNullColour in the native versions.

See: setHeaderColours/3

getHighlightColourBg(This :: wxCalendarCtrl()) -> wx:wx_colour4()

Gets the background highlight colour.

Only in generic wxCalendarCtrl.

This method is currently only implemented in generic wxCalendarCtrl and always returns wxNullColour in the native versions.

See: setHighlightColours/3

getHighlightColourFg(This :: wxCalendarCtrl()) -> wx:wx_colour4()

Gets the foreground highlight colour.

Only in generic wxCalendarCtrl.

This method is currently only implemented in generic wxCalendarCtrl and always returns wxNullColour in the native versions.

See: setHighlightColours/3

getHolidayColourBg(This :: wxCalendarCtrl()) -> wx:wx_colour4()

Return the background colour currently used for holiday highlighting.

Only useful with generic wxCalendarCtrl as native versions currently don't support holidays display at all and always return wxNullColour.

See: setHolidayColours/3

getHolidayColourFg(This :: wxCalendarCtrl()) -> wx:wx_colour4()

Return the foreground colour currently used for holiday highlighting.

Only useful with generic wxCalendarCtrl as native versions currently don't support holidays display at all and always return wxNullColour.

See: setHolidayColours/3

hitTest(This, Pos) -> Result

Types

This = wxCalendarCtrl()
Pos = {X :: integer(), Y :: integer()}
Result = {Res :: wx:wx_enum(), Date :: wx:wx_datetime(), Wd :: wx:wx_enum()}

Returns one of wxCalendarHitTestResult constants and fills either date or wd pointer with the corresponding value depending on the hit test code.

Not implemented in wxGTK currently.

new() -> wxCalendarCtrl()

Default constructor.

new(Parent, Id) ≡ new(Parent, Id, [])

new/3

-spec new(Parent, Id) -> wxCalendarCtrl() when Parent :: wxWindow:wxWindow(), Id :: integer().
-spec new(Parent, Id, [Option]) -> wxCalendarCtrl()
             when
                 Parent :: wxWindow:wxWindow(),
                 Id :: integer(),
                 Option ::
                     {date, wx:wx_datetime()} |
                     {pos, {X :: integer(), Y :: integer()}} |
                     {size, {W :: integer(), H :: integer()}} |
                     {style, integer()}.

Does the same as create/4 method.

resetAttr(This :: wxCalendarCtrl(), Day :: integer()) -> ok

Clears any attributes associated with the given day (in the range 1...31).

Only in generic wxCalendarCtrl.

setAttr(This, Day, Attr) -> ok

Associates the attribute with the specified date (in the range 1...31).

If the pointer is NULL, the items attribute is cleared. Only in generic wxCalendarCtrl.

setDate(This :: wxCalendarCtrl(), Date :: wx:wx_datetime()) -> boolean()

Sets the current date.

The date parameter must be valid and in the currently valid range as set by SetDateRange() (not implemented in wx), otherwise the current date is not changed and the function returns false and, additionally, triggers an assertion failure if the date is invalid.

setHeaderColours(This, ColFg, ColBg) -> ok

Types

This = wxCalendarCtrl()
ColFg = ColBg = wx:wx_colour()

Set the colours used for painting the weekdays at the top of the control.

This method is currently only implemented in generic wxCalendarCtrl and does nothing in the native versions.

setHighlightColours(This, ColFg, ColBg) -> ok

Types

This = wxCalendarCtrl()
ColFg = ColBg = wx:wx_colour()

Set the colours to be used for highlighting the currently selected date.

This method is currently only implemented in generic wxCalendarCtrl and does nothing in the native versions.

setHoliday(This :: wxCalendarCtrl(), Day :: integer()) -> ok

Marks the specified day as being a holiday in the current month.

This method is only implemented in the generic version of the control and does nothing in the native ones.

setHolidayColours(This, ColFg, ColBg) -> ok

Types

This = wxCalendarCtrl()
ColFg = ColBg = wx:wx_colour()

Sets the colours to be used for the holidays highlighting.

This method is only implemented in the generic version of the control and does nothing in the native ones. It should also only be called if the window style includes wxCAL_SHOW_HOLIDAYS flag or enableHolidayDisplay/2 had been called.