KDatePickerPopup Class

This menu helps the user to select a date quickly. More...

Header: #include <KDatePickerPopup>
CMake: find_package(KF6 REQUIRED COMPONENTS WidgetsAddons)
target_link_libraries(mytarget PRIVATE KF6::WidgetsAddons)
Since: 5.94
Inherits: QMenu

Public Types

enum Mode { NoDate, DatePicker, Words }
flags Modes

Properties

Public Functions

KDatePickerPopup(KDatePickerPopup::Modes modes = DatePicker, QDate date = QDate::currentDate(), QWidget *parent = nullptr)
QMap<QDate, QString> dateMap() const
KDatePicker *datePicker() const
KDatePickerPopup::Modes modes() const
void setDateMap(const QMap<QDate, QString> &dateMap)
void setDateRange(const QDate &minDate, const QDate &maxDate)
void setModes(KDatePickerPopup::Modes modes)

Public Slots

void setDate(QDate date)

Signals

void dateChanged(const QDate &date)

Detailed Description

This menu helps the user to select a date quickly. It offers various modes of selecting, e.g. with a KDatePicker or with words like "Tomorrow".

The available modes are:

  • NoDate: A menu-item with "No Date". If chosen, the datepicker will emit a null QDate.
  • DatePicker: Shows a KDatePicker-widget.
  • Words: Shows items like "Today", "Tomorrow" or "Next Week".

Member Type Documentation

enum KDatePickerPopup::Mode
flags KDatePickerPopup::Modes

Describes the available selection modes.

ConstantValueDescription
KDatePickerPopup::NoDate1A menu-item with "No Date". Will always return an invalid date.
KDatePickerPopup::DatePicker2A menu-item with a KDatePicker.
KDatePickerPopup::Words4A menu-item with list of words that describe a date.

The Modes type is a typedef for QFlags<Mode>. It stores an OR combination of Mode values.

Property Documentation

modes : Modes

Access functions:

KDatePickerPopup::Modes modes() const
void setModes(KDatePickerPopup::Modes modes)

Member Function Documentation

[explicit] KDatePickerPopup::KDatePickerPopup(KDatePickerPopup::Modes modes = DatePicker, QDate date = QDate::currentDate(), QWidget *parent = nullptr)

Creates a new date picker popup.

modes The selection modes that shall be offered

date The initial date of date picker widget.

parent The parent object.

[signal] void KDatePickerPopup::dateChanged(const QDate &date)

This signal is emitted whenever the user has selected a new date.

date The new date.

QMap<QDate, QString> KDatePickerPopup::dateMap() const

Return the map of dates listed in the drop-down and their displayed string forms.

See also setDateMap().

KDatePicker *KDatePickerPopup::datePicker() const

Returns the used KDatePicker object.

KDatePickerPopup::Modes KDatePickerPopup::modes() const

Returns the currently used selection modes.

Note: Getter function for property modes.

See also setModes().

[slot] void KDatePickerPopup::setDate(QDate date)

Sets the current date.

void KDatePickerPopup::setDateMap(const QMap<QDate, QString> &dateMap)

Sets the list of dates in the drop-down menu that the user can select from and the text string to display for each date, e.g. "2010-01-01" and "Yesterday".

The list of date/string pairs is used as-is (invalid or duplicate dates aren't removed), and the order will not be changed (the map is sorted by key); also and the minimum and maximum dates will not be affected.

The dateMap is keyed by the date to be listed and the value is the string to be displayed. If you want the date to be displayed in the default date format then the string should be null. If you want a separator to be displayed then set the string to "separator".

dateMap the map of dates the user can select from

See also dateMap().

void KDatePickerPopup::setDateRange(const QDate &minDate, const QDate &maxDate)

Sets the range of dates that can be accepted.

Invalid dates can be used to define open-ended ranges. If both values are valid, the minimum date must be less than or equal to the maximum date, otherwise the date range will not be set.

minDate the minimum date

maxDate the maximum date

void KDatePickerPopup::setModes(KDatePickerPopup::Modes modes)

Set the selection modes to use.

Note: Setter function for property modes.

See also modes().