dependencies/AknSkinsInternalCRKeys.h
branchv5backport
changeset 21 11157e26c4a7
equal deleted inserted replaced
20:d2ab7c3d0c48 21:11157e26c4a7
       
     1 /*
       
     2 * Copyright (c) 2004-2006 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:  Internal Central Repository keys.
       
    15  *
       
    16  *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef AKNSKINS_INTERNAL_CR_KEYS_H
       
    21 #define AKNSKINS_INTERNAL_CR_KEYS_H
       
    22 
       
    23 const TUid KCRUidPersonalisation = { 0x101F876F };
       
    24 
       
    25 /**
       
    26  * Location of the active skin, integer value.
       
    27  *
       
    28  * Possible values:
       
    29  * 0: Phone (drives C:\ and Z:\)
       
    30  * 2: MMC (E:\)
       
    31  */
       
    32 const TUint32 KPslnActiveSkinLocation             = 0x00000001;
       
    33 
       
    34 /**
       
    35  * Uid of the active skin, integer value.
       
    36  */
       
    37 const TUint32 KPslnActiveSkinUid                  = 0x00000002;
       
    38 
       
    39 /**
       
    40  * Active color palette Uid.
       
    41  */
       
    42 const TUint32 KPslnColorPaletteUid                = 0x00000003;
       
    43 
       
    44 /**
       
    45  * Bitmap index of the active dimmed background image in the idle state.
       
    46  */
       
    47 const TUint32 KPslnDimmedIdleBackgroundImageIndex = 0x00000004;
       
    48 
       
    49 /**
       
    50  * Bitmap index of the active background image in the favourites.
       
    51  */
       
    52 const TUint32 KPslnFavouritesBackgroundImageIndex = 0x00000005;
       
    53 
       
    54 /**
       
    55  * Path name of the active background image file in favourites.
       
    56  */
       
    57 const TUint32 KPslnFavouritesBackgroundImagePath  = 0x00000006;
       
    58 
       
    59 /**
       
    60  * Active icon set Uid.
       
    61  */
       
    62 const TUint32 KPslnIconSetUid                     = 0x00000007;
       
    63 
       
    64 /**
       
    65  * Bitmap index of the active background image in the idle state.
       
    66  */
       
    67 const TUint32 KPslnIdleBackgroundImageIndex       = 0x00000008;
       
    68 
       
    69 /**
       
    70  * Path name of the active background image file in the idle state.
       
    71  */
       
    72 const TUint32 KPslnIdleBackgroundImagePath        = 0x00000009;
       
    73 
       
    74 /**
       
    75  * Active screen savers Uid.
       
    76  */
       
    77 const TUint32 KPslnScreenSaverUid                 = 0x0000000A;
       
    78 
       
    79 /**
       
    80  * System default screen saver. Read only.
       
    81  */
       
    82 const TUint32 KPslnSystemDefaultScreenSaver       = 0x0000000B;
       
    83 
       
    84 /**
       
    85  * Active background image in the idle state Uid.
       
    86  */
       
    87 const TUint32 KPslnIdleBackgroundImageUid         = 0x0000000C;
       
    88 
       
    89 /**
       
    90  * Active background image in the favourites Uid.
       
    91  */
       
    92 const TUint32 KPslnFavouritesBackgroundImageUid   = 0x0000000D;
       
    93 
       
    94 /**
       
    95  * Color scheme.
       
    96  *
       
    97  * Possible values:
       
    98  * 0: Nokia "Classic" blue
       
    99  * 1: Nokia green
       
   100  * 2: Nokia purple
       
   101  * 3: red
       
   102  * 4: pink
       
   103  * 5: orange
       
   104  *
       
   105  * More may be added later...
       
   106  */
       
   107 const TUint32 KPslnColorPalette                   = 0x0000000E;
       
   108 
       
   109 /**
       
   110  * Available color schemes.
       
   111  *
       
   112  * Contains a space separated list of the supported color schemes.
       
   113  * Values are the same as in above.
       
   114  */
       
   115 const TUint32 KPslnAvailableColorPalettes         = 0x0000000F;
       
   116 
       
   117 /**
       
   118  * Highlight animation enable/disable status.
       
   119  *
       
   120  * Contains integer which is interpreted as boolean value. If value is 0
       
   121  * animations are disabled, otherwise animations are enabled.
       
   122  *
       
   123  * @since 3.1
       
   124  */
       
   125 const TUint32 KPslnHighlightAnimationEnabled      = 0x00000010;
       
   126 
       
   127 /**
       
   128  * Fullscreen wallpaper enable/disable status.
       
   129  *
       
   130  * Contains integer which is interpreted as boolean value. If value is 0
       
   131  * fullscreen wallpaper is disabled, otherwise enabled.
       
   132  *
       
   133  * @since 3.2
       
   134  */
       
   135 const TUint32 KPslnFullScreenWallpaperEnabled     = 0x00000011;
       
   136 
       
   137 /**
       
   138  * Wallpaper type
       
   139  *
       
   140  * Contains integer which specifies the wallpaper type
       
   141  * currently in use. Possible value 0/1/2 which are mapped
       
   142  * to none, normal and slideset respectively
       
   143  *
       
   144  * @since 3.2
       
   145  */
       
   146 const TUint32 KPslnWallpaperType                  = 0x00000012;
       
   147 
       
   148 /**
       
   149  * Default skin UID.
       
   150  *
       
   151  * Defines the default skin of the device.
       
   152  * If default value is used, S60 default skin is used.
       
   153  *
       
   154  * @since 3.1
       
   155  */
       
   156 const TUint32 KPslnDefaultSkinID                  = 0x00000013;
       
   157 
       
   158 /**
       
   159  * Default skin UID.
       
   160  *
       
   161  * Defines the default skin of the device.
       
   162  * If default value is used, S60 default skin is used.
       
   163  * Given value should be in HEX.
       
   164  *
       
   165  * Note that using 16-digit PID value here has a degrading impact on device performance.
       
   166  * 8-digit UID is thus preferred.
       
   167  *
       
   168  * @since 3.2
       
   169  */
       
   170 const TUint32 KPslnDefaultSkinUID                  = 0x00000014;
       
   171 
       
   172 #endif
       
   173 
       
   174 // End of file