mediasettings/videoplayersettingsengine/inc/videoplayercenrepkeys.h
changeset 0 96612d01cf9f
equal deleted inserted replaced
-1:000000000000 0:96612d01cf9f
       
     1 /*
       
     2 * Copyright (c) 2008 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 the License "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:   App settings handles storing and loading of application settings*
       
    15 */
       
    16 
       
    17 
       
    18 
       
    19 #ifndef VIDEOPLAYERCENREPKEYS_H
       
    20 #define VIDEOPLAYERCENREPKEYS_H
       
    21 
       
    22 // INCLUDES
       
    23 
       
    24 
       
    25 // CONSTANTS 
       
    26 
       
    27 // CenRep: UIDs
       
    28 //
       
    29 const TUid KIptvCenRepUid                       = { 0x102750E2 };
       
    30 const TUid KIptvAlrCenRepUid                    = { 0x2000B438 };
       
    31 
       
    32 // CenRep: Keys
       
    33 //
       
    34 const TInt KIptvCenRepPreferredMemoryKey        = 0x1;
       
    35 const TInt KIptvCenRepConnectionsKey            = 0x2;
       
    36 const TInt KIptvCenRepCellularKey               = 0x3;
       
    37 const TInt KIptvCenRepVoDThumbnailsKey          = 0x4;
       
    38 const TInt KIptvCenRepActiveServiceIdKey        = 0x5;
       
    39 const TInt KIptvCenRepVideoPlayerVolumeKey      = 0x6;
       
    40 const TInt KIptvCenRepMainAppServiceFocusKey    = 0x7;
       
    41 const TInt KIptvCenRepFirstTimeKey              = 0x8;
       
    42 const TInt KIptvCenRepServiceUpdatedKey         = 0x9;
       
    43 const TInt KIptvCenRepUpdatedServiceIdKey       = 0xA;
       
    44 const TInt KIptvCenRepAPModeKey                 = 0xB;
       
    45 const TInt KIptvCenRepParentControlKey          = 0xC;
       
    46 
       
    47 const TInt KIptvCenRepUsedSnapIdKey             = 0x1;
       
    48 const TInt KIptvCenRepAllowUseGprsKey           = 0x2;
       
    49 const TInt KIptvCenRepAllowRoamingKey           = 0x3;
       
    50 const TInt KIptvCenRepMaxUsedMemoryKey          = 0x4;
       
    51 const TInt KIptvCenRepIadUpdateCheckTimeKey     = 0xA;
       
    52 
       
    53 // CenRep: Key values
       
    54 //
       
    55 const TInt KIptvCenRepPreferredMemoryKeyPhone   = 0;
       
    56 const TInt KIptvCenRepPreferredMemoryKeyMmc     = 1;
       
    57 const TInt KIptvCenRepParentControlKeyOff       = 0;
       
    58 const TInt KIptvCenRepAPModeAlwaysAsk           = 0;
       
    59 const TInt KIptvCenRepAPModeUserDefined         = 1;
       
    60 
       
    61 const TInt KIptvCenRepConnectionKeyValueYes     = 1;
       
    62 const TInt KIptvCenRepConnectionKeyValueNo      = 0;
       
    63 const TInt KIptvCenRepSnapAlwaysAsk             = 0;
       
    64 
       
    65 // CenRep: Default values
       
    66 //
       
    67 const TInt KIptvCenRepPreferredMemoryKeyDefault = KIptvCenRepPreferredMemoryKeyMmc;
       
    68 const TInt KIptvCenRepFirstTimeKeyDefault       = 8;
       
    69 const TInt KIptvCenRepParentControlKeyDefault   = KIptvCenRepParentControlKeyOff;
       
    70 const TInt KIptvCenRepAPModeKeyDefault          = KIptvCenRepAPModeUserDefined;
       
    71 
       
    72 #endif //VIDEOPLAYERCENREPKEYS_H
       
    73 
       
    74 // End of File