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.
This class was introduced in Qt Mobility 1.1.
QOrganizerItemRemoveRequest ( QObject * parent = 0 ) | |
~QOrganizerItemRemoveRequest () | |
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
This function was introduced in Qt Mobility 1.1.
Frees memory in use by this request
This function was introduced in Qt Mobility 1.2.
Returns the map of input organizer item list indices to errors which occurred
This function was introduced in Qt Mobility 1.1.
Returns the list of ids of organizer items which will be removed
This function was introduced in Qt Mobility 1.1.
See also setItemIds().
Sets the id of the organizer item which will be removed to organizeritemId. Equivalent to calling:
setOrganizerItemIds(QList<QOrganizerItemId>() << organizeritemIds);
This function was introduced in Qt Mobility 1.1.
Sets the list of ids of organizer items which will be removed to organizeritemIds
This function was introduced in Qt Mobility 1.1.
See also itemIds().