qtmobility/src/contacts/details/qcontactdetails.cpp
changeset 4 90517678cc4f
parent 1 2b40d63a9c3d
child 5 453da2cfceef
equal deleted inserted replaced
1:2b40d63a9c3d 4:90517678cc4f
   108    coordinate associated with a contact.
   108    coordinate associated with a contact.
   109    \ingroup contacts-details
   109    \ingroup contacts-details
   110 */
   110 */
   111 
   111 
   112 /*!
   112 /*!
       
   113    \class QContactGlobalPresence
       
   114    \brief The QContactGlobalPresence class provides aggregated presence information
       
   115    for a contact, synthesized or supplied by the backend.
       
   116    \ingroup contacts-details
       
   117  */
       
   118 
       
   119 /*!
   113    \class QContactGuid
   120    \class QContactGuid
   114    \brief The QContactGuid class contains the globally unique
   121    \brief The QContactGuid class contains the globally unique
   115    Id of a contact.
   122    Id of a contact.
   116    \ingroup contacts-details
   123    \ingroup contacts-details
   117  */
   124  */
   155    of a contact.
   162    of a contact.
   156    \ingroup contacts-details
   163    \ingroup contacts-details
   157  */
   164  */
   158 
   165 
   159 /*!
   166 /*!
       
   167    \class QContactPresence
       
   168    \brief The QContactPresence class provides presence information
       
   169    for an online account of a contact.
       
   170    \ingroup contacts-details
       
   171  */
       
   172 
       
   173 /*!
       
   174    \class QContactRingtone
       
   175    \brief The QContactRingtone class provides a ringtone associated
       
   176    with a contact
       
   177    \ingroup contacts-details
       
   178  */
       
   179 
       
   180 /*!
   160    \class QContactSyncTarget
   181    \class QContactSyncTarget
   161    \brief The QContactSyncTarget class provides a sync target
   182    \brief The QContactSyncTarget class provides a sync target
   162    for a contact.
   183    for a contact.
   163    \ingroup contacts-details
   184    \ingroup contacts-details
   164  */
   185  */
   165 
   186 
   166 /*!
   187 /*!
       
   188    \class QContactTag
       
   189    \brief The QContactTag class contains a tag associated with a
       
   190    contact.
       
   191    \ingroup contacts-details
       
   192  */
       
   193 
       
   194 /*!
       
   195    \class QContactThumbnail
       
   196    \brief The QContactThumbnail class contains a thumbnail used
       
   197    in display lists to represent the contact.
       
   198    \ingroup contacts-details
       
   199  */
       
   200 
       
   201 /*!
   167    \class QContactTimestamp
   202    \class QContactTimestamp
   168    \brief The QContactTimestamp class contains the creation and
   203    \brief The QContactTimestamp class contains the creation and
   169    last-modified timestamp associated with the contact.
   204    last-modified timestamp associated with the contact.
   170    \ingroup contacts-details
   205    \ingroup contacts-details
   171  */
   206  */
   185 
   220 
   186 /*!
   221 /*!
   187    \variable QContactName::DefinitionName
   222    \variable QContactName::DefinitionName
   188    The constant string which identifies the definition of details which are names.
   223    The constant string which identifies the definition of details which are names.
   189  */
   224  */
   190 Q_DEFINE_LATIN1_LITERAL(QContactName::DefinitionName, "Name");
   225 Q_DEFINE_LATIN1_CONSTANT(QContactName::DefinitionName, "Name");
   191 
   226 
   192 /*!
   227 /*!
   193    \variable QContactNickname::DefinitionName
   228    \variable QContactNickname::DefinitionName
   194    The constant string which identifies the definition of details which are nicknames.
   229    The constant string which identifies the definition of details which are nicknames.
   195  */
   230  */
   196 Q_DEFINE_LATIN1_LITERAL(QContactNickname::DefinitionName, "Nickname");
   231 Q_DEFINE_LATIN1_CONSTANT(QContactNickname::DefinitionName, "Nickname");
   197 
   232 
   198 /*!
   233 /*!
   199    \variable QContactNote::DefinitionName
   234    \variable QContactNote::DefinitionName
   200    The constant string which identifies the definition of details which are notes.
   235    The constant string which identifies the definition of details which are notes.
   201  */
   236  */
   202 Q_DEFINE_LATIN1_LITERAL(QContactNote::DefinitionName, "Note");
   237 Q_DEFINE_LATIN1_CONSTANT(QContactNote::DefinitionName, "Note");
   203 
   238 
   204 /*!
   239 /*!
   205    \variable QContactAvatar::DefinitionName
   240    \variable QContactAvatar::DefinitionName
   206    The constant string which identifies the definition of details which are avatars.
   241    The constant string which identifies the definition of details which are avatars.
   207  */
   242  */
   208 Q_DEFINE_LATIN1_LITERAL(QContactAvatar::DefinitionName, "Avatar");
   243 Q_DEFINE_LATIN1_CONSTANT(QContactAvatar::DefinitionName, "Avatar");
   209 
   244 
   210 /*!
   245 /*!
   211    \variable QContactAddress::DefinitionName
   246    \variable QContactAddress::DefinitionName
   212    The constant string which identifies the definition of details which are street addresses.
   247    The constant string which identifies the definition of details which are street addresses.
   213  */
   248  */
   214 Q_DEFINE_LATIN1_LITERAL(QContactAddress::DefinitionName, "StreetAddress");
   249 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::DefinitionName, "Address");
   215 
   250 
   216 /*!
   251 /*!
   217    \variable QContactPhoneNumber::DefinitionName
   252    \variable QContactPhoneNumber::DefinitionName
   218    The constant string which identifies the definition of details which are phone numbers.
   253    The constant string which identifies the definition of details which are phone numbers.
   219  */
   254  */
   220 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::DefinitionName, "PhoneNumber");
   255 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::DefinitionName, "PhoneNumber");
       
   256 
       
   257 /*!
       
   258    \variable QContactPresence::DefinitionName
       
   259    The constant string which identifies the definition of details which contain presence information.
       
   260  */
       
   261 Q_DEFINE_LATIN1_CONSTANT(QContactPresence::DefinitionName, "Presence");
       
   262 
       
   263 /*!
       
   264    \variable QContactPresence::FieldTimestamp
       
   265 
       
   266    The constant key for which the last update timestamp value is stored in details
       
   267    of the QContactPresence type.
       
   268  */
       
   269 Q_DEFINE_LATIN1_CONSTANT(QContactPresence::FieldTimestamp, "Timestamp");
       
   270 
       
   271 /*!
       
   272    \variable QContactPresence::FieldNickname
       
   273 
       
   274    The constant key for which the nickname value is stored in details
       
   275    of the QContactPresence type.
       
   276  */
       
   277 Q_DEFINE_LATIN1_CONSTANT(QContactPresence::FieldNickname, "Nickname");
       
   278 
       
   279 /*!
       
   280    \variable QContactPresence::FieldPresenceState
       
   281 
       
   282    The constant key for which the presence state value is stored in details
       
   283    of the QContactPresence typel.
       
   284  */
       
   285 Q_DEFINE_LATIN1_CONSTANT(QContactPresence::FieldPresenceState, "PresenceState");
       
   286 
       
   287 /*!
       
   288    \variable QContactPresence::FieldPresenceStateText
       
   289 
       
   290    The constant key for which the presence provider provided text representation
       
   291    of the presence state is stored in details of the QContactPresence type.
       
   292  */
       
   293 Q_DEFINE_LATIN1_CONSTANT(QContactPresence::FieldPresenceStateText, "PresenceStateText");
       
   294 
       
   295 /*!
       
   296    \variable QContactPresence::FieldPresenceStateImageUrl
       
   297 
       
   298    The constant key for which the image url value for the current presence state
       
   299    is stored in details of the QContactPresence type.
       
   300  */
       
   301 Q_DEFINE_LATIN1_CONSTANT(QContactPresence::FieldPresenceStateImageUrl, "PresenceStateImageUrl");
       
   302 
       
   303 /*!
       
   304    \variable QContactPresence::FieldCustomMessage
       
   305 
       
   306    The constant key for which the user-entered custom message for their state
       
   307    is stored in details of the QContactPresence type.
       
   308  */
       
   309 Q_DEFINE_LATIN1_CONSTANT(QContactPresence::FieldCustomMessage, "CustomMessage");
       
   310 
       
   311 /*!
       
   312    \variable QContactRingtone::DefinitionName
       
   313    The constant string which identifies the definition of details which are ringtones.
       
   314  */
       
   315 Q_DEFINE_LATIN1_CONSTANT(QContactRingtone::DefinitionName, "Ringtone");
   221 
   316 
   222 /*!
   317 /*!
   223    \variable QContactSyncTarget::DefinitionName
   318    \variable QContactSyncTarget::DefinitionName
   224    The constant string which identifies the definition of details which are synchronisation target stores.
   319    The constant string which identifies the definition of details which are synchronization target stores.
   225  */
   320  */
   226 Q_DEFINE_LATIN1_LITERAL(QContactSyncTarget::DefinitionName, "SyncTarget");
   321 Q_DEFINE_LATIN1_CONSTANT(QContactSyncTarget::DefinitionName, "SyncTarget");
   227 
   322 
   228 /*!
   323 /*!
   229    \variable QContactTimestamp::DefinitionName
   324    \variable QContactTimestamp::DefinitionName
   230    The constant string which identifies the definition of details which are contact synchronisation timestamps.
   325    The constant string which identifies the definition of details which are contact synchronization timestamps.
   231  */
   326  */
   232 Q_DEFINE_LATIN1_LITERAL(QContactTimestamp::DefinitionName, "Timestamp");
   327 Q_DEFINE_LATIN1_CONSTANT(QContactTimestamp::DefinitionName, "Timestamp");
   233 
   328 
   234 /*!
   329 /*!
   235    \variable QContactType::DefinitionName
   330    \variable QContactType::DefinitionName
   236    The constant string which identifies the definition of details which identify the type of the contact.
   331    The constant string which identifies the definition of details which identify the type of the contact.
   237  */
   332  */
   238 Q_DEFINE_LATIN1_LITERAL(QContactType::DefinitionName, "Type");
   333 Q_DEFINE_LATIN1_CONSTANT(QContactType::DefinitionName, "Type");
   239 
   334 
   240 /*!
   335 /*!
   241    \variable QContactGuid::DefinitionName
   336    \variable QContactGuid::DefinitionName
   242    The constant string which identifies the definition of details which are globally unique identifiers.
   337    The constant string which identifies the definition of details which are globally unique identifiers.
   243  */
   338  */
   244 Q_DEFINE_LATIN1_LITERAL(QContactGuid::DefinitionName, "Guid");
   339 Q_DEFINE_LATIN1_CONSTANT(QContactGuid::DefinitionName, "Guid");
   245 
   340 
   246 /*!
   341 /*!
   247    \variable QContactEmailAddress::DefinitionName
   342    \variable QContactEmailAddress::DefinitionName
   248    The constant string which identifies the definition of details which are email addresses.
   343    The constant string which identifies the definition of details which are email addresses.
   249  */
   344  */
   250 Q_DEFINE_LATIN1_LITERAL(QContactEmailAddress::DefinitionName, "EmailAddress");
   345 Q_DEFINE_LATIN1_CONSTANT(QContactEmailAddress::DefinitionName, "EmailAddress");
   251 
   346 
   252 /*!
   347 /*!
   253    \variable QContactFamily::DefinitionName
   348    \variable QContactFamily::DefinitionName
   254    The constant string which identifies the definition of details which contain the names of the contact's family.
   349    The constant string which identifies the definition of details which contain the names of the contact's family.
   255  */
   350  */
   256 Q_DEFINE_LATIN1_LITERAL(QContactFamily::DefinitionName, "Family");
   351 Q_DEFINE_LATIN1_CONSTANT(QContactFamily::DefinitionName, "Family");
   257 
   352 
   258 /*!
   353 /*!
   259    \variable QContactUrl::DefinitionName
   354    \variable QContactUrl::DefinitionName
   260    The constant string which identifies the definition of details which are universal resource location paths.
   355    The constant string which identifies the definition of details which are universal resource location paths.
   261  */
   356  */
   262 Q_DEFINE_LATIN1_LITERAL(QContactUrl::DefinitionName, "Url");
   357 Q_DEFINE_LATIN1_CONSTANT(QContactUrl::DefinitionName, "Url");
   263 
   358 
   264 /*!
   359 /*!
   265    \variable QContactBirthday::DefinitionName
   360    \variable QContactBirthday::DefinitionName
   266    The constant string which identifies the definition of details which are the dates of birthdays.
   361    The constant string which identifies the definition of details which are the dates of birthdays.
   267  */
   362  */
   268 Q_DEFINE_LATIN1_LITERAL(QContactBirthday::DefinitionName, "Birthday");
   363 Q_DEFINE_LATIN1_CONSTANT(QContactBirthday::DefinitionName, "Birthday");
   269 
   364 
   270 /*!
   365 /*!
   271    \variable QContactAnniversary::DefinitionName
   366    \variable QContactAnniversary::DefinitionName
   272    The constant string which identifies the definition of details which are anniversary dates.
   367    The constant string which identifies the definition of details which are anniversary dates.
   273  */
   368  */
   274 Q_DEFINE_LATIN1_LITERAL(QContactAnniversary::DefinitionName, "Anniversary");
   369 Q_DEFINE_LATIN1_CONSTANT(QContactAnniversary::DefinitionName, "Anniversary");
   275 
   370 
   276 /*!
   371 /*!
   277    \variable QContactGender::DefinitionName
   372    \variable QContactGender::DefinitionName
   278 
   373 
   279    The constant string which identifies the definition of details
   374    The constant string which identifies the definition of details
   280    which identify the gender of a contact in a given context.
   375    which identify the gender of a contact in a given context.
   281  */
   376  */
   282 Q_DEFINE_LATIN1_LITERAL(QContactGender::DefinitionName, "Gender");
   377 Q_DEFINE_LATIN1_CONSTANT(QContactGender::DefinitionName, "Gender");
   283 
   378 
   284 /*!
   379 /*!
   285    \variable QContactGeoLocation::DefinitionName
   380    \variable QContactGeoLocation::DefinitionName
   286 
   381 
   287    The constant string which identifies the definition of details
   382    The constant string which identifies the definition of details
   288    which describe a location associated with a contact.
   383    which describe a location associated with a contact.
   289  */
   384  */
   290 Q_DEFINE_LATIN1_LITERAL(QContactGeoLocation::DefinitionName, "GeoLocation");
   385 Q_DEFINE_LATIN1_CONSTANT(QContactGeoLocation::DefinitionName, "GeoLocation");
       
   386 
       
   387 /*!
       
   388    \variable QContactGlobalPresence::DefinitionName
       
   389    The constant string which identifies the definition of details which contain presence information.
       
   390  */
       
   391 Q_DEFINE_LATIN1_CONSTANT(QContactGlobalPresence::DefinitionName, "GlobalPresence");
       
   392 
       
   393 /*!
       
   394    \variable QContactGlobalPresence::FieldTimestamp
       
   395 
       
   396    The constant key for which the last update timestamp value is stored in details
       
   397    of the QContactGlobalPresence type.
       
   398  */
       
   399 Q_DEFINE_LATIN1_CONSTANT(QContactGlobalPresence::FieldTimestamp, "Timestamp");
       
   400 
       
   401 /*!
       
   402    \variable QContactGlobalPresence::FieldNickname
       
   403 
       
   404    The constant key for which the nickname value is stored in details
       
   405    of the QContactGlobalPresence type.
       
   406  */
       
   407 Q_DEFINE_LATIN1_CONSTANT(QContactGlobalPresence::FieldNickname, "Nickname");
       
   408 
       
   409 /*!
       
   410    \variable QContactGlobalPresence::FieldPresenceState
       
   411 
       
   412    The constant key for which the presence state value is stored in details
       
   413    of the QContactGlobalPresence typel.
       
   414  */
       
   415 Q_DEFINE_LATIN1_CONSTANT(QContactGlobalPresence::FieldPresenceState, "PresenceState");
       
   416 
       
   417 /*!
       
   418    \variable QContactGlobalPresence::FieldPresenceStateText
       
   419 
       
   420    The constant key for which the presence provider provided text representation
       
   421    of the presence state is stored in details of the QContactGlobalPresence type.
       
   422  */
       
   423 Q_DEFINE_LATIN1_CONSTANT(QContactGlobalPresence::FieldPresenceStateText, "PresenceStateText");
       
   424 
       
   425 /*!
       
   426    \variable QContactGlobalPresence::FieldPresenceStateImageUrl
       
   427 
       
   428    The constant key for which the image url value for the current presence state
       
   429    is stored in details of the QContactGlobalPresence type.
       
   430  */
       
   431 Q_DEFINE_LATIN1_CONSTANT(QContactGlobalPresence::FieldPresenceStateImageUrl, "PresenceStateImageUrl");
       
   432 
       
   433 /*!
       
   434    \variable QContactGlobalPresence::FieldCustomMessage
       
   435 
       
   436    The constant key for which the user-entered custom message for their state
       
   437    is stored in details of the QContactGlobalPresence type.
       
   438  */
       
   439 Q_DEFINE_LATIN1_CONSTANT(QContactGlobalPresence::FieldCustomMessage, "CustomMessage");
   291 
   440 
   292 /*!
   441 /*!
   293    \variable QContactOnlineAccount::DefinitionName
   442    \variable QContactOnlineAccount::DefinitionName
   294 
   443 
   295    The constant string which identifies the definition of details
   444    The constant string which identifies the definition of details
   296    which identify the organization to which a contact belongs in a
   445    which identify the organization to which a contact belongs in a
   297    given context.
   446    given context.
   298  */
   447  */
   299 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::DefinitionName, "OnlineAccount");
   448 Q_DEFINE_LATIN1_CONSTANT(QContactOnlineAccount::DefinitionName, "OnlineAccount");
   300 
   449 
   301 /*!
   450 /*!
   302    \variable QContactOnlineAccount::FieldNickname
   451    \variable QContactTag::DefinitionName
   303 
   452    The constant string which identifies the definition of details which are tags.
   304    The constant key for which the nickname value is stored in details
   453  */
   305    of the QContactOnlineAccount type.
   454 Q_DEFINE_LATIN1_CONSTANT(QContactTag::DefinitionName, "Tag");
   306  */
   455 
   307 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::FieldNickname, "Nickname");
   456 /*!
   308 
   457    \variable QContactThumbnail::DefinitionName
   309 /*!
   458    The constant string which identifies the definition of details which are thumbnails.
   310    \variable QContactOnlineAccount::FieldPresence
   459  */
   311 
   460 Q_DEFINE_LATIN1_CONSTANT(QContactThumbnail::DefinitionName, "Thumbnail");
   312    The constant key for which the presence value is stored in details
       
   313    of the QContactOnlineAccount typel.
       
   314  */
       
   315 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::FieldPresence, "Presence");
       
   316 
       
   317 /*!
       
   318    \variable QContactOnlineAccount::PresenceAvailable
       
   319 
       
   320    The value for presence which specifies that the contact's current
       
   321    status is available.
       
   322  */
       
   323 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::PresenceAvailable, "Available");
       
   324 
       
   325 /*!
       
   326    \variable QContactOnlineAccount::PresenceHidden
       
   327 
       
   328    The value for presence which specifies that the contact's current.
       
   329    status is hidden
       
   330  */
       
   331 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::PresenceHidden, "Hidden");
       
   332 
       
   333 /*!
       
   334    \variable QContactOnlineAccount::PresenceBusy
       
   335    The value for presence which specifies that the contact's current status is busy.
       
   336  */
       
   337 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::PresenceBusy, "Busy");
       
   338 
       
   339 /*!
       
   340    \variable QContactOnlineAccount::PresenceAway
       
   341    The value for presence which specifies that the contact's current status is away.
       
   342  */
       
   343 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::PresenceAway, "Away");
       
   344 
       
   345 /*!
       
   346    \variable QContactOnlineAccount::PresenceExtendedAway
       
   347    The value for presence which specifies that the contact's current status is extended away.
       
   348  */
       
   349 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::PresenceExtendedAway, "ExtendedAway");
       
   350 
       
   351 /*!
       
   352    \variable QContactOnlineAccount::PresenceUnknown
       
   353    The value for presence which specifies that the contact's current status is unknown.
       
   354  */
       
   355 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::PresenceUnknown, "Unknown");
       
   356 
       
   357 /*!
       
   358    \variable QContactOnlineAccount::PresenceOffline
       
   359    The value for presence which specifies that the contact's current status is offline.
       
   360  */
       
   361 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::PresenceOffline, "Offline");
       
   362 
       
   363 /*!
       
   364    \variable QContactOnlineAccount::FieldStatusMessage
       
   365 
       
   366    The constant key for which the status message value is stored in
       
   367    details of the QContactOnlineAccount type.
       
   368  */
       
   369 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::FieldStatusMessage, "StatusMessage");
       
   370 
   461 
   371 /*!
   462 /*!
   372    \variable QContactOnlineAccount::FieldCapabilities
   463    \variable QContactOnlineAccount::FieldCapabilities
   373 
   464 
   374    The constant key for which the account capabilities value is stored in
   465    The constant key for which the account capabilities value is stored in
   375    details of the QContactOnlineAccount type.
   466    details of the QContactOnlineAccount type.
   376  */
   467  */
   377 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::FieldCapabilities, "Capabilities");
   468 Q_DEFINE_LATIN1_CONSTANT(QContactOnlineAccount::FieldCapabilities, "Capabilities");
       
   469 
       
   470 /*!
       
   471    \variable QContactOnlineAccount::FieldAccountUri
       
   472 
       
   473    The constant key for which the remote account uri value is stored
       
   474    in details of the QContactOnlineAccount type.
       
   475  */
       
   476 Q_DEFINE_LATIN1_CONSTANT(QContactOnlineAccount::FieldAccountUri, "AccountUri");
       
   477 
       
   478 /*!
       
   479    \variable QContactOnlineAccount::FieldServiceProvider
       
   480 
       
   481    The constant key for which the service provider value is stored in
       
   482    details of the QContactOnlineAccount type.
       
   483  */
       
   484 Q_DEFINE_LATIN1_CONSTANT(QContactOnlineAccount::FieldServiceProvider, "ServiceProvider");
       
   485 
       
   486 /*!
       
   487    \variable QContactOnlineAccount::FieldSubTypes
       
   488 
       
   489    The constant key for which the subtypes value is stored in details
       
   490    of the QContactOnlineAccount type.
       
   491  */
       
   492 Q_DEFINE_LATIN1_CONSTANT(QContactOnlineAccount::FieldSubTypes, "SubTypes");
       
   493 
       
   494 /*!
       
   495    \variable QContactOnlineAccount::SubTypeSip
       
   496 
       
   497    The constant attribute value which describes the online account as
       
   498    supporting SIP.
       
   499  */
       
   500 Q_DEFINE_LATIN1_CONSTANT(QContactOnlineAccount::SubTypeSip, "Sip");
       
   501 
       
   502 /*!
       
   503    \variable QContactOnlineAccount::SubTypeSipVoip
       
   504 
       
   505    The constant attribute value which describes the online account as
       
   506    supporting SIP-based VoIP.
       
   507  */
       
   508 Q_DEFINE_LATIN1_CONSTANT(QContactOnlineAccount::SubTypeSipVoip, "SipVoip");
       
   509 
       
   510 /*!
       
   511    \variable QContactOnlineAccount::SubTypeImpp
       
   512 
       
   513    The constant attribute value which describes the online account as
       
   514    supporting IMPP.
       
   515  */
       
   516 Q_DEFINE_LATIN1_CONSTANT(QContactOnlineAccount::SubTypeImpp, "Impp");
       
   517 
       
   518 /*!
       
   519    \variable QContactOnlineAccount::SubTypeVideoShare
       
   520 
       
   521    The constant attribute value which describes the online account as
       
   522    supporting VideoShare.
       
   523  */
       
   524 Q_DEFINE_LATIN1_CONSTANT(QContactOnlineAccount::SubTypeVideoShare, "VideoShare");
   378 
   525 
   379 /*!
   526 /*!
   380    \variable QContactOrganization::DefinitionName
   527    \variable QContactOrganization::DefinitionName
   381 
   528 
   382    The constant string which identifies the definition of details
   529    The constant string which identifies the definition of details
   383    which identify the organization to which a contact belongs in a
   530    which identify the organization to which a contact belongs in a
   384    given context.
   531    given context.
   385  */
   532  */
   386 Q_DEFINE_LATIN1_LITERAL(QContactOrganization::DefinitionName, "Organization");
   533 Q_DEFINE_LATIN1_CONSTANT(QContactOrganization::DefinitionName, "Organization");
   387 
   534 
   388 /*!
   535 /*!
   389    \variable QContactDisplayLabel::DefinitionName
   536    \variable QContactDisplayLabel::DefinitionName
   390 
   537 
   391    The constant string which identifies the definition of details
   538    The constant string which identifies the definition of details
   392    which contain a display label of a contact.
   539    which contain a display label of a contact.
   393  */
   540  */
   394 Q_DEFINE_LATIN1_LITERAL(QContactDisplayLabel::DefinitionName, "DisplayLabel");
   541 Q_DEFINE_LATIN1_CONSTANT(QContactDisplayLabel::DefinitionName, "DisplayLabel");
   395 
   542 
   396 
   543 
   397 /*!
   544 /*!
   398    \variable QContactPhoneNumber::FieldNumber
   545    \variable QContactPhoneNumber::FieldNumber
   399 
   546 
   400    The constant key for which the phone number value is stored in
   547    The constant key for which the phone number value is stored in
   401    details of the QContactPhoneNumber type.
   548    details of the QContactPhoneNumber type.
   402  */
   549  */
   403 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::FieldNumber, "PhoneNumber");
   550 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::FieldNumber, "PhoneNumber");
   404 
   551 
   405 /*!
   552 /*!
   406    \variable QContactPhoneNumber::FieldSubTypes
   553    \variable QContactPhoneNumber::FieldSubTypes
   407 
   554 
   408    The constant key for which the subtype values are stored in details
   555    The constant key for which the subtype values are stored in details
   409    of the QContactPhoneNumber type.
   556    of the QContactPhoneNumber type.
   410  */
   557  */
   411 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::FieldSubTypes, "SubTypes");
   558 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::FieldSubTypes, "SubTypes");
   412 
   559 
   413 /*!
   560 /*!
   414    \variable QContactEmailAddress::FieldEmailAddress
   561    \variable QContactEmailAddress::FieldEmailAddress
   415 
   562 
   416    The constant key for which the email address value is stored in
   563    The constant key for which the email address value is stored in
   417    details of the QContactEmailAddress type.
   564    details of the QContactEmailAddress type.
   418  */
   565  */
   419 Q_DEFINE_LATIN1_LITERAL(QContactEmailAddress::FieldEmailAddress, "EmailAddress");
   566 Q_DEFINE_LATIN1_CONSTANT(QContactEmailAddress::FieldEmailAddress, "EmailAddress");
   420 
   567 
   421 /*!
   568 /*!
   422    \variable QContactFamily::FieldSpouse
   569    \variable QContactFamily::FieldSpouse
   423 
   570 
   424    The constant key for which the spouse name value is stored in
   571    The constant key for which the spouse name value is stored in
   425    details of the QContactFamily type.
   572    details of the QContactFamily type.
   426  */
   573  */
   427 Q_DEFINE_LATIN1_LITERAL(QContactFamily::FieldSpouse, "Spouse");
   574 Q_DEFINE_LATIN1_CONSTANT(QContactFamily::FieldSpouse, "Spouse");
   428 
   575 
   429 /*!
   576 /*!
   430    \variable QContactFamily::FieldChildren
   577    \variable QContactFamily::FieldChildren
   431 
   578 
   432    The constant key for which the children names value is stored in
   579    The constant key for which the children names value is stored in
   433    details of the QContactFamily type.
   580    details of the QContactFamily type.
   434  */
   581  */
   435 Q_DEFINE_LATIN1_LITERAL(QContactFamily::FieldChildren, "Children");
   582 Q_DEFINE_LATIN1_CONSTANT(QContactFamily::FieldChildren, "Children");
   436 
   583 
   437 /*!
   584 /*!
   438    \variable QContactGuid::FieldGuid
   585    \variable QContactGuid::FieldGuid
   439 
   586 
   440    The constant key for which the globally unique identifier value is
   587    The constant key for which the globally unique identifier value is
   441    stored in details of the QContactGuid type.
   588    stored in details of the QContactGuid type.
   442  */
   589  */
   443 Q_DEFINE_LATIN1_LITERAL(QContactGuid::FieldGuid, "Guid");
   590 Q_DEFINE_LATIN1_CONSTANT(QContactGuid::FieldGuid, "Guid");
   444 
   591 
   445 /*!
   592 /*!
   446    \variable QContactSyncTarget::FieldSyncTarget
   593    \variable QContactSyncTarget::FieldSyncTarget
   447 
   594 
   448    The constant key for which the value of the target store for
   595    The constant key for which the value of the target store for
   449    synchronisation is stored in details of the QContactSyncTarget type.
   596    synchronization is stored in details of the QContactSyncTarget type.
   450  */
   597  */
   451 Q_DEFINE_LATIN1_LITERAL(QContactSyncTarget::FieldSyncTarget, "SyncTarget");
   598 Q_DEFINE_LATIN1_CONSTANT(QContactSyncTarget::FieldSyncTarget, "SyncTarget");
   452 
   599 
   453 /*!
   600 /*!
   454    \variable QContactAvatar::FieldAvatar
   601    \variable QContactAvatar::FieldImageUrl
   455 
   602 
   456    The constant key for which the path the avatar value is stored in
   603    The constant key for which the url of the avatar image value is stored in
   457    details of the QContactAvatar type.
   604    details of the QContactAvatar type.
   458  */
   605  */
   459 Q_DEFINE_LATIN1_LITERAL(QContactAvatar::FieldAvatar, "Avatar");
   606 Q_DEFINE_LATIN1_CONSTANT(QContactAvatar::FieldImageUrl, "ImageUrl");
   460 
   607 
   461 /*!
   608 /*!
   462    \variable QContactAvatar::FieldAvatarPixmap
   609    \variable QContactAvatar::FieldVideoUrl
   463 
   610 
   464    The constant key for which the path the avatar value is stored in
   611    The constant key for which the url of the avatar video value is stored in
   465    details of the QContactAvatar type.
   612    details of the QContactAvatar type.
   466  */
   613  */
   467 Q_DEFINE_LATIN1_LITERAL(QContactAvatar::FieldAvatarPixmap, "AvatarPixmap");
   614 Q_DEFINE_LATIN1_CONSTANT(QContactAvatar::FieldVideoUrl, "VideoUrl");
   468 
       
   469 /*!
       
   470    \variable QContactAvatar::FieldSubType
       
   471 
       
   472    The constant key for which the subtypes value is stored in details
       
   473    of the QContactAvatar type.
       
   474  */
       
   475 Q_DEFINE_LATIN1_LITERAL(QContactAvatar::FieldSubType, "SubType");
       
   476 
   615 
   477 /*!
   616 /*!
   478    \variable QContactName::FieldPrefix
   617    \variable QContactName::FieldPrefix
   479 
   618 
   480    The constant key for which the name prefix value is stored in
   619    The constant key for which the name prefix value is stored in
   481    details of the QContactName type.
   620    details of the QContactName type.
   482  */
   621  */
   483 Q_DEFINE_LATIN1_LITERAL(QContactName::FieldPrefix, "Prefix");
   622 Q_DEFINE_LATIN1_CONSTANT(QContactName::FieldPrefix, "Prefix");
   484 
   623 
   485 /*!
   624 /*!
   486    \variable QContactName::FieldFirstName
   625    \variable QContactName::FieldFirstName
   487 
   626 
   488    The constant key for which the first name value is stored in
   627    The constant key for which the first name value is stored in
   489    details of the QContactName type.
   628    details of the QContactName type.
   490  */
   629  */
   491 Q_DEFINE_LATIN1_LITERAL(QContactName::FieldFirstName, "FirstName");
   630 Q_DEFINE_LATIN1_CONSTANT(QContactName::FieldFirstName, "FirstName");
   492 
   631 
   493 /*!
   632 /*!
   494    \variable QContactName::FieldMiddleName
   633    \variable QContactName::FieldMiddleName
   495 
   634 
   496    The constant key for which the middle name value is stored in
   635    The constant key for which the middle name value is stored in
   497    details of the QContactName type.
   636    details of the QContactName type.
   498  */
   637  */
   499 Q_DEFINE_LATIN1_LITERAL(QContactName::FieldMiddleName, "MiddleName");
   638 Q_DEFINE_LATIN1_CONSTANT(QContactName::FieldMiddleName, "MiddleName");
   500 
   639 
   501 /*!
   640 /*!
   502    \variable QContactName::FieldLastName
   641    \variable QContactName::FieldLastName
   503 
   642 
   504    The constant key for which the last name value is stored in details
   643    The constant key for which the last name value is stored in details
   505    of the QContactName type.
   644    of the QContactName type.
   506  */
   645  */
   507 Q_DEFINE_LATIN1_LITERAL(QContactName::FieldLastName, "LastName");
   646 Q_DEFINE_LATIN1_CONSTANT(QContactName::FieldLastName, "LastName");
   508 
       
   509 /*!
       
   510    \variable QContactName::FieldFirst
       
   511 
       
   512    The constant key for which the first name value is stored in
       
   513    details of the QContactName type.
       
   514  */
       
   515 Q_DEFINE_LATIN1_LITERAL(QContactName::FieldFirst, "FirstName");
       
   516 
       
   517 /*!
       
   518    \variable QContactName::FieldMiddle
       
   519 
       
   520    The constant key for which the middle name value is stored in
       
   521    details of the QContactName type.
       
   522  */
       
   523 Q_DEFINE_LATIN1_LITERAL(QContactName::FieldMiddle, "MiddleName");
       
   524 
       
   525 /*!
       
   526    \variable QContactName::FieldLast
       
   527 
       
   528    The constant key for which the last name value is stored in details
       
   529    of the QContactName type.
       
   530  */
       
   531 Q_DEFINE_LATIN1_LITERAL(QContactName::FieldLast, "LastName");
       
   532 
   647 
   533 /*!
   648 /*!
   534    \variable QContactName::FieldSuffix
   649    \variable QContactName::FieldSuffix
   535 
   650 
   536    The constant key for which the name suffix value is stored in
   651    The constant key for which the name suffix value is stored in
   537    details of the QContactName type.
   652    details of the QContactName type.
   538  */
   653  */
   539 Q_DEFINE_LATIN1_LITERAL(QContactName::FieldSuffix, "Suffix");
   654 Q_DEFINE_LATIN1_CONSTANT(QContactName::FieldSuffix, "Suffix");
   540 
   655 
   541 /*!
   656 /*!
   542    \variable QContactName::FieldCustomLabel
   657    \variable QContactName::FieldCustomLabel
   543 
   658 
   544    The constant key for which the custom name label value is stored in
   659    The constant key for which the custom name label value is stored in
   545    details of the QContactName type, if supported.
   660    details of the QContactName type, if supported.
   546  */
   661  */
   547 Q_DEFINE_LATIN1_LITERAL(QContactName::FieldCustomLabel, "CustomLabel");
   662 Q_DEFINE_LATIN1_CONSTANT(QContactName::FieldCustomLabel, "CustomLabel");
   548 
   663 
   549 /*!
   664 /*!
   550    \variable QContactNickname::FieldNickname
   665    \variable QContactNickname::FieldNickname
   551 
   666 
   552    The constant key for which the nickname value is stored in details
   667    The constant key for which the nickname value is stored in details
   553    of the QContactNickname type.
   668    of the QContactNickname type.
   554  */
   669  */
   555 Q_DEFINE_LATIN1_LITERAL(QContactNickname::FieldNickname, "Nickname");
   670 Q_DEFINE_LATIN1_CONSTANT(QContactNickname::FieldNickname, "Nickname");
   556 
   671 
   557 /*!
   672 /*!
   558    \variable QContactNote::FieldNote
   673    \variable QContactNote::FieldNote
   559 
   674 
   560    The constant key for which the note value is stored in details of
   675    The constant key for which the note value is stored in details of
   561    the QContactNote type.
   676    the QContactNote type.
   562  */
   677  */
   563 Q_DEFINE_LATIN1_LITERAL(QContactNote::FieldNote, "Note");
   678 Q_DEFINE_LATIN1_CONSTANT(QContactNote::FieldNote, "Note");
   564 
   679 
   565 /*!
   680 /*!
   566    \variable QContactAddress::FieldStreet
   681    \variable QContactAddress::FieldStreet
   567 
   682 
   568    The constant key for which the street value is stored in details of
   683    The constant key for which the street value is stored in details of
   569    the QContactAddress type.
   684    the QContactAddress type.
   570  */
   685  */
   571 Q_DEFINE_LATIN1_LITERAL(QContactAddress::FieldStreet, "Street");
   686 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::FieldStreet, "Street");
   572 
   687 
   573 /*!
   688 /*!
   574    \variable QContactAddress::FieldLocality
   689    \variable QContactAddress::FieldLocality
   575 
   690 
   576    The constant key for which the locality value is stored in details
   691    The constant key for which the locality value is stored in details
   577    of the QContactAddress type.
   692    of the QContactAddress type.
   578  */
   693  */
   579 Q_DEFINE_LATIN1_LITERAL(QContactAddress::FieldLocality, "Locality");
   694 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::FieldLocality, "Locality");
   580 
   695 
   581 /*!
   696 /*!
   582    \variable QContactAddress::FieldRegion
   697    \variable QContactAddress::FieldRegion
   583 
   698 
   584    The constant key for which the region value is stored in details of
   699    The constant key for which the region value is stored in details of
   585    the QContactAddress type.
   700    the QContactAddress type.
   586  */
   701  */
   587 Q_DEFINE_LATIN1_LITERAL(QContactAddress::FieldRegion, "Region");
   702 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::FieldRegion, "Region");
   588 
   703 
   589 /*!
   704 /*!
   590    \variable QContactAddress::FieldPostcode
   705    \variable QContactAddress::FieldPostcode
   591 
   706 
   592    The constant key for which the postcode value is stored in details
   707    The constant key for which the postcode value is stored in details
   593    of the QContactAddress type.
   708    of the QContactAddress type.
   594  */
   709  */
   595 Q_DEFINE_LATIN1_LITERAL(QContactAddress::FieldPostcode, "Postcode");
   710 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::FieldPostcode, "Postcode");
   596 
   711 
   597 /*!
   712 /*!
   598    \variable QContactAddress::FieldCountry
   713    \variable QContactAddress::FieldCountry
   599 
   714 
   600    The constant key for which the country value is stored in details
   715    The constant key for which the country value is stored in details
   601    of the QContactAddress type.
   716    of the QContactAddress type.
   602  */
   717  */
   603 Q_DEFINE_LATIN1_LITERAL(QContactAddress::FieldCountry, "Country");
   718 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::FieldCountry, "Country");
   604 
   719 
   605 /*!
   720 /*!
   606    \variable QContactAddress::FieldPostOfficeBox
   721    \variable QContactAddress::FieldPostOfficeBox
   607 
   722 
   608    The constant key for which the post office box value is stored in
   723    The constant key for which the post office box value is stored in
   609    details of the QContactAddress type.
   724    details of the QContactAddress type.
   610  */
   725  */
   611 Q_DEFINE_LATIN1_LITERAL(QContactAddress::FieldPostOfficeBox, "PostOfficeBox");
   726 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::FieldPostOfficeBox, "PostOfficeBox");
   612 
   727 
   613 /*!
   728 /*!
   614    \variable QContactAddress::FieldSubTypes
   729    \variable QContactAddress::FieldSubTypes
   615 
   730 
   616    The constant key for which the subtypes value is stored in details
   731    The constant key for which the subtypes value is stored in details
   617    of the QContactAddress type.
   732    of the QContactAddress type.
   618  */
   733  */
   619 Q_DEFINE_LATIN1_LITERAL(QContactAddress::FieldSubTypes, "SubTypes");
   734 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::FieldSubTypes, "SubTypes");
   620 
   735 
   621 /*!
   736 /*!
   622    \variable QContactUrl::FieldUrl
   737    \variable QContactUrl::FieldUrl
   623 
   738 
   624    The constant key for which the url value is stored in details of
   739    The constant key for which the url value is stored in details of
   625    the QContactUrl type.
   740    the QContactUrl type.
   626  */
   741  */
   627 Q_DEFINE_LATIN1_LITERAL(QContactUrl::FieldUrl, "Url");
   742 Q_DEFINE_LATIN1_CONSTANT(QContactUrl::FieldUrl, "Url");
   628 
   743 
   629 /*!
   744 /*!
   630    \variable QContactUrl::FieldSubType
   745    \variable QContactUrl::FieldSubType
   631 
   746 
   632    The constant key for which the subtypes value is stored in details
   747    The constant key for which the subtypes value is stored in details
   633    of the QContactUrl type.
   748    of the QContactUrl type.
   634  */
   749  */
   635 Q_DEFINE_LATIN1_LITERAL(QContactUrl::FieldSubType, "SubType");
   750 Q_DEFINE_LATIN1_CONSTANT(QContactUrl::FieldSubType, "SubType");
   636 
   751 
   637 /*!
   752 /*!
   638    \variable QContactBirthday::FieldBirthday
   753    \variable QContactBirthday::FieldBirthday
   639 
   754 
   640    The constant key for which the birthday date value is stored in
   755    The constant key for which the birthday date value is stored in
   641    details of the QContactBirthday type.
   756    details of the QContactBirthday type.
   642  */
   757  */
   643 Q_DEFINE_LATIN1_LITERAL(QContactBirthday::FieldBirthday, "Birthday");
   758 Q_DEFINE_LATIN1_CONSTANT(QContactBirthday::FieldBirthday, "Birthday");
   644 
   759 
   645 /*!
   760 /*!
   646    \variable QContactAnniversary::FieldOriginalDate
   761    \variable QContactAnniversary::FieldOriginalDate
   647 
   762 
   648    The constant key for which the anniversary original event date
   763    The constant key for which the anniversary original event date
   649    value is stored in details of the QContactAnniversary type.
   764    value is stored in details of the QContactAnniversary type.
   650  */
   765  */
   651 Q_DEFINE_LATIN1_LITERAL(QContactAnniversary::FieldOriginalDate, "OriginalDate");
   766 Q_DEFINE_LATIN1_CONSTANT(QContactAnniversary::FieldOriginalDate, "OriginalDate");
   652 
   767 
   653 /*!
   768 /*!
   654    \variable QContactAnniversary::FieldEvent
   769    \variable QContactAnniversary::FieldEvent
   655 
   770 
   656    The constant key for which the name of the event is stored in
   771    The constant key for which the name of the event is stored in
   657    details of the QContactAnniversary type.
   772    details of the QContactAnniversary type.
   658  */
   773  */
   659 Q_DEFINE_LATIN1_LITERAL(QContactAnniversary::FieldEvent, "Event");
   774 Q_DEFINE_LATIN1_CONSTANT(QContactAnniversary::FieldEvent, "Event");
   660 
   775 
   661 /*!
   776 /*!
   662    \variable QContactAnniversary::FieldCalendarId
   777    \variable QContactAnniversary::FieldCalendarId
   663 
   778 
   664    The constant key for which the value of the identifier of the
   779    The constant key for which the value of the identifier of the
   665    associated calendar entry is stored in details of the
   780    associated calendar entry is stored in details of the
   666    QContactAnniversary type.
   781    QContactAnniversary type.
   667  */
   782  */
   668 Q_DEFINE_LATIN1_LITERAL(QContactAnniversary::FieldCalendarId, "CalendarId");
   783 Q_DEFINE_LATIN1_CONSTANT(QContactAnniversary::FieldCalendarId, "CalendarId");
   669 
   784 
   670 /*!
   785 /*!
   671    \variable QContactAnniversary::FieldSubType
   786    \variable QContactAnniversary::FieldSubType
   672 
   787 
   673    The constant key for which the subtypes value is stored in details
   788    The constant key for which the subtypes value is stored in details
   674    of the QContactAnniversary type.
   789    of the QContactAnniversary type.
   675  */
   790  */
   676 Q_DEFINE_LATIN1_LITERAL(QContactAnniversary::FieldSubType, "SubType");
   791 Q_DEFINE_LATIN1_CONSTANT(QContactAnniversary::FieldSubType, "SubType");
       
   792 
       
   793 /*!
       
   794    \variable QContactDisplayLabel::FieldLabel
       
   795 
       
   796    The constant key for which the display label value is stored in
       
   797    details of the QContactDisplayLabel type.
       
   798  */
       
   799 Q_DEFINE_LATIN1_CONSTANT(QContactDisplayLabel::FieldLabel, "Label");
   677 
   800 
   678 /*!
   801 /*!
   679    \variable QContactGender::FieldGender
   802    \variable QContactGender::FieldGender
   680 
   803 
   681    The constant key for which the gender value is stored in details of
   804    The constant key for which the gender value is stored in details of
   682    the QContactGender type.
   805    the QContactGender type.
   683  */
   806  */
   684 Q_DEFINE_LATIN1_LITERAL(QContactGender::FieldGender, "Gender");
   807 Q_DEFINE_LATIN1_CONSTANT(QContactGender::FieldGender, "Gender");
   685 
   808 
   686 /*!
   809 /*!
   687    \variable QContactGender::GenderMale
   810    \variable QContactGender::GenderMale
   688    The value that identifies this contact as being male.
   811    The value that identifies this contact as being male.
   689  */
   812  */
   690 Q_DEFINE_LATIN1_LITERAL(QContactGender::GenderMale, "Male");
   813 Q_DEFINE_LATIN1_CONSTANT(QContactGender::GenderMale, "Male");
   691 
   814 
   692 /*!
   815 /*!
   693    \variable QContactGender::GenderFemale
   816    \variable QContactGender::GenderFemale
   694    The value that identifies this contact as being female.
   817    The value that identifies this contact as being female.
   695  */
   818  */
   696 Q_DEFINE_LATIN1_LITERAL(QContactGender::GenderFemale, "Female");
   819 Q_DEFINE_LATIN1_CONSTANT(QContactGender::GenderFemale, "Female");
   697 
   820 
   698 /*!
   821 /*!
   699    \variable QContactGender::GenderUnspecified
   822    \variable QContactGender::GenderUnspecified
   700    The value that identifies this contact as being of unspecified gender.
   823    The value that identifies this contact as being of unspecified gender.
   701  */
   824  */
   702 Q_DEFINE_LATIN1_LITERAL(QContactGender::GenderUnspecified, "Unspecified");
   825 Q_DEFINE_LATIN1_CONSTANT(QContactGender::GenderUnspecified, "Unspecified");
   703 
   826 
   704 /*!
   827 /*!
   705    \variable QContactGeoLocation::FieldLabel
   828    \variable QContactGeoLocation::FieldLabel
   706 
   829 
   707    The constant key for which the location label value is stored in
   830    The constant key for which the location label value is stored in
   708    details of the QContactGeoLocation type.
   831    details of the QContactGeoLocation type.
   709  */
   832  */
   710 Q_DEFINE_LATIN1_LITERAL(QContactGeoLocation::FieldLabel, "Label");
   833 Q_DEFINE_LATIN1_CONSTANT(QContactGeoLocation::FieldLabel, "Label");
   711 
   834 
   712 /*!
   835 /*!
   713    \variable QContactGeoLocation::FieldLatitude
   836    \variable QContactGeoLocation::FieldLatitude
   714 
   837 
   715    The constant key for which the latitude value is stored in details
   838    The constant key for which the latitude value is stored in details
   716    of the QContactGeoLocation type.
   839    of the QContactGeoLocation type.
   717  */
   840  */
   718 Q_DEFINE_LATIN1_LITERAL(QContactGeoLocation::FieldLatitude, "Latitude");
   841 Q_DEFINE_LATIN1_CONSTANT(QContactGeoLocation::FieldLatitude, "Latitude");
   719 
   842 
   720 /*!
   843 /*!
   721    \variable QContactGeoLocation::FieldLongitude
   844    \variable QContactGeoLocation::FieldLongitude
   722 
   845 
   723    The constant key for which the longitude value is stored in details
   846    The constant key for which the longitude value is stored in details
   724    of the QContactGeoLocation type.
   847    of the QContactGeoLocation type.
   725  */
   848  */
   726 Q_DEFINE_LATIN1_LITERAL(QContactGeoLocation::FieldLongitude, "Longitude");
   849 Q_DEFINE_LATIN1_CONSTANT(QContactGeoLocation::FieldLongitude, "Longitude");
   727 
   850 
   728 /*!
   851 /*!
   729    \variable QContactGeoLocation::FieldAccuracy
   852    \variable QContactGeoLocation::FieldAccuracy
   730 
   853 
   731    The constant key for which the location accuracy value is stored in
   854    The constant key for which the location accuracy value is stored in
   732    details of the QContactGeoLocation type.
   855    details of the QContactGeoLocation type.
   733  */
   856  */
   734 Q_DEFINE_LATIN1_LITERAL(QContactGeoLocation::FieldAccuracy, "Accuracy");
   857 Q_DEFINE_LATIN1_CONSTANT(QContactGeoLocation::FieldAccuracy, "Accuracy");
   735 
   858 
   736 /*!
   859 /*!
   737    \variable QContactGeoLocation::FieldAltitude
   860    \variable QContactGeoLocation::FieldAltitude
   738 
   861 
   739    The constant key for which the altitude value is stored in details
   862    The constant key for which the altitude value is stored in details
   740    of the QContactGeoLocation type.
   863    of the QContactGeoLocation type.
   741  */
   864  */
   742 Q_DEFINE_LATIN1_LITERAL(QContactGeoLocation::FieldAltitude, "Altitude");
   865 Q_DEFINE_LATIN1_CONSTANT(QContactGeoLocation::FieldAltitude, "Altitude");
   743 
   866 
   744 
   867 
   745 /*!
   868 /*!
   746    \variable QContactGeoLocation::FieldAltitudeAccuracy
   869    \variable QContactGeoLocation::FieldAltitudeAccuracy
   747 
   870 
   748    The constant key for which the altitude accuracy value is stored in
   871    The constant key for which the altitude accuracy value is stored in
   749    details of the QContactGeoLocation type.
   872    details of the QContactGeoLocation type.
   750  */
   873  */
   751 Q_DEFINE_LATIN1_LITERAL(QContactGeoLocation::FieldAltitudeAccuracy, "AltitudeAccuracy");
   874 Q_DEFINE_LATIN1_CONSTANT(QContactGeoLocation::FieldAltitudeAccuracy, "AltitudeAccuracy");
   752 
   875 
   753 /*!
   876 /*!
   754    \variable QContactGeoLocation::FieldHeading
   877    \variable QContactGeoLocation::FieldHeading
   755 
   878 
   756    The constant key for which the heading value is stored in details
   879    The constant key for which the heading value is stored in details
   757    of the QContactGeoLocation type.
   880    of the QContactGeoLocation type.
   758  */
   881  */
   759 Q_DEFINE_LATIN1_LITERAL(QContactGeoLocation::FieldHeading, "Heading");
   882 Q_DEFINE_LATIN1_CONSTANT(QContactGeoLocation::FieldHeading, "Heading");
   760 
   883 
   761 /*!
   884 /*!
   762    \variable QContactGeoLocation::FieldSpeed
   885    \variable QContactGeoLocation::FieldSpeed
   763 
   886 
   764    The constant key for which the speed value is stored in details of
   887    The constant key for which the speed value is stored in details of
   765    the QContactGeoLocation type.
   888    the QContactGeoLocation type.
   766  */
   889  */
   767 Q_DEFINE_LATIN1_LITERAL(QContactGeoLocation::FieldSpeed, "Speed");
   890 Q_DEFINE_LATIN1_CONSTANT(QContactGeoLocation::FieldSpeed, "Speed");
       
   891 
       
   892 /*!
       
   893    \variable QContactTag::FieldTag
       
   894 
       
   895    The constant key for which the tag value is stored in details
       
   896    of the QContactTag type.
       
   897  */
       
   898 Q_DEFINE_LATIN1_CONSTANT(QContactTag::FieldTag, "Tag");
   768 
   899 
   769 /*!
   900 /*!
   770    \variable QContactGeoLocation::FieldTimestamp
   901    \variable QContactGeoLocation::FieldTimestamp
   771 
   902 
   772    The constant key for which the timestamp value is stored in details
   903    The constant key for which the timestamp value is stored in details
   773    of the QContactGeoLocation type.
   904    of the QContactGeoLocation type.
   774  */
   905  */
   775 Q_DEFINE_LATIN1_LITERAL(QContactGeoLocation::FieldTimestamp, "Timestamp");
   906 Q_DEFINE_LATIN1_CONSTANT(QContactGeoLocation::FieldTimestamp, "Timestamp");
   776 
       
   777 /*!
       
   778    \variable QContactOnlineAccount::FieldAccountUri
       
   779 
       
   780    The constant key for which the remote account uri value is stored
       
   781    in details of the QContactOnlineAccount type.
       
   782  */
       
   783 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::FieldAccountUri, "AccountUri");
       
   784 
       
   785 /*!
       
   786    \variable QContactOnlineAccount::FieldServiceProvider
       
   787 
       
   788    The constant key for which the service provider value is stored in
       
   789    details of the QContactOnlineAccount type.
       
   790  */
       
   791 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::FieldServiceProvider, "ServiceProvider");
       
   792 
       
   793 /*!
       
   794    \variable QContactOnlineAccount::FieldSubTypes
       
   795 
       
   796    The constant key for which the subtypes value is stored in details
       
   797    of the QContactOnlineAccount type.
       
   798  */
       
   799 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::FieldSubTypes, "SubTypes");
       
   800 
       
   801 /*!
       
   802    \variable QContactOnlineAccount::SubTypeSip
       
   803 
       
   804    The constant attribute value which describes the online account as
       
   805    supporting SIP.
       
   806  */
       
   807 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::SubTypeSip, "Sip");
       
   808 
       
   809 /*!
       
   810    \variable QContactOnlineAccount::SubTypeSipVoip
       
   811 
       
   812    The constant attribute value which describes the online account as
       
   813    supporting SIP-based VoIP.
       
   814  */
       
   815 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::SubTypeSipVoip, "SipVoip");
       
   816 
       
   817 /*!
       
   818    \variable QContactOnlineAccount::SubTypeImpp
       
   819 
       
   820    The constant attribute value which describes the online account as
       
   821    supporting IMPP.
       
   822  */
       
   823 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::SubTypeImpp, "Impp");
       
   824 
       
   825 /*!
       
   826    \variable QContactOnlineAccount::SubTypeVideoShare
       
   827 
       
   828    The constant attribute value which describes the online account as
       
   829    supporting VideoShare.
       
   830  */
       
   831 Q_DEFINE_LATIN1_LITERAL(QContactOnlineAccount::SubTypeVideoShare, "VideoShare");
       
   832 
   907 
   833 /*!
   908 /*!
   834    \variable QContactOrganization::FieldName
   909    \variable QContactOrganization::FieldName
   835 
   910 
   836    The constant key for which the name value is stored in details of
   911    The constant key for which the name value is stored in details of
   837    the QContactOrganization type.
   912    the QContactOrganization type.
   838  */
   913  */
   839 Q_DEFINE_LATIN1_LITERAL(QContactOrganization::FieldName, "Name");
   914 Q_DEFINE_LATIN1_CONSTANT(QContactOrganization::FieldName, "Name");
   840 
   915 
   841 /*!
   916 /*!
   842    \variable QContactOrganization::FieldLogo
   917    \variable QContactOrganization::FieldLogoUrl
   843 
   918 
   844    The constant key for which the logo path value is stored in details
   919    The constant key for which the logo url is stored in details
   845    of the QContactOrganization type.
   920    of the QContactOrganization type.
   846  */
   921  */
   847 Q_DEFINE_LATIN1_LITERAL(QContactOrganization::FieldLogo, "Logo");
   922 Q_DEFINE_LATIN1_CONSTANT(QContactOrganization::FieldLogoUrl, "LogoUrl");
   848 
   923 
   849 /*!
   924 /*!
   850    \variable QContactOrganization::FieldDepartment
   925    \variable QContactOrganization::FieldDepartment
   851 
   926 
   852    The constant key for which the organization's department value is
   927    The constant key for which the organization's department value is
   853    stored in details of the QContactOrganization type.
   928    stored in details of the QContactOrganization type.
   854  */
   929  */
   855 Q_DEFINE_LATIN1_LITERAL(QContactOrganization::FieldDepartment, "Department");
   930 Q_DEFINE_LATIN1_CONSTANT(QContactOrganization::FieldDepartment, "Department");
   856 
   931 
   857 /*!
   932 /*!
   858    \variable QContactOrganization::FieldLocation
   933    \variable QContactOrganization::FieldLocation
   859 
   934 
   860    The constant key for which the organization's location (or the
   935    The constant key for which the organization's location (or the
   861    location of the contact's part of the organization) value is stored
   936    location of the contact's part of the organization) value is stored
   862    in details of the QContactOrganization type.
   937    in details of the QContactOrganization type.
   863  */
   938  */
   864 Q_DEFINE_LATIN1_LITERAL(QContactOrganization::FieldLocation, "Location");
   939 Q_DEFINE_LATIN1_CONSTANT(QContactOrganization::FieldLocation, "Location");
   865 
   940 
   866 /*!
   941 /*!
   867    \variable QContactOrganization::FieldRole
   942    \variable QContactOrganization::FieldRole
   868 
   943 
   869    The constant key for which the contact's role within the
   944    The constant key for which the contact's role within the
   870    organization is stored in details of the QContactOrganization type.
   945    organization is stored in details of the QContactOrganization type.
   871  */
   946  */
   872 Q_DEFINE_LATIN1_LITERAL(QContactOrganization::FieldRole, "Role");
   947 Q_DEFINE_LATIN1_CONSTANT(QContactOrganization::FieldRole, "Role");
   873 
   948 
   874 /*!
   949 /*!
   875    \variable QContactOrganization::FieldTitle
   950    \variable QContactOrganization::FieldTitle
   876 
   951 
   877    The constant key for which the contact's title within the
   952    The constant key for which the contact's title within the
   878    organization is stored in details of the QContactOrganization type.
   953    organization is stored in details of the QContactOrganization type.
   879  */
   954  */
   880 Q_DEFINE_LATIN1_LITERAL(QContactOrganization::FieldTitle, "Title");
   955 Q_DEFINE_LATIN1_CONSTANT(QContactOrganization::FieldTitle, "Title");
   881 
   956 
   882 /*!
   957 /*!
   883    \variable QContactOrganization::FieldAssistantName
   958    \variable QContactOrganization::FieldAssistantName
   884 
   959 
   885    The constant key for which the contact's assistant name within the
   960    The constant key for which the contact's assistant name within the
   886    organization is stored in details of the QContactOrganization type.
   961    organization is stored in details of the QContactOrganization type.
   887  */
   962  */
   888 Q_DEFINE_LATIN1_LITERAL(QContactOrganization::FieldAssistantName, "AssistantName");
   963 Q_DEFINE_LATIN1_CONSTANT(QContactOrganization::FieldAssistantName, "AssistantName");
   889 
   964 
   890 
   965 /*!
   891 /*!
   966    \variable QContactRingtone::FieldAudioRingtoneUrl
   892    \variable QContactDisplayLabel::FieldLabel
   967 
   893 
   968    The constant key for which the uri of the audio ringtone value is
   894    The constant key for which the display label value is stored in
   969    stored in details of the QContactRingtone type.
   895    details of the QContactDisplayLabel type.
   970  */
   896  */
   971 Q_DEFINE_LATIN1_CONSTANT(QContactRingtone::FieldAudioRingtoneUrl, "AudioRingtoneUrl");
   897 Q_DEFINE_LATIN1_LITERAL(QContactDisplayLabel::FieldLabel, "Label");
   972 
       
   973 /*!
       
   974    \variable QContactRingtone::FieldVideoRingtoneUrl
       
   975 
       
   976    The constant key for which the uri of the video ringtone value is
       
   977    stored in details of the QContactRingtone type.
       
   978  */
       
   979 Q_DEFINE_LATIN1_CONSTANT(QContactRingtone::FieldVideoRingtoneUrl, "VideoRingtoneUrl");
       
   980 
       
   981 /*!
       
   982    \variable QContactRingtone::FieldVibrationRingtoneUrl
       
   983 
       
   984    The constant key for which the uri of the vibration ringtone value is
       
   985    stored in details of the QContactRingtone type.
       
   986  */
       
   987 Q_DEFINE_LATIN1_CONSTANT(QContactRingtone::FieldVibrationRingtoneUrl, "VibrationRingtoneUrl");
       
   988 
       
   989 /*!
       
   990    \variable QContactThumbnail::FieldThumbnail
       
   991 
       
   992    The constant key for which the thumbnail image is stored in details
       
   993    of the QContactThumbnail type.
       
   994  */
       
   995 Q_DEFINE_LATIN1_CONSTANT(QContactThumbnail::FieldThumbnail, "Thumbnail");
   898 
   996 
   899 /*!
   997 /*!
   900    \variable QContactTimestamp::FieldModificationTimestamp
   998    \variable QContactTimestamp::FieldModificationTimestamp
   901 
   999 
   902    The constant key for the value which is stored in details of the
  1000    The constant key for the value which is stored in details of the
   903    QContactTimestamp type which describes the last modification date
  1001    QContactTimestamp type which describes the last modification date
   904    and time of a contact.
  1002    and time of a contact.
   905  */
  1003  */
   906 Q_DEFINE_LATIN1_LITERAL(QContactTimestamp::FieldModificationTimestamp, "ModificationTimestamp");
  1004 Q_DEFINE_LATIN1_CONSTANT(QContactTimestamp::FieldModificationTimestamp, "ModificationTimestamp");
   907 
  1005 
   908 /*!
  1006 /*!
   909    \variable QContactTimestamp::FieldCreationTimestamp
  1007    \variable QContactTimestamp::FieldCreationTimestamp
   910 
  1008 
   911    The constant key for the value which is stored in details of the
  1009    The constant key for the value which is stored in details of the
   912    QContactTimestamp type which describes the creation date and time
  1010    QContactTimestamp type which describes the creation date and time
   913    of a contact.
  1011    of a contact.
   914  */
  1012  */
   915 Q_DEFINE_LATIN1_LITERAL(QContactTimestamp::FieldCreationTimestamp, "CreationTimestamp");
  1013 Q_DEFINE_LATIN1_CONSTANT(QContactTimestamp::FieldCreationTimestamp, "CreationTimestamp");
   916 
  1014 
   917 /*!
  1015 /*!
   918    \variable QContactType::FieldType
  1016    \variable QContactType::FieldType
   919 
  1017 
   920    The constant key for the type value which is stored in details of
  1018    The constant key for the type value which is stored in details of
   921    the QContactType definition.
  1019    the QContactType definition.
   922  */
  1020  */
   923 Q_DEFINE_LATIN1_LITERAL(QContactType::FieldType, "Type");
  1021 Q_DEFINE_LATIN1_CONSTANT(QContactType::FieldType, "Type");
   924 
  1022 
   925 
  1023 
   926 /*!
  1024 /*!
   927    \variable QContactType::TypeContact
  1025    \variable QContactType::TypeContact
   928 
  1026 
   929    The constant attribute value which describes the contact as being
  1027    The constant attribute value which describes the contact as being
   930    an ordinary contact.
  1028    an ordinary contact.
   931  */
  1029  */
   932 Q_DEFINE_LATIN1_LITERAL(QContactType::TypeContact, "Contact");
  1030 Q_DEFINE_LATIN1_CONSTANT(QContactType::TypeContact, "Contact");
   933 
  1031 
   934 /*!
  1032 /*!
   935    \variable QContactType::TypeGroup
  1033    \variable QContactType::TypeGroup
   936 
  1034 
   937    The constant attribute value which describes the contact as being a
  1035    The constant attribute value which describes the contact as being a
   938    group.
  1036    group.
   939  */
  1037  */
   940 Q_DEFINE_LATIN1_LITERAL(QContactType::TypeGroup, "Group");
  1038 Q_DEFINE_LATIN1_CONSTANT(QContactType::TypeGroup, "Group");
   941 
  1039 
   942 /*!
  1040 /*!
   943    \variable QContactPhoneNumber::SubTypeLandline
  1041    \variable QContactPhoneNumber::SubTypeLandline
   944 
  1042 
   945    The constant attribute value which describes the phone number as
  1043    The constant attribute value which describes the phone number as
   946    identifying a landline phone.
  1044    identifying a landline phone.
   947  */
  1045  */
   948 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypeLandline, "Landline");
  1046 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypeLandline, "Landline");
   949 
  1047 
   950 /*!
  1048 /*!
   951    \variable QContactPhoneNumber::SubTypeMobile
  1049    \variable QContactPhoneNumber::SubTypeMobile
   952 
  1050 
   953    The constant attribute value which describes the phone number as
  1051    The constant attribute value which describes the phone number as
   954    identifying a mobile phone.
  1052    identifying a mobile phone.
   955  */
  1053  */
   956 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypeMobile, "Mobile");
  1054 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypeMobile, "Mobile");
   957 
  1055 
   958 /*!
  1056 /*!
   959    \variable QContactPhoneNumber::SubTypeFacsimile
  1057    \variable QContactPhoneNumber::SubTypeFax
   960 
  1058 
   961    The constant attribute value which describes the phone number as
  1059    The constant attribute value which describes the phone number as
   962    identifying a facsimile machine.
  1060    identifying a fax machine.
   963  */
  1061  */
   964 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypeFacsimile, "Facsimile");
  1062 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypeFax, "Fax");
   965 
  1063 
   966 /*!
  1064 /*!
   967    \variable QContactPhoneNumber::SubTypePager
  1065    \variable QContactPhoneNumber::SubTypePager
   968 
  1066 
   969    The constant attribute value which describes the phone number as
  1067    The constant attribute value which describes the phone number as
   970    identifying a pager device.
  1068    identifying a pager device.
   971  */
  1069  */
   972 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypePager, "Pager");
  1070 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypePager, "Pager");
   973 
  1071 
   974 /*!
  1072 /*!
   975    \variable QContactPhoneNumber::SubTypeCar
  1073    \variable QContactPhoneNumber::SubTypeCar
   976 
  1074 
   977    The constant attribute value which describes the phone number as
  1075    The constant attribute value which describes the phone number as
   978    identifying a car phone.
  1076    identifying a car phone.
   979  */
  1077  */
   980 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypeCar, "Car");
  1078 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypeCar, "Car");
   981 
  1079 
   982 /*!
  1080 /*!
   983    \variable QContactPhoneNumber::SubTypeBulletinBoardSystem
  1081    \variable QContactPhoneNumber::SubTypeBulletinBoardSystem
   984 
  1082 
   985    The constant attribute value which describes the phone number as
  1083    The constant attribute value which describes the phone number as
   986    identifying a bulletin board system.
  1084    identifying a bulletin board system.
   987  */
  1085  */
   988 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypeBulletinBoardSystem, "BulletinBoardSystem");
  1086 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypeBulletinBoardSystem, "BulletinBoardSystem");
   989 
  1087 
   990 /*!
  1088 /*!
   991    \variable QContactPhoneNumber::SubTypeVoice
  1089    \variable QContactPhoneNumber::SubTypeVoice
   992 
  1090 
   993    The constant attribute value which describes the phone number as
  1091    The constant attribute value which describes the phone number as
   994    supporting voice transmission.
  1092    supporting voice transmission.
   995  */
  1093  */
   996 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypeVoice, "Voice");
  1094 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypeVoice, "Voice");
   997 
  1095 
   998 /*!
  1096 /*!
   999    \variable QContactPhoneNumber::SubTypeModem
  1097    \variable QContactPhoneNumber::SubTypeModem
  1000 
  1098 
  1001    The constant attribute value which describes the phone number as
  1099    The constant attribute value which describes the phone number as
  1002    supporting digital data transfer.
  1100    supporting digital data transfer.
  1003  */
  1101  */
  1004 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypeModem, "Modem");
  1102 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypeModem, "Modem");
  1005 
  1103 
  1006 /*!
  1104 /*!
  1007    \variable QContactPhoneNumber::SubTypeVideo
  1105    \variable QContactPhoneNumber::SubTypeVideo
  1008 
  1106 
  1009    The constant attribute value which describes the phone number as
  1107    The constant attribute value which describes the phone number as
  1010    supporting video transmission.
  1108    supporting video transmission.
  1011  */
  1109  */
  1012 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypeVideo, "Video");
  1110 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypeVideo, "Video");
  1013 
  1111 
  1014 /*!
  1112 /*!
  1015    \variable QContactPhoneNumber::SubTypeMessagingCapable
  1113    \variable QContactPhoneNumber::SubTypeMessagingCapable
  1016 
  1114 
  1017    The constant attribute value which describes the phone number as
  1115    The constant attribute value which describes the phone number as
  1018    supporting messaging services.
  1116    supporting messaging services.
  1019  */
  1117  */
  1020 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypeMessagingCapable, "MessagingCapable");
  1118 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypeMessagingCapable, "MessagingCapable");
  1021 
  1119 
  1022 /*!
  1120 /*!
  1023    \variable QContactPhoneNumber::SubTypeAssistant
  1121    \variable QContactPhoneNumber::SubTypeAssistant
  1024 
  1122 
  1025    The constant attribute value which describes the phone number as an
  1123    The constant attribute value which describes the phone number as an
  1026    assistant phone number.
  1124    assistant phone number.
  1027  */
  1125  */
  1028 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypeAssistant, "Assistant");
  1126 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypeAssistant, "Assistant");
  1029 
  1127 
  1030 /*!
  1128 /*!
  1031    \variable QContactPhoneNumber::SubTypeDtmfMenu
  1129    \variable QContactPhoneNumber::SubTypeDtmfMenu
  1032 
  1130 
  1033    The constant attribute value which describes the phone number as
  1131    The constant attribute value which describes the phone number as
  1034    supporting DTMF-controlled electronic menu navigation.
  1132    supporting DTMF-controlled electronic menu navigation.
  1035  */
  1133  */
  1036 Q_DEFINE_LATIN1_LITERAL(QContactPhoneNumber::SubTypeDtmfMenu, "DtmfMenu");
  1134 Q_DEFINE_LATIN1_CONSTANT(QContactPhoneNumber::SubTypeDtmfMenu, "DtmfMenu");
  1037 
  1135 
  1038 /*!
  1136 /*!
  1039    \variable QContactAddress::SubTypeParcel
  1137    \variable QContactAddress::SubTypeParcel
  1040 
  1138 
  1041    The constant attribute value which describes the address as being
  1139    The constant attribute value which describes the address as being
  1042    an address for parcel delivery.
  1140    an address for parcel delivery.
  1043  */
  1141  */
  1044 Q_DEFINE_LATIN1_LITERAL(QContactAddress::SubTypeParcel, "Parcel");
  1142 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::SubTypeParcel, "Parcel");
  1045 
  1143 
  1046 /*!
  1144 /*!
  1047    \variable QContactAddress::SubTypePostal
  1145    \variable QContactAddress::SubTypePostal
  1048 
  1146 
  1049    The constant attribute value which describes the address as being
  1147    The constant attribute value which describes the address as being
  1050    an address for postal delivery.
  1148    an address for postal delivery.
  1051  */
  1149  */
  1052 Q_DEFINE_LATIN1_LITERAL(QContactAddress::SubTypePostal, "Postal");
  1150 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::SubTypePostal, "Postal");
  1053 
  1151 
  1054 /*!
  1152 /*!
  1055    \variable QContactAddress::SubTypeDomestic
  1153    \variable QContactAddress::SubTypeDomestic
  1056 
  1154 
  1057    The constant attribute value which describes the address as being a
  1155    The constant attribute value which describes the address as being a
  1058    domestic address.
  1156    domestic address.
  1059  */
  1157  */
  1060 Q_DEFINE_LATIN1_LITERAL(QContactAddress::SubTypeDomestic, "Domestic");
  1158 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::SubTypeDomestic, "Domestic");
  1061 
  1159 
  1062 /*!
  1160 /*!
  1063    \variable QContactAddress::SubTypeInternational
  1161    \variable QContactAddress::SubTypeInternational
  1064 
  1162 
  1065    The constant attribute value which describes the address as being
  1163    The constant attribute value which describes the address as being
  1066    an international address.
  1164    an international address.
  1067  */
  1165  */
  1068 Q_DEFINE_LATIN1_LITERAL(QContactAddress::SubTypeInternational, "International");
  1166 Q_DEFINE_LATIN1_CONSTANT(QContactAddress::SubTypeInternational, "International");
  1069 
       
  1070 /*!
       
  1071    \variable QContactAvatar::SubTypeImage
       
  1072 
       
  1073    The constant attribute value which describes the avatar as being an
       
  1074    image.
       
  1075  */
       
  1076 Q_DEFINE_LATIN1_LITERAL(QContactAvatar::SubTypeImage, "Image");
       
  1077 
       
  1078 /*!
       
  1079    \variable QContactAvatar::SubTypeVideo
       
  1080 
       
  1081    The constant attribute value which describes the avatar as being a
       
  1082    video.
       
  1083  */
       
  1084 Q_DEFINE_LATIN1_LITERAL(QContactAvatar::SubTypeVideo, "Video");
       
  1085 
       
  1086 /*!
       
  1087    \variable QContactAvatar::SubTypeAudioRingtone
       
  1088 
       
  1089    The constant attribute value which describes the avatar as being an
       
  1090    audio ringtone.
       
  1091  */
       
  1092 Q_DEFINE_LATIN1_LITERAL(QContactAvatar::SubTypeAudioRingtone, "AudioRingtone");
       
  1093 
       
  1094 /*!
       
  1095    \variable QContactAvatar::SubTypeVideoRingtone
       
  1096 
       
  1097    The constant attribute value which describes the avatar as being a
       
  1098    video ringtone.
       
  1099  */
       
  1100 Q_DEFINE_LATIN1_LITERAL(QContactAvatar::SubTypeVideoRingtone, "VideoRingtone");
       
  1101 
       
  1102 
       
  1103 /*!
       
  1104    \variable QContactAvatar::SubTypeTexturedMesh
       
  1105 
       
  1106    The constant attribute value which describes the avatar as being a
       
  1107    textured, 3D mesh.
       
  1108  */
       
  1109 Q_DEFINE_LATIN1_LITERAL(QContactAvatar::SubTypeTexturedMesh, "TexturedMesh");
       
  1110 
  1167 
  1111 /*!
  1168 /*!
  1112    \variable QContactUrl::SubTypeHomePage
  1169    \variable QContactUrl::SubTypeHomePage
  1113 
  1170 
  1114    The constant attribute value which describes the url as being the
  1171    The constant attribute value which describes the url as being the
  1115    homepage of the contact.
  1172    homepage of the contact.
  1116  */
  1173  */
  1117 Q_DEFINE_LATIN1_LITERAL(QContactUrl::SubTypeHomePage, "HomePage");
  1174 Q_DEFINE_LATIN1_CONSTANT(QContactUrl::SubTypeHomePage, "HomePage");
  1118 
  1175 
  1119 /*!
  1176 /*!
  1120    \variable QContactUrl::SubTypeFavourite
  1177    \variable QContactUrl::SubTypeFavourite
  1121 
  1178 
  1122    The constant attribute value which describes the url as being a
  1179    The constant attribute value which describes the url as being a
  1123    favourite page of the contact.
  1180    favourite page of the contact.
  1124  */
  1181  */
  1125 Q_DEFINE_LATIN1_LITERAL(QContactUrl::SubTypeFavourite, "Favourite");
  1182 Q_DEFINE_LATIN1_CONSTANT(QContactUrl::SubTypeFavourite, "Favourite");
  1126 
  1183 
  1127 /*!
  1184 /*!
  1128    \variable QContactAnniversary::SubTypeWedding
  1185    \variable QContactAnniversary::SubTypeWedding
  1129 
  1186 
  1130    The constant attribute value which describes the anniversary as
  1187    The constant attribute value which describes the anniversary as
  1131    being a wedding anniversary.
  1188    being a wedding anniversary.
  1132  */
  1189  */
  1133 Q_DEFINE_LATIN1_LITERAL(QContactAnniversary::SubTypeWedding, "Wedding");
  1190 Q_DEFINE_LATIN1_CONSTANT(QContactAnniversary::SubTypeWedding, "Wedding");
  1134 
  1191 
  1135 /*!
  1192 /*!
  1136    \variable QContactAnniversary::SubTypeEngagement
  1193    \variable QContactAnniversary::SubTypeEngagement
  1137 
  1194 
  1138    The constant attribute value which describes the anniversary as
  1195    The constant attribute value which describes the anniversary as
  1139    being an engagement anniversary.
  1196    being an engagement anniversary.
  1140  */
  1197  */
  1141 Q_DEFINE_LATIN1_LITERAL(QContactAnniversary::SubTypeEngagement, "Engagement");
  1198 Q_DEFINE_LATIN1_CONSTANT(QContactAnniversary::SubTypeEngagement, "Engagement");
  1142 
  1199 
  1143 /*!
  1200 /*!
  1144    \variable QContactAnniversary::SubTypeHouse
  1201    \variable QContactAnniversary::SubTypeHouse
  1145 
  1202 
  1146    The constant attribute value which describes the anniversary as
  1203    The constant attribute value which describes the anniversary as
  1147    being an anniversary of ownership of a particular residence.
  1204    being an anniversary of ownership of a particular residence.
  1148  */
  1205  */
  1149 Q_DEFINE_LATIN1_LITERAL(QContactAnniversary::SubTypeHouse, "House");
  1206 Q_DEFINE_LATIN1_CONSTANT(QContactAnniversary::SubTypeHouse, "House");
  1150 
  1207 
  1151 /*!
  1208 /*!
  1152    \variable QContactAnniversary::SubTypeEmployment
  1209    \variable QContactAnniversary::SubTypeEmployment
  1153 
  1210 
  1154    The constant attribute value which describes the anniversary as
  1211    The constant attribute value which describes the anniversary as
  1155    being an anniversary of employment at a particular company.
  1212    being an anniversary of employment at a particular company.
  1156  */
  1213  */
  1157 Q_DEFINE_LATIN1_LITERAL(QContactAnniversary::SubTypeEmployment, "Employment");
  1214 Q_DEFINE_LATIN1_CONSTANT(QContactAnniversary::SubTypeEmployment, "Employment");
  1158 
  1215 
  1159 /*!
  1216 /*!
  1160    \variable QContactAnniversary::SubTypeMemorial
  1217    \variable QContactAnniversary::SubTypeMemorial
  1161 
  1218 
  1162    The constant attribute value which describes the anniversary as
  1219    The constant attribute value which describes the anniversary as
  1163    being an anniversary of an event of sentimental significance.
  1220    being an anniversary of an event of sentimental significance.
  1164  */
  1221  */
  1165 Q_DEFINE_LATIN1_LITERAL(QContactAnniversary::SubTypeMemorial, "Memorial");
  1222 Q_DEFINE_LATIN1_CONSTANT(QContactAnniversary::SubTypeMemorial, "Memorial");
  1166 
  1223 
  1167 
  1224 
  1168 /*!
  1225 /*!
  1169    \fn QContactSyncTarget::syncTarget() const
  1226    \fn QContactSyncTarget::syncTarget() const
  1170 
  1227 
  1171    Returns the identifier of the backend store to which the contact
  1228    Returns the identifier of the backend store to which the contact
  1172    containing this detail should be synchronised.
  1229    containing this detail should be synchronized.
  1173  */
  1230  */
  1174 
  1231 
  1175 /*!
  1232 /*!
  1176    \fn QContactSyncTarget::setSyncTarget(const QString& syncTarget)
  1233    \fn QContactSyncTarget::setSyncTarget(const QString& syncTarget)
  1177 
  1234 
  1178    Sets the identifier of the backend store to which the contact
  1235    Sets the identifier of the backend store to which the contact
  1179    containing this detail should be synchronised to \a syncTarget.
  1236    containing this detail should be synchronized to \a syncTarget.
  1180  */
  1237  */
  1181 
  1238 
  1182 /*!
  1239 /*!
  1183    \fn QContactEmailAddress::emailAddress() const
  1240    \fn QContactEmailAddress::emailAddress() const
  1184    Returns the email address of the contact which is stored in this detail.
  1241    Returns the email address of the contact which is stored in this detail.
  1209    Sets the names of the children of the contact which is stored in this detail to \a childrenNames.
  1266    Sets the names of the children of the contact which is stored in this detail to \a childrenNames.
  1210  */
  1267  */
  1211 
  1268 
  1212 /*!
  1269 /*!
  1213    \fn QContactAnniversary::originalDate() const
  1270    \fn QContactAnniversary::originalDate() const
  1214    Returns the original date of occurrance of the event stored in this detail.
  1271    Returns the original date of occurrence of the event stored in this detail.
  1215  */
  1272  */
  1216 
  1273 
  1217 /*!
  1274 /*!
  1218    \fn QContactAnniversary::setOriginalDate(const QDate& date)
  1275    \fn QContactAnniversary::setOriginalDate(const QDate& date)
  1219    Sets the original date of occurrance of the event stored in this detail to \a date.
  1276    Sets the original date of occurrence of the event stored in this detail to \a date.
  1220  */
  1277  */
  1221 
  1278 
  1222 /*!
  1279 /*!
  1223    \fn QContactAnniversary::calendarId() const
  1280    \fn QContactAnniversary::calendarId() const
  1224  * Returns the identifier of the calendar entry associated with this anniversary.
  1281  * Returns the identifier of the calendar entry associated with this anniversary.
  1248    \fn QContactAnniversary::subType() const
  1305    \fn QContactAnniversary::subType() const
  1249    Returns the subtype that this detail implements, if defined.
  1306    Returns the subtype that this detail implements, if defined.
  1250  */
  1307  */
  1251 
  1308 
  1252 /*!
  1309 /*!
  1253    \fn QContactAvatar::avatar() const
  1310   \fn QContactAvatar::imageUrl() const
  1254    Returns the location of an avatar file associated with the contact.
  1311   Returns the url of an avatar image associated with the contact
  1255  */
  1312  */
  1256 
  1313 
  1257 /*!
  1314 /*!
  1258    \fn QContactAvatar::setAvatar(const QString& avatar)
  1315   \fn QContactAvatar::setImageUrl(const QUrl& imageUrl)
  1259    Sets the location of an avatar file associated with the contact to \a avatar.
  1316   Sets the url of an avatar image associated with the contact to \a imageUrl
  1260  */
  1317  */
  1261 
  1318 
  1262 /*!
  1319 /*!
  1263    \fn QContactAvatar::pixmap() const
  1320   \fn QContactAvatar::videoUrl() const
  1264    Returns a thumbnail for a picture associated with this contact.
  1321   Returns the url of an avatar video associated with the contact
  1265  */
  1322  */
  1266 
  1323 
  1267 /*!
  1324 /*!
  1268    \fn QContactAvatar::setPixmap(const QPixmap& pixmap)
  1325   \fn QContactAvatar::setVideoUrl(const QUrl& videoUrl)
  1269    Sets the thumbnail of a picture avatar associated with the contact to \a pixmap.
  1326   Sets the url of an avatar video associated with the contact to \a videoUrl
  1270    If \a pixmap is empty, the thumbnail pixmap will be removed.
       
  1271 
       
  1272    Returns true if the pixmap could be set, and false otherwise.
       
  1273  */
       
  1274 
       
  1275 /*!
       
  1276    \fn QContactAvatar::setSubType(const QString& subType)
       
  1277    Sets the subtype which this detail implements to be the given \a subType.
       
  1278  */
       
  1279 
       
  1280 /*!
       
  1281    \fn QContactAvatar::subType() const
       
  1282    Returns the subtype that this detail implements, if defined.
       
  1283  */
  1327  */
  1284 
  1328 
  1285 /*!
  1329 /*!
  1286    \fn QContactAddress::postOfficeBox() const
  1330    \fn QContactAddress::postOfficeBox() const
  1287    Returns the post office box segment of the address stored in this detail.
  1331    Returns the post office box segment of the address stored in this detail.
  1646    \fn QContactNote::note() const
  1690    \fn QContactNote::note() const
  1647    Returns a string for a note associated with a contact.
  1691    Returns a string for a note associated with a contact.
  1648  */
  1692  */
  1649 
  1693 
  1650 /*!
  1694 /*!
       
  1695    \fn QContactTag::setTag(const QString& tag)
       
  1696    Sets the tag associated with a contact which is stored in this detail to \a tag.
       
  1697  */
       
  1698 
       
  1699 /*!
       
  1700    \fn QContactTag::tag() const
       
  1701    Returns the tag associated with a contact which is stored in this detail.
       
  1702  */
       
  1703 
       
  1704 /*!
       
  1705   \fn QContactThumbnail::thumbnail() const
       
  1706   Returns the thumbnail image of the contact
       
  1707  */
       
  1708 
       
  1709 /*!
       
  1710   \fn QContactThumbnail::setThumbnail(const QImage& thumbnail)
       
  1711   Sets the thumbnail image of the contact to be \a thumbnail
       
  1712  */
       
  1713 
       
  1714 /*!
  1651    \fn QContactTimestamp::created() const
  1715    \fn QContactTimestamp::created() const
  1652    Returns the creation timestamp saved in this detail.
  1716    Returns the creation timestamp saved in this detail.
  1653  */
  1717  */
  1654 
  1718 
  1655 /*!
  1719 /*!
  1725    \fn QContactOnlineAccount::subTypes() const
  1789    \fn QContactOnlineAccount::subTypes() const
  1726    Returns the list of subtypes that this detail implements.
  1790    Returns the list of subtypes that this detail implements.
  1727  */
  1791  */
  1728 
  1792 
  1729 /*!
  1793 /*!
  1730    \fn QContactOnlineAccount::setNickname(const QString& nickname)
       
  1731    
       
  1732    Sets the last-known nickname used by the contact during
       
  1733    communications via the online account about which this detail
       
  1734    stores presence information to \a nickname.
       
  1735  */
       
  1736 
       
  1737 /*!
       
  1738    \fn QContactOnlineAccount::nickname() const
       
  1739    
       
  1740    Returns the last-known nickname used by the contact during
       
  1741    communications via the online account.
       
  1742  */
       
  1743 
       
  1744 /*!
       
  1745    \fn QContactOnlineAccount::setPresence(const QString& presence)
       
  1746    
       
  1747    Sets the presence of the online account according to the presence
       
  1748    information provider to \a presence.
       
  1749  */
       
  1750 
       
  1751 /*!
       
  1752    \fn QContactOnlineAccount::presence() const
       
  1753    
       
  1754    Returns the presence of the online account according to the
       
  1755    presence provider.
       
  1756  */
       
  1757 
       
  1758 /*!
       
  1759    \fn QContactOnlineAccount::setStatusMessage(const QString& statusMessage)
       
  1760 
       
  1761    Sets the last-known status message of the contact which was
       
  1762    communicated via the online account about which this detail stores
       
  1763    presence information to \a statusMessage.
       
  1764  */
       
  1765 
       
  1766 /*!
       
  1767    \fn QContactOnlineAccount::statusMessage() const
       
  1768    
       
  1769    Returns the last-known status message of the contact which was
       
  1770    communicated via the online account about which this detail stores
       
  1771    presence information.
       
  1772  */
       
  1773 
       
  1774 /*!
       
  1775    \fn QContactOnlineAccount::setCapabilities(const QStringList& capabilities)
  1794    \fn QContactOnlineAccount::setCapabilities(const QStringList& capabilities)
  1776 
  1795 
  1777    Sets the capabilities of the online account about which this detail stores
  1796    Sets the capabilities of the online account about which this detail stores
  1778    presence information to \a capabilities.  The \a capabilities list is a
  1797    presence information to \a capabilities.  The \a capabilities list is a
  1779    list of service-provider specified strings which together identify the
  1798    list of service-provider specified strings which together identify the
  1796    \fn QContactOrganization::name() const
  1815    \fn QContactOrganization::name() const
  1797    Returns the name of the organization stored in this detail.
  1816    Returns the name of the organization stored in this detail.
  1798  */
  1817  */
  1799 
  1818 
  1800 /*!
  1819 /*!
  1801    \fn QContactOrganization::setLogo(const QString& logo)
  1820    \fn QContactOrganization::setLogoUrl(const QUrl& logo)
  1802    Sets the logo of the organization stored in this detail to \a logo.
  1821    Sets the url of the logo of the organization stored in this detail to \a logo.
  1803  */
  1822  */
  1804 
  1823 
  1805 /*!
  1824 /*!
  1806    \fn QContactOrganization::logo() const
  1825    \fn QContactOrganization::logoUrl() const
  1807    Returns the logo of the organization stored in this detail.
  1826    Returns the url of the logo of the organization stored in this detail.
  1808  */
  1827  */
  1809 
       
  1810 
  1828 
  1811 /*!
  1829 /*!
  1812    \fn QContactOrganization::setDepartment(const QStringList& department)
  1830    \fn QContactOrganization::setDepartment(const QStringList& department)
  1813    
  1831    
  1814    Sets the contact's department of the organization stored in this
  1832    Sets the contact's department of the organization stored in this
  1867    \fn QContactOrganization::assistantName() const
  1885    \fn QContactOrganization::assistantName() const
  1868 
  1886 
  1869    Returns the name of the default assistant of contacts belonging to
  1887    Returns the name of the default assistant of contacts belonging to
  1870    this organization.
  1888    this organization.
  1871  */
  1889  */
       
  1890 
       
  1891 /*!
       
  1892   \fn QContactRingtone::audioRingtoneUrl() const
       
  1893 
       
  1894   Returns the uri of the audio ringtone stored in the ringtone detail.
       
  1895  */
       
  1896 
       
  1897 /*!
       
  1898   \fn QContactRingtone::setAudioRingtoneUrl(const QUrl& audioRingtoneUrl)
       
  1899 
       
  1900   Sets the uri of the audio ringtone stored in the ringtone detail
       
  1901   to \a audioRingtoneUrl.
       
  1902  */
       
  1903 
       
  1904 /*!
       
  1905   \fn QContactRingtone::videoRingtoneUrl() const
       
  1906 
       
  1907   Returns the uri of the video ringtone stored in the ringtone detail.
       
  1908  */
       
  1909 
       
  1910 /*!
       
  1911   \fn QContactRingtone::setVideoRingtoneUrl(const QUrl& videoRingtoneUrl)
       
  1912 
       
  1913   Sets the uri of the video ringtone stored in the ringtone detail
       
  1914   to \a videoRingtoneUrl.
       
  1915  */
       
  1916 
       
  1917 /*!
       
  1918   \fn QContactRingtone::vibrationRingtoneUrl() const
       
  1919 
       
  1920   Returns the uri of the vibration ringtone stored in the ringtone detail.
       
  1921  */
       
  1922 
       
  1923 /*!
       
  1924   \fn QContactRingtone::setVibrationRingtoneUrl(const QUrl& vibrationRingtoneUrl)
       
  1925 
       
  1926   Sets the uri of the vibration ringtone stored in the ringtone detail
       
  1927   to \a vibrationRingtoneUrl.
       
  1928  */
       
  1929 
       
  1930 /*!
       
  1931    \fn QContactPresence::setTimestamp(const QDateTime& updateTimestamp)
       
  1932 
       
  1933    Sets the update timestamp of the presence detail to be
       
  1934    \a updateTimestamp.
       
  1935  */
       
  1936 
       
  1937 /*!
       
  1938    \fn QContactPresence::timestamp() const
       
  1939 
       
  1940     Returns the timestamp at which the data in the presence detail was valid.
       
  1941  */
       
  1942 
       
  1943 /*!
       
  1944    \fn QContactPresence::setNickname(const QString& nickname)
       
  1945 
       
  1946    Sets the last-known nickname used by the contact during
       
  1947    communications via the online account about which this detail
       
  1948    stores presence information to \a nickname.
       
  1949  */
       
  1950 
       
  1951 /*!
       
  1952    \fn QContactPresence::nickname() const
       
  1953 
       
  1954    Returns the last-known nickname used by the contact during
       
  1955    communications via the online account.
       
  1956  */
       
  1957 
       
  1958 /*!
       
  1959   \enum QContactPresence::PresenceState
       
  1960 
       
  1961   This enum defines the possible presence states supported by the default schema.
       
  1962 
       
  1963   \value PresenceUnknown Signifies that the presence state of the contact is not currently known
       
  1964   \value PresenceAvailable Signifies that the contact is available
       
  1965   \value PresenceHidden Signifies that the contact is hidden
       
  1966   \value PresenceBusy Signifies that the contact is busy
       
  1967   \value PresenceAway Signifies that the contact is away
       
  1968   \value PresenceExtendedAway Signifies that the contact is away for an extended period of time
       
  1969   \value PresenceOffline Signifies that the contact is offline
       
  1970  */
       
  1971 
       
  1972 /*!
       
  1973    \fn QContactPresence::setPresenceState(QContactPresence::PresenceState presenceState)
       
  1974 
       
  1975    Sets the presence state of the online account according to the presence
       
  1976    information provider to the given \a presenceState.
       
  1977  */
       
  1978 
       
  1979 /*!
       
  1980    \fn QContactPresence::presenceState() const
       
  1981 
       
  1982    Returns the presence state of the online account according to the
       
  1983    presence provider.
       
  1984  */
       
  1985 
       
  1986 /*!
       
  1987    \fn QContactPresence::setPresenceStateText(const QString& presenceStateText)
       
  1988 
       
  1989    Sets the text corresponding to the presence state to \a presenceStateText.
       
  1990    This function is generally called by presence providers to allow custom
       
  1991    naming of states, or to allow finer grained state reporting than is
       
  1992    provided by the presence state API.
       
  1993  */
       
  1994 
       
  1995 /*!
       
  1996    \fn QContactPresence::presenceStateText() const
       
  1997 
       
  1998    Returns the text corresponding to the current presence state.
       
  1999  */
       
  2000 
       
  2001 /*!
       
  2002   \fn QContactPresence::setCustomMessage(const QString& customMessage)
       
  2003 
       
  2004    Sets the custom status message from the contact for the online account
       
  2005    about which this detail stores presence information, to \a customMessage.
       
  2006  */
       
  2007 
       
  2008 /*!
       
  2009    \fn QContactPresence::customMessage() const
       
  2010 
       
  2011    Returns the custom status message from the contact for the online account
       
  2012    about which this detail stores presence information.
       
  2013  */
       
  2014 
       
  2015 /*!
       
  2016    \fn QContactPresence::setPresenceStateImageUrl(const QUrl& presenceStateImageUrl)
       
  2017 
       
  2018    Sets the last-known status image url of the contact for the online account
       
  2019    about which this detail stores presence information, to \a presenceStateImageUrl.
       
  2020  */
       
  2021 
       
  2022 /*!
       
  2023    \fn QContactPresence::presenceStateImageUrl() const
       
  2024 
       
  2025    Returns the last-known status image url of the contact for the online account
       
  2026    about which this detail stores presence information.
       
  2027  */
       
  2028 
       
  2029 /*!
       
  2030    \fn QContactGlobalPresence::setTimestamp(const QDateTime& updateTimestamp)
       
  2031 
       
  2032    Sets the update timestamp of the global presence detail to be
       
  2033    \a updateTimestamp.
       
  2034  */
       
  2035 
       
  2036 /*!
       
  2037    \fn QContactGlobalPresence::timestamp() const
       
  2038 
       
  2039     Returns the timestamp at which the data in the global presence detail was valid.
       
  2040  */
       
  2041 
       
  2042 /*!
       
  2043    \fn QContactGlobalPresence::setNickname(const QString& nickname)
       
  2044 
       
  2045    Sets the last-known nickname used by the contact during
       
  2046    communications via any online account about which this detail
       
  2047    aggregates presence information to \a nickname.
       
  2048  */
       
  2049 
       
  2050 /*!
       
  2051    \fn QContactGlobalPresence::nickname() const
       
  2052 
       
  2053    Returns the last-known nickname used by the contact during
       
  2054    communications via any online account about which this detail
       
  2055    aggregates presence information.
       
  2056  */
       
  2057 
       
  2058 /*!
       
  2059    \fn QContactGlobalPresence::setPresenceState(QContactPresence::PresenceState presenceState)
       
  2060 
       
  2061    Sets the presence state of this aggregate detail according to the presence
       
  2062    information available from the presence providers which this detail aggregates
       
  2063    to the given \a presenceState.
       
  2064  */
       
  2065 
       
  2066 /*!
       
  2067    \fn QContactGlobalPresence::presenceState() const
       
  2068 
       
  2069    Returns the aggregate presence state of any online accounts about which this detail
       
  2070    aggregates presence information.
       
  2071  */
       
  2072 
       
  2073 /*!
       
  2074    \fn QContactGlobalPresence::setPresenceStateText(const QString& presenceStateText)
       
  2075 
       
  2076    Sets the text corresponding to the presence state to \a presenceStateText.
       
  2077    This function is generally called by presence providers to allow custom
       
  2078    naming of states, or to allow finer grained state reporting than is
       
  2079    provided by the presence state API.
       
  2080  */
       
  2081 
       
  2082 /*!
       
  2083    \fn QContactGlobalPresence::presenceStateText() const
       
  2084 
       
  2085    Returns the text corresponding to the current presence state.
       
  2086  */
       
  2087 
       
  2088 /*!
       
  2089   \fn QContactGlobalPresence::setCustomMessage(const QString& customMessage)
       
  2090 
       
  2091    Sets the custom status message from the contact for the aggregate presence
       
  2092    detail, to \a customMessage.
       
  2093  */
       
  2094 
       
  2095 /*!
       
  2096    \fn QContactGlobalPresence::customMessage() const
       
  2097 
       
  2098    Returns the custom status message from the contact for the aggregate presence
       
  2099    detail.
       
  2100  */
       
  2101 
       
  2102 /*!
       
  2103    \fn QContactGlobalPresence::setPresenceStateImageUrl(const QUrl& presenceStateImageUrl)
       
  2104 
       
  2105    Sets the last-known status image url of the contact to \a presenceStateImageUrl.
       
  2106  */
       
  2107 
       
  2108 /*!
       
  2109    \fn QContactGlobalPresence::presenceStateImageUrl() const
       
  2110 
       
  2111    Returns the last-known status image url of the contact.
       
  2112  */
       
  2113 
  1872 
  2114 
  1873 
  2115 
  1874 /* Convenience filters */
  2116 /* Convenience filters */
  1875 
  2117 
  1876 /*!
  2118 /*!