Detailed Description
The QContactDetailDefinition class provides the specification for a detail that can be included in any particular QContact. The definition does not include any data, but defines the semantics of the representation and use of data details that are stored in a QContact.
Member Function Documentation
QContactDetailDefinition::QContactDetailDefinition ()
Construct a new, invalid QContactDetailDefinition
QContactDetailDefinition::QContactDetailDefinition ( const QContactDetailDefinition & other )
Constructs a new QContactDetailDefinition from other
QContactDetailDefinition::~QContactDetailDefinition ()
Frees the memory used by this QContactDetailDefinition
Returns the map of keys to fields which are present in details of this definition
See also setFields().
void QContactDetailDefinition::insertField ( const QString & key, const QContactDetailFieldDefinition & field )
Inserts the field field into the map of fields which constitute the data of details of this definition for the given field key key. If another field for that key already exists in the definition, it will be overwritten.
bool QContactDetailDefinition::isEmpty () const
Returns true if the id and fields of this definition are empty
bool QContactDetailDefinition::isUnique () const
Returns the per-contact uniqueness of this definition
QString QContactDetailDefinition::name () const
Returns the identifier of this detail definition
See also setName().
void QContactDetailDefinition::removeField ( const QString & key )
Removes the field associated with the given field key key from the map of fields which constitute the data of details of this definition.
Sets the fields which constitute the data of details of this this definition to fields
See also fields().
void QContactDetailDefinition::setName ( const QString & definitionName )
Sets the unique identifier of this detail type to definitionName.
See also name().
void QContactDetailDefinition::setUnique ( bool unique )
Sets whether a contact can have more than one detail of this type. If unique is true, only one detail of this type can be added. Otherwise, any number can be added.
See also isUnique().
bool QContactDetailDefinition::operator!= ( const QContactDetailDefinition & other ) const
Returns true if this detail definition has different allowable field types or uniqueness to the other definition
QContactDetailDefinition & QContactDetailDefinition::operator= ( const QContactDetailDefinition & other )
Assigns this QContactDetailDefinition to other
bool QContactDetailDefinition::operator== ( const QContactDetailDefinition & other ) const
Returns true if the definition has the same type, uniqueness and allowable value datatypes as other