MCLFModifiableItem Class Reference
class MCLFModifiableItem : public MCLFItem |
Modifiable item for Content Listing Framework. Use
ContentListingFactory to create modifiable items. These new items are used as groups in the custom grouper (see
MCLFCustomGrouper). Modifiable item is like
MCLFItem but you can add new fields to the modifiable item. One item can contain multiple fields, but normally it is not needed in a custom grouper. The field consists of a Field ID and field data. Type of the field is defined with Field ID. See TCLFDefaultFieldId in CLFContentListing.hrh. Example:
// Create a modifiable item and add one string field to it.
// Field id is ECLFFieldIdArtist and field value is "test".
_LIT( KTest, "test" );
MCLFModifiableItem* item = ContentListingFactory::NewModifiableItemLC();
item->AddFieldL( ECLFFieldIdArtist, KTest );
CleanupStack::Pop(); // item
ContentListingFramework.lib
- Since
- S60 3.1
Constructor & Destructor Documentation
~MCLFModifiableItem()
~MCLFModifiableItem | ( | ) | [inline, virtual] |
Member Functions Documentation
AddFieldL(TCLFFieldId, const TDesC &)
Add new string field to the item.
- Since
- S60 3.1
AddFieldL(TCLFFieldId, TInt32)
Add new integer field to the item.
- Since
- S60 3.1
AddFieldL(TCLFFieldId, const TTime &)
Add new time field to the item.
- Since
- S60 3.1
ModifiableItemExtension()
MCLFModifiableItemExt * | ModifiableItemExtension | ( | ) | [private, inline, virtual] |
This member is internal and not intended for use.
Copyright ©2010 Nokia Corporation and/or its subsidiary(-ies).
All rights
reserved. Unless otherwise stated, these materials are provided under the terms of the Eclipse Public License
v1.0.