The QOrganizerItemInstanceFetchRequest class allows a client to asynchronously request organizer item instances (occurrences) from an organizer item store manager. More...
#include <QOrganizerItemInstanceFetchRequest>
Inherits QOrganizerItemAbstractRequest.
QOrganizerItemInstanceFetchRequest ( QObject * parent = 0 ) | |
QOrganizerItemFetchHint | fetchHint () const |
QOrganizerItemFilter | filter () const |
QList<QOrganizerItem> | items () const |
void | setFetchHint ( const QOrganizerItemFetchHint & fetchHint ) |
void | setFilter ( const QOrganizerItemFilter & filter ) |
void | setSorting ( const QList<QOrganizerItemSortOrder> & sorting ) |
QList<QOrganizerItemSortOrder> | sorting () const |
The QOrganizerItemInstanceFetchRequest class allows a client to asynchronously request organizer item instances (occurrences) from an organizer item store manager.
For a QOrganizerItemInstanceFetchRequest, the resultsAvailable() signal will be emitted when the resultant organizer items (which may be retrieved by calling items()), are updated, as well as if the overall operation error (which may be retrieved by calling error()) is updated.
Constructs a new organizer item fetch request whose parent is the specified parent
Returns the fetch hint which may be used by the backend to optimize organizer item retrieval. A client should not make changes to a organizer item which has been retrieved using a fetch hint other than the default fetch hint. Doing so will result in information loss when saving the organizer item back to the manager (as the "new" restricted organizer item will replace the previously saved organizer item in the backend).
See also setFetchHint() and QOrganizerItemFetchHint.
Returns the filter that will be used to select organizer items to be returned
See also setFilter().
Returns the list of organizer items retrieved by this request
Sets the fetch hint which may be used by the backend to optimize organizer item retrieval to fetchHint. A client should not make changes to an organizer item which has been retrieved using a fetch hint other than the default fetch hint. Doing so will result in information loss when saving the organizer item back to the manager (as the "new" restricted organizer item will replace the previously saved organizer item in the backend).
See also fetchHint() and QOrganizerItemFetchHint.
Sets the organizer item filter used to determine which organizer items will be retrieved to filter
See also filter().
Sets the sort order of the result to sorting. Only has an effect if called prior to calling start()
See also sorting().
Returns the sort ordering that will be used sort the results of this request
See also setSorting().