#include <app/cntitem.h>
class CContactItem : public CBase, public CBase |
Public Member Enumerations | |
---|---|
enum | anonymous { ESystem, EHidden, ECompressedGuid, EDeleted } |
The abstract base class for contact cards, templates and groups. All contact items are identified by a contact ID, (TContactItemId), have a last modified date/time and own one or more fields (the field set). Contact items also have an access count and attributes (e.g. hidden). Note that fields in a contact item also have attributes. Attribute values specified in the contact item override those in the contained fields. The access count is a record of the number of objects referencing a contact item. A contact item cannot be fully deleted until its access count is zero.
Contact item's attribute flags
These flags can be used to set the various attributes of a contact item.
Enumerator | Value | Description |
---|---|---|
ESystem | 0x01 |
To set the contact item's system attribute. |
EHidden | 0x02 |
To set the contact item's hidden attribute. |
ECompressedGuid | 0x04 |
To set the contact item's hidden attribute. |
EDeleted | 0x08 |
To set the contact item's Is deleted attribute. |
IMPORT_C | ~CContactItem | ( | ) |
The destructor frees all resources owned by the contact item, prior to its destruction.
TInt | AccessCount | ( | ) | const [inline] |
Gets the contact item's access count.
IMPORT_C void | AddFieldL | ( | CContactItemField & | aField | ) |
Appends a field to the contact item's field set. The contact item takes ownership of the field.
Parameters | |
---|---|
aField | The field to append to the contact item's field set. |
void | AddLabelFieldL | ( | ) |
TContactItemId | Agent | ( | ) |
IMPORT_C TUint32 | Attributes | ( | ) | const |
Returns the contact item's attributes.
IMPORT_C CContactItemFieldSet & | CardFields | ( | ) | const |
Gets a reference to the contact item's field set.
void | ClearFieldContent | ( | ) |
void | ExternalizeL | ( | RWriteStream & | aStream | ) | const [virtual] |
Externalises a CContactItem object to a write stream.
Parameters | |
---|---|
aStream | Stream to which the object should be externalised. |
TPtrC | Guid | ( | ) | [inline] |
Accessor function for Contact Guid. This is used to cache contact items that are added during a sync.
IMPORT_C void | InsertFieldL | ( | CContactItemField & | aField, |
TInt | aFieldPos | |||
) |
Inserts a field into the contact item's field set. The contact item takes ownership of the field.
Parameters | |
---|---|
aField | The field to insert into the contact item's field set. |
aFieldPos | The position in the field set at which to insert the field. If this value is greater than the total number of fields, it is appended. The position is relative to zero, i.e. zero implies that the element is inserted at the beginning of the array. |
void | InternalizeL | ( | RReadStream & | aStream | ) | [virtual] |
Internalises a CContactItem object from a read stream.
Parameters | |
---|---|
aStream | Stream from which the object should be internalised. |
TBool | IsDeletable | ( | ) | [inline] |
Tests whether the contact item is deletable.
This is true if the item's access count is zero.
IMPORT_C TBool | IsDeleted | ( | ) | const |
Gets the value of the Is deleted attribute as set by SetDeleted().
IMPORT_C TBool | IsHidden | ( | ) |
Gets the value of the contact item's hidden attribute. Hidden means that the item is not displayed if the view definition excludes hidden fields.
IMPORT_C TBool | IsSystem | ( | ) |
Gets the value of the contact item's system attribute. Note that the system attribute is not currently used in the contacts model.
IMPORT_C TTime | LastModified | ( | ) | const |
Gets the contact item's last modified date/time.
CContactItem * | NewLC | ( | RReadStream & | aStream | ) | [static] |
Constructs a new contact item based on a RReadStream.
Parameters | |
---|---|
aStream | RReadStream containing object to internalize. |
IMPORT_C CContactItem * | NewLC | ( | TUid | aType | ) | [static] |
Constructs a new contact item.
TStreamId | PopulateStoreL | ( | CStreamStore & | aStore, |
CArrayFix< TFieldHeader > & | aFieldHeaderArray | |||
) | const |
IMPORT_C void | RemoveField | ( | TInt | aFieldPos | ) |
Removes a field from the contact item's field set. A panic occurs if the specified field does not exist in the field set.
Parameters | |
---|---|
aFieldPos | Index within the field set of the field to remove. |
IMPORT_C void | RestoreTemplateFieldsL | ( | const CContactItemFieldSet & | aSystemTemplateFields, |
const CContactItemFieldSet & | aTemplateFields, | |||
const CContactItemViewDef & | aViewDef | |||
) |
Restore fields from the template to the contact item.
Parameters | |
---|---|
aTemplateFields | Fields to add |
aViewDef | View definition to use |
IMPORT_C void | SetDeleted | ( | TBool | aDeleted | ) |
Sets the value of the contact item's Is deleted attribute.
If the attribute is set, this means that an attempt has been made to delete the contact item, but because the item's access count is greater than zero, its data persists and the item is just marked as deleted.
Parameters | |
---|---|
aDeleted | ETrue to set the Is deleted attribute. EFalse to unset it. |
IMPORT_C void | SetHidden | ( | TBool | aHidden | ) |
Sets the contact item's hidden attribute. Hidden means that the item is not displayed if the view definition excludes hidden fields.
Parameters | |
---|---|
aHidden | ETrue to set the hidden attribute for the item, EFalse to unset it. |
IMPORT_C void | SetLastModified | ( | const TTime & | aLastModified | ) |
Sets the last modified date/time value stored in the local copy of the contact item. This value is returned by LastModified() for this copy of the item.
This function has no effect on the item's last modified date/time which is stored in the database; this is always the date/time the contact was last committed.
This function is provided for use when synchronising contact items.
Parameters | |
---|---|
aLastModified | The contact item's last modified date/time. |
IMPORT_C void | SetSystem | ( | TBool | aSystem | ) |
Sets the contact item's system attribute. Note that the system attribute is not currently used in the contacts model.
Parameters | |
---|---|
aSystem | ETrue to set the system attribute, EFalse to unset it. |
IMPORT_C void | SetTemplateRefId | ( | TContactItemId | aUid | ) |
Sets the ID of the template on which this contact item is based.
Parameters | |
---|---|
aUid | The ID of the template on which this item is based. |
IMPORT_C void | SetUidStringL | ( | TDesC & | aString | ) |
Sets the item's UID string. This replaces any existing string. Contact items have a globally unique identifier, stored as a descriptor which is provided for vCard support. It is a combination of the database's unique identifier (see CContactDatabase::MachineId()), the contact item ID and the date/time of the contact item's creation.
Parameters | |
---|---|
aString | The contact item's UID string. |
IMPORT_C TContactItemId | TemplateRefId | ( | ) | const |
Gets the ID of the template which was used to create this contact item.
Returns a descriptor which contains the item's UID string. Contact items have a globally unique identifier, stored as a descriptor. This is provided for vCard support. It is a combination of the database's unique identifier, the contact item ID and the date/time of the contact item's creation.
Parameters | |
---|---|
aMachineUniqueId | The database's unique identifier. This can be retrieved using CContactDatabase::MachineId(). |
IMPORT_C void | UpdateFieldSet | ( | CContactItemFieldSet * | aNewFieldSet | ) |
Replaces the contact item's field set.
Parameters | |
---|---|
aNewFieldSet | The new field set with which to replace the existing one. |