QOrganizerItemIdFetchRequest Class

The QOrganizerItemIdFetchRequest class allows a client to asynchronously fetch organizer item IDs from a backend. More...

Header: #include <QOrganizerItemIdFetchRequest>
Inherits: QOrganizerAbstractRequest

Public Functions

QOrganizerItemIdFetchRequest(QObject *parent = 0)
~QOrganizerItemIdFetchRequest()
QDateTime endDate() const
QOrganizerItemFilter filter() const
QList<QOrganizerItemId> itemIds() const
void setEndDate(const QDateTime &date)
void setFilter(const QOrganizerItemFilter &filter)
void setSorting(const QList<QOrganizerItemSortOrder> &sorting)
void setStartDate(const QDateTime &date)
QList<QOrganizerItemSortOrder> sorting() const
QDateTime startDate() const

Additional Inherited Members

Detailed Description

The QOrganizerItemIdFetchRequest class allows a client to asynchronously fetch organizer item IDs from a backend.

Member Function Documentation

QOrganizerItemIdFetchRequest::QOrganizerItemIdFetchRequest(QObject *parent = 0)

Constructs a new organizer item ID fetch request whose parent is the specified parent.

QOrganizerItemIdFetchRequest::~QOrganizerItemIdFetchRequest()

Frees memory in use by this request.

QDateTime QOrganizerItemIdFetchRequest::endDate() const

Returns the date-time which is the upper bound for the range in which items will be returned.

See also setEndDate().

QOrganizerItemFilter QOrganizerItemIdFetchRequest::filter() const

Returns the filter which will be used to select the organizer items whose IDs will be returned.

See also setFilter().

QList<QOrganizerItemId> QOrganizerItemIdFetchRequest::itemIds() const

Returns the list of IDs of organizer items retrieved by this request.

void QOrganizerItemIdFetchRequest::setEndDate(const QDateTime &date)

Sets the end period of the request to date.

A default-constructed (invalid) end date time specifies an open end date time (matches anything which occurs after the start date time).

See also endDate().

void QOrganizerItemIdFetchRequest::setFilter(const QOrganizerItemFilter &filter)

Sets the filter which will be used to select the organizer items whose IDs will be returned to filter.

See also filter().

void QOrganizerItemIdFetchRequest::setSorting(const QList<QOrganizerItemSortOrder> &sorting)

Sets the future sort ordering of the result of the request to sorting.

See also sorting().

void QOrganizerItemIdFetchRequest::setStartDate(const QDateTime &date)

Sets the start period of the request to date.

A default-constructed (invalid) start date time specifies an open start date time (matches anything which occurs up until the end date time).

See also startDate().

QList<QOrganizerItemSortOrder> QOrganizerItemIdFetchRequest::sorting() const

Returns the sort ordering which will be used to sort the result.

See also setSorting().

QDateTime QOrganizerItemIdFetchRequest::startDate() const

Returns the date-time which is the lower bound for the range in which items will be returned.

See also setStartDate().