Detailed Description
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.
Member Function Documentation
QOrganizerItemDetailDefinitionFetchRequest::QOrganizerItemDetailDefinitionFetchRequest ( QObject * parent = 0 )
Constructs a new detail definition fetch request whose parent is the specified parent
QStringList QOrganizerItemDetailDefinitionFetchRequest::definitionNames () const
Returns the list of names of the detail definitions that will be retrieved
See also setDefinitionNames().
Returns the map of detail definition names to detail definitions that was the result of the request
QMap<int, QOrganizerManager::Error> QOrganizerItemDetailDefinitionFetchRequest::errorMap () const
Returns the map of input name list indices to errors which occurred
QString QOrganizerItemDetailDefinitionFetchRequest::itemType () const
Returns the type of organizer item for which detail definitions will be retrieved
See also setItemType().
void QOrganizerItemDetailDefinitionFetchRequest::setDefinitionName ( const QString & definitionName )
Sets the name of the detail definition to retrieve to definitionName. Equivalent to calling
setDefinitionNames(QList<QOrganizerItemDetailDefinition>() << definitionName);
void QOrganizerItemDetailDefinitionFetchRequest::setDefinitionNames ( const QStringList & names )
Sets the names of the detail definitions to retrieve to names
See also definitionNames().
void QOrganizerItemDetailDefinitionFetchRequest::setItemType ( const QString & organizeritemType )
Sets the type of organizer item for which detail definitions should be retrieved to organizeritemType
See also itemType().