Detailed Description
The QOrganizerItemIdFetchRequest class allows a client to asynchronously request a list of organizer item ids from a organizer item store manager.
For a QOrganizerItemIdFetchRequest, the resultsAvailable() signal will be emitted when the resultant manager organizer item ids (which may be retrieved by calling ids()), are updated, as well as if the overall operation error (which may be retrieved by calling error()) is updated.
Member Function Documentation
QOrganizerItemIdFetchRequest::QOrganizerItemIdFetchRequest ( QObject * parent = 0 )
Constructs a new organizer item id fetch request whose parent is the specified parent
QDateTime QOrganizerItemIdFetchRequest::endDate () const
Returns the date-time which is the upper bound for the range for items whose ids will be returned. An invalid (default-constructed) date-time signifies that no upper bound is given (matches everything after the start date). Note that an item matches if either it or any of its occurrences occur within the defined range.
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 which matched the request
void QOrganizerItemIdFetchRequest::setEndDate ( const QDateTime & date )
Sets the date-time which is the upper bound for the range for items whose ids will be returned to date. An invalid (default-constructed) date-time signifies that no upper bound is given (matches everything after the start date). Note that an item matches if either it or any of its occurrences occur within the defined range.
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. This function only has effect on the result if called prior to calling start()
See also sorting().
void QOrganizerItemIdFetchRequest::setStartDate ( const QDateTime & date )
Sets the date-time which is the lower bound for the range for items whose ids will be returned to date. An invalid (default-constructed) date-time signifies that no lower bound is given (matches everything up to the end date). Note that an item matches if either it or any of its occurrences occur within the defined range.
See also startDate().
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 for items whose ids will be returned. An invalid (default-constructed) date-time signifies that no lower bound is given (matches everything up until the end date). Note that an item matches if either it or any of its occurrences occur within the defined range.
See also setStartDate().