phoneuis/easydialing/inc/easydialingcrkeys.h
branchCompilerCompatibility
changeset 13 2411cd0e2ad6
parent 9 8871b09be73b
equal deleted inserted replaced
11:abbe9afab2af 13:2411cd0e2ad6
       
     1 /*
       
     2 * Copyright (c) 2010 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:  Easy dialing central repository keys.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __EASYDIALINGCRKEYS_H__
       
    20 #define __EASYDIALINGCRKEYS_H__
       
    21 
       
    22 #include <e32cmn.h>
       
    23 
       
    24 /**
       
    25 * Easydialing settings CR UID (same as easydialing DLL uid)
       
    26 */
       
    27 const TUid KCRUidEasyDialSettings = {0x200212A0};
       
    28 
       
    29 /**
       
    30 * Easydialing on/off
       
    31 *
       
    32 * Possible values are:
       
    33 * 0 = Easydialing is off
       
    34 * 1 = Easydialing is on
       
    35 */
       
    36 const TUint32 KEasyDialing = 0x00000001;
       
    37 
       
    38 /**
       
    39 * Easydialing Contact Thumbnails show/hide
       
    40 * Possible values are:
       
    41 * 0 = Thumbnails are hidden
       
    42 * 1 = Thumbnails are shown
       
    43 */
       
    44 const TUint32 KEasyDialingContactThumbnails = 0x00000002;
       
    45 
       
    46 #endif //__EASYDIALINGCRKEYS_H__
       
    47