Qt Contacts C++ Classes

The QtContacts module contains classes for management. More...

Classes

QContactAddress

Contains an address of a contact

QContactDisplayLabel

Contains a displayLabel of a contact

QContactEmailAddress

Contains an email address of a contact

QContactFavorite

Indicates if a contact is a favorite contact as well as the position it should appear in an ordered list of favorites

QContactGlobalPresence

Aggregated presence information for a contact, synthesized or supplied by the backend

QContactName

Contains a name of a contact

QContactPhoneNumber

Phone number of a contact

QContactTag

Contains a tag associated with a contact

QContactActionFilter

Filter based around an action availability criterion

QContactChangeLogFilter

Filter based around a contact timestamp criterion

QContactDetailFilter

Filter based around a detail value criterion

QContactDetailRangeFilter

Filter based around a detail value range criterion

QContactIdFilter

Filter based around a list of contact ids

QContactIntersectionFilter

Filter which intersects the results of other filters

QContactInvalidFilter

Matches no contacts

QContactRelationshipFilter

Filter based around relationship criteria

QContactUnionFilter

Filter which unions the results of other filters

QContact

Represents an addressbook contact

QContactAbstractRequest

Mechanism for asynchronous requests to be made of a manager if it supports them

QContactAction

Interface for performing an action on a QContact or QContactDetail

QContactActionDescriptor

Information that uniquely identifies a specific implementation of an action

QContactActionFactory

Interface for clients to retrieve instances of action implementations

QContactActionTarget

Information about the target of an action. It may be either a contact, a contact and a detail of that contact, or a contact and a list of the details of the contact, which together should be used by the action

QContactChangeSet

Simple API to simplify the emission of state-change signals from QContactManagerEngine implementations

QContactDetail

Represents a single, complete detail about a contact

QContactFetchHint

Hints to the manager about which contact information needs to be retrieved in an asynchronous fetch request or a synchronous function call

QContactFilter

Used to select contacts made available through a QContactManager

QContactId

Information that uniquely identifies a contact in a particular manager

QContactManager

Interface which allows clients with access to contact information stored in a particular backend

QContactObserver

Simple class that emits a signal when a single particular contact is updated or deleted

QContactRelationship

Describes a one-to-one relationship between a locally-stored contact and another (possibly remote) contact

QContactSortOrder

Defines how a list of contacts should be ordered according to some criteria

QContactFetchByIdRequest

Allows a client to asynchronously request contacts from a contacts store manager, given a list of contact IDs

QContactFetchRequest

Allows a client to asynchronously request contacts from a contacts store manager

QContactIdFetchRequest

Allows a client to asynchronously request a list of contact ids from a contacts store manager

QContactRelationshipFetchRequest

Allows a client to asynchronously request relationships from a contacts store manager

QContactRelationshipRemoveRequest

Allows a client to asynchronously request that certain relationships be removed from a contacts store

QContactRelationshipSaveRequest

Allows a client to asynchronously request that certain groups be saved to a contacts store

QContactRemoveRequest

Allows a client to asynchronously request that certain contacts be removed from a contacts store

QContactSaveRequest

Allows a client to asynchronously request that certain contacts be saved to a contacts store

Detailed Description

The Qt Contacts C++ classes provide contact management. A contact is the digital representation of a person, group, or entity that is stored in a platform-specific manner.

To include the definitions of the module's classes, use the following directive:


  #include <QtContacts>

To use the C++ library in your application, add the following configuration option to your .pro file:


  QT += contacts