The QOrganizerItemDetailDefinitionFetchRequest class allows a client to asynchronously request detail definitions from an organizer item store manager. More...
#include <QOrganizerItemDetailDefinitionFetchRequest>
Inherits: QOrganizerAbstractRequest.
This class was introduced in Qt Mobility 1.1.
QOrganizerItemDetailDefinitionFetchRequest ( QObject * parent = 0 ) | |
~QOrganizerItemDetailDefinitionFetchRequest () | |
QStringList | definitionNames () const |
QMap<QString, QOrganizerItemDetailDefinition> | definitions () const |
QMap<int, QOrganizerManager::Error> | errorMap () const |
QString | itemType () const |
void | setDefinitionName ( const QString & definitionName ) |
void | setDefinitionNames ( const QStringList & names ) |
void | setItemType ( const QString & organizeritemType ) |
The QOrganizerItemDetailDefinitionFetchRequest class allows a client to asynchronously request detail definitions from an organizer item store manager.
For a QOrganizerItemDetailDefinitionFetchRequest, the resultsAvailable() signal will be emitted when either the individual item errors (which may be retrieved by calling errorMap()), or the resultant detail definitions (which may be retrieved by calling definitions()), are updated, as well as if the overall operation error (which may be retrieved by calling error()) is updated.
Constructs a new detail definition fetch 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 list of names of the detail definitions that will be retrieved
This function was introduced in Qt Mobility 1.1.
See also setDefinitionNames().
Returns the map of detail definition names to detail definitions that was the result of the request
This function was introduced in Qt Mobility 1.1.
Returns the map of input name list indices to errors which occurred
This function was introduced in Qt Mobility 1.1.
Returns the type of organizer item for which detail definitions will be retrieved
This function was introduced in Qt Mobility 1.1.
See also setItemType().
Sets the name of the detail definition to retrieve to definitionName. Equivalent to calling
setDefinitionNames(QList<QOrganizerItemDetailDefinition>() << definitionName);
This function was introduced in Qt Mobility 1.1.
Sets the names of the detail definitions to retrieve to names
This function was introduced in Qt Mobility 1.1.
See also definitionNames().
Sets the type of organizer item for which detail definitions should be retrieved to organizeritemType
This function was introduced in Qt Mobility 1.1.
See also itemType().