mds_plat/content_listing_framework_extended_api/inc/CLFContentListingExtended.hrh
changeset 0 c53acadfccc6
equal deleted inserted replaced
-1:000000000000 0:c53acadfccc6
       
     1 /*
       
     2 * Copyright (c) 2002-2009 Nokia Corporation and/or its subsidiary(-ies). 
       
     3 * All rights reserved.
       
     4 * This component and the accompanying materials are made available
       
     5 * under the terms of "Eclipse Public License v1.0"
       
     6 * which accompanies this distribution, and is available
       
     7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
       
     8 *
       
     9 * Initial Contributors:
       
    10 * Nokia Corporation - initial contribution.
       
    11 *
       
    12 * Contributors:
       
    13 *
       
    14 * Description:  S60 internal CLF field IDs
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef CLFCONTENTLISTINGEXTENDED_HRH
       
    20 #define CLFCONTENTLISTINGEXTENDED_HRH
       
    21 
       
    22 #include <CLFContentListing.hrh>
       
    23 
       
    24 // DATA TYPES
       
    25 
       
    26 /**
       
    27 *  Content Listing Framework list model media types.
       
    28 *  Last default media type is 0x7FFFFFFF,
       
    29 *  Custom media type range 0x80000000 0xFFFFFFFF
       
    30 */
       
    31 enum TCLFMediaTypeExtended
       
    32     {
       
    33     /// Gallery collections
       
    34     ECLFMediaTypeCollection     = 0x7
       
    35     };
       
    36 
       
    37 /**
       
    38 *  S60 internal Content Listing Framework item field IDs.
       
    39 *  Last default field ID is 0x7FFFFFFF,
       
    40 *  Custom field ID range 0x80000000 - 0xFFFFFFFF
       
    41 */
       
    42 enum TCLFExtendedFieldId
       
    43     {
       
    44     /// Media gallery collection name:
       
    45     /// descriptor
       
    46     ECLFFieldIdCollectionName       = 0x00002000,
       
    47     /// Media gallery collection ID:
       
    48     /// integer
       
    49     ECLFFieldIdCollectionId         = 0x00002001,
       
    50     /// Media gallery collection type:
       
    51     /// integer
       
    52     ECLFFieldIdCollectionType       = 0x00002002,
       
    53     /// Media gallery collection memory:
       
    54     /// integer
       
    55     ECLFFieldIdCollectionMemory     = 0x00002003,
       
    56     /// Media gallery collection properties:
       
    57     /// integer
       
    58     ECLFFieldIdCollectionProperties = 0x00002004,
       
    59     /// Media gallery collection files:
       
    60     /// descriptor
       
    61     ECLFFieldIdCollectionFiles      = 0x00002005,
       
    62     /// Media gallery item count of the collection:
       
    63     /// integer
       
    64     ECLFFieldIdCollectionItemCount  = 0x00002006
       
    65     };
       
    66 
       
    67 #endif
       
    68 
       
    69 // End of File