#include <app/cntitem.h>
class CContactItemFieldSet : public CBase, public CBase |
A contact item's field set. The field set owns an array of contact item fields (CContactItemFields). The field set is owned by a contact item, and can be retrieved using CContactItem::CardFields(). Use functions in class CContactItem to add and remove fields to/from the field set.
A field set can contain more than one field of the same type, but this is not advisable as it may cause problems when synchronising the contacts database.
IMPORT_C | ~CContactItemFieldSet | ( | ) |
The destructor frees all resources owned by the field set, prior to its destruction.
IMPORT_C CContactItemFieldSet & | AddL | ( | CContactItemField & | aField | ) |
Appends a field to the field set. The field set takes ownership of the field.
Parameters | |
---|---|
aField | Reference to the field to add to the field set. The field's ID is updated. |
CArrayFix< TFieldHeader > * | ConstructFieldHeaderArrayLC | ( | RWriteStream & | aTextStream, |
CStreamStore & | aBlobStore | |||
) |
TBool | ContainsFieldTypeMapping | ( | const CContentType & | aBaseFieldContentType, |
const TFieldType & | aContactFieldType | |||
) | const |
TInt | Count | ( | ) | const [inline] |
Gets the number of fields in the field set.
void | ExternalizeL | ( | RWriteStream & | aStream | ) | const |
Externalises a CContactItemFieldSet object to a write stream.
Parameters | |
---|---|
aStream | Stream to which the object should be externalised. |
TInt | FieldText | ( | TFieldType | aFieldType, |
TDes & | aText, | |||
TInt | aStartPosition | |||
) | const |
TInt | FieldTypeCount | ( | const CContactItemFieldSet & | aSystemTemplateFields, |
TInt | aStartIndex, | |||
const CContactItemField & | aField | |||
) | const |
TInt | Find | ( | TFieldType | aFieldType | ) | const [inline] |
Finds the first field in the field set with the specified field type.
Parameters | |
---|---|
aFieldType | The field type of interest. |
TInt | Find | ( | TFieldType | aFieldType, |
TUid | aMapping | |||
) | const [inline] |
Finds the first field in the field set containing both the content type mapping and the field type specified.
Parameters | |
---|---|
aFieldType | The field type of interest. |
aMapping | The content type mapping of interest. |
IMPORT_C TInt | FindNext | ( | TFieldType | aFieldType, |
TInt | aStartPos = KContactFieldSetSearchAll | |||
) | const |
Finds the next field in the field set with the specified field type.
Parameters | |
---|---|
aFieldType | The field type of interest. |
aStartPos | The index within the field set array at which to start the search. By default set to KContactFieldSetSearchAll, to find the first field. Must be a valid array index, or the function raises a panic. |
IMPORT_C TInt | FindNext | ( | TFieldType | aFieldType, |
TUid | aMapping, | |||
TInt | aStartPos = KContactFieldSetSearchAll | |||
) | const |
Finds the next field in the field set containing both the content type mapping and the field type specified.
Parameters | |
---|---|
aFieldType | The field type of interest. |
aMapping | The content type mapping of interest. |
aStartPos | The index within the array at which to start the search. By default set to KContactFieldSetSearchAll, to find the first field. Must be a valid array index, or the function raises a panic. |
IMPORT_C void | InsertL | ( | TInt | aIndex, |
CContactItemField & | aField | |||
) |
Inserts a field into the field set.
Parameters | |
---|---|
aIndex | The position in the field set at which to insert the field. If equal to or greater than the number of elements in the field set, the field is appended to the field set. |
aField | Reference to the field to add to the field set. The field's ID is updated. |
void | InternalizeL | ( | RReadStream & | aStream | ) |
Internalises a CContactItemFieldSet object from a read stream.
Parameters | |
---|---|
aStream | Stream from which the object should be internalised. |
Changes a field's position within the field set.
Both indexes specified must be valid (i.e. between zero and Count()-1 inclusive), or the function raises a panic.
Parameters | |
---|---|
aFrom | The index of the field to move. |
aTo | The index of the new position within the field set. |
IMPORT_C CContactItemFieldSet * | NewL | ( | ) | [static] |
Allocates and constructs a new field set.
IMPORT_C CContactItemFieldSet * | NewLC | ( | ) | [static] |
Allocates and constructs a new field set.
IMPORT_C void | Remove | ( | TInt | aIndex | ) |
Removes a field from the field set.
Parameters | |
---|---|
aIndex | The index of the field to delete. Must be a valid index within the field set or the function raises a panic. |
IMPORT_C void | RestoreL | ( | CStreamStore & | aStore, |
TStreamId | anId, | |||
CStreamStore * | aBlobStore, | |||
const CContactItemViewDef & | aViewDef, | |||
RReadStream & | aReadStream | |||
) |
Restores the field set using a view definition.
Parameters | |
---|---|
aStore | Store from which to restore the field set. |
anId | The root stream ID of aStore. |
aBlobStore | If specified, the stream store from which data stored in non-text fields is read. |
aViewDef | The view definition to use. |
aReadStream | Read stream from which data stored in text fields (with a storage type of KStorageTypeText) is read. |
IMPORT_C void | RestoreL | ( | CStreamStore & | aStore, |
TStreamId | anId, | |||
CStreamStore * | aBlobStore, | |||
const CContactItemViewDef & | aViewDef, | |||
const CContactItem * | aTemplate, | |||
HBufC * | aTextBuf | |||
) |
The overload that doesn't use dangerous CContactItemFieldSet::LoadTextStreamLC(aReadStream) method. LoadTextStreamLC relies on the stream to know its size, but now all types of streams support this functionality. In order to avoid calling LoadTextStreamLC, aTextBuf is already loaded in HBufC in the caller function. The caller function had access to the table and can use ColLength() API to get the lebgth of the field.
IMPORT_C TStreamId | StoreL | ( | CStreamStore & | aStore, |
RWriteStream & | aTextStream, | |||
CStreamStore & | aBlobStore | |||
) |
Stores the field set to a stream store.
Parameters | |
---|---|
aStore | Stream store to which the field set is written. |
aTextStream | Stream to which data stored in text fields (with a storage type of KStorageTypeText) is written. |
aBlobStore | Stream store to which data stored in non-text fields is written. |
TStreamId | StoreL | ( | CStreamStore & | aStore, |
RWriteStream & | aTextStream, | |||
CStreamStore & | aBlobStore, | |||
CContactTables * | aTables | |||
) |
IMPORT_C void | UpdateFieldL | ( | const CContactItemField & | aField, |
TInt | aMatchCount | |||
) |
Updates a field in the field set. The field whose content type matches aField's content type is replaced by aField. The second parameter is used to identify which matching field is updated. Specify 1 to update the first matching field, 2 for the second and so on. If there is no field in the field set which matches aField's content type, then aField is appended to the field set.
Parameters | |
---|---|
aField | The new field information. |
aMatchCount | Identifies which matching field in the field set should be updated. |
IMPORT_C void | UpdateFieldSyncL | ( | const CContactItemField & | aField, |
TInt | aMatchCount | |||
) |
Updates a field in the field set. Searches the set for a matching field. Deletes the matching set's field if any. Adds the aField to the set anyway. Uses the IsEqualForSyncUpdate() function to compare two CContentType objects, rather than the default equals operator. Takes care to hold the PREF, VoiceDial, and SpeedDial properties in the updated field.
Parameters | |
---|---|
aField | Specifies both the type of the field to update and the updated field's value. |
aMatchCount | Gives the offset of the matching field to update in the order of the set (i.e. 1, means update the first matching field in the set; 2, means update the second matching field in the set). |
const CContactItemField & | operator[] | ( | TInt | aIndex | ) | const [inline] |
Gets the field located at a specified position in the field set.
Parameters | |
---|---|
aIndex | The position of the field in the field set. This is relative to zero. It must be non-negative and less than the number of objects in the array, otherwise the operator raises a panic. |
CContactItemField & | operator[] | ( | TInt | aIndex | ) | [inline] |
Gets the field located at a specified position in the field set.
Parameters | |
---|---|
aIndex | The position of the field in the field set. This is relative to zero. It must be non-negative and less than the number of objects in the array, otherwise the operator raises a panic. |