The QOrganizerItemRemoveRequest class allows a client to asynchronously request that certain organizer items be removed from a organizer items store. More...
#include <QOrganizerItemRemoveRequest>
Inherits QOrganizerAbstractRequest.
QOrganizerItemRemoveRequest ( QObject * parent = 0 ) | |
QMap<int, QOrganizerManager::Error> | errorMap () const |
QList<QOrganizerItemId> | itemIds () const |
void | setItemId ( const QOrganizerItemId & organizeritemId ) |
void | setItemIds ( const QList<QOrganizerItemId> & organizeritemIds ) |
The QOrganizerItemRemoveRequest class allows a client to asynchronously request that certain organizer items be removed from a organizer items store.
For a QOrganizerItemRemoveRequest, the resultsUpdated() signal will be emitted when the individual item errors (which may be retrieved by calling errorMap()) are updated, or if the overall operation error (which may be retrieved by calling error()) is updated.
Constructs a new organizer item remove request whose parent is the specified parent
Returns the map of input organizer item list indices to errors which occurred
Returns the list of ids of organizer items which will be removed
See also setItemIds().
Sets the id of the organizer item which will be removed to organizeritemId. Equivalent to calling:
setOrganizerItemIds(QList<QOrganizerItemId>() << organizeritemIds);
Sets the list of ids of organizer items which will be removed to organizeritemIds
See also itemIds().