profilesservices/ProfileEngine/EngInc/ProfileEngineInternalCRKeys.h
branchRCL_3
changeset 8 f62c3a3d66b8
parent 4 3f8368f032cf
child 10 c8b9b0986973
equal deleted inserted replaced
4:3f8368f032cf 8:f62c3a3d66b8
     1 /*
       
     2 * Copyright (c) 2002 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:  Profiles engine internal Central Repository keys.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef PROFILEENGINEINTERNALCRKEYS_H
       
    21 #define PROFILEENGINEINTERNALCRKEYS_H
       
    22 
       
    23 //  INCLUDES
       
    24 #include <e32std.h>
       
    25 #include <ProfileEngineDomainCRKeys.h>
       
    26 
       
    27 // CONSTANTS
       
    28 
       
    29 /**
       
    30  * Information about whether self recorded tones can be used as ringing tones
       
    31  * or not. Integer value.
       
    32  *
       
    33  * Possible values:
       
    34  *
       
    35  * 0 (disabled)
       
    36  * 1 (enabled)
       
    37  */
       
    38 const TUint32 KProEngRecordedRingingTones = 0x80000100;
       
    39 
       
    40 /**
       
    41  * If this is true, DRM protected MP4 tones are not allowed as ringing tones.
       
    42  *
       
    43  * Possible values:
       
    44  *
       
    45  * 0 (allowed, default)
       
    46  * 1 (not allowed)
       
    47  */
       
    48 const TUint32 KProEngNoDrmMP4RingingTones = 0x80000101;
       
    49 
       
    50 /**
       
    51  * If this is true, WMA tones are not allowed as ringing tones.
       
    52  *
       
    53  * Possible values:
       
    54  *
       
    55  * 0 (allowed, default)
       
    56  * 1 (not allowed)
       
    57  */
       
    58 const TUint32 KProEngNoWmaRingingTones = 0x80000102;
       
    59 
       
    60 /**
       
    61  * Tactile feedback setting for the currently active profile.
       
    62  * THIS COULD BE MOVED TO THE SDK HEADER LATER?
       
    63  *
       
    64  * Possible values:
       
    65  *
       
    66  * 0 (Off)
       
    67  * 1 (Level 1)
       
    68  * 2 (Level 2)
       
    69  * 3 (Level 3)
       
    70  */
       
    71 const TUint32 KProEngActiveTactileFeedback = 0x7E000019;
       
    72 
       
    73 /**
       
    74  * Audio feedback setting for the currently active profile.
       
    75  * THIS COULD BE MOVED TO THE SDK HEADER LATER?
       
    76  *
       
    77  * Possible values:
       
    78  *
       
    79  * 0 (Off)
       
    80  * 1 (Level 1)
       
    81  * 2 (Level 2)
       
    82  * 3 (Level 3)
       
    83  */
       
    84 const TUint32 KProEngActiveAudioFeedback = 0x7E00001A;
       
    85 
       
    86 
       
    87 #endif      // PROFILEENGINEINTERNALCRKEYS_H
       
    88 
       
    89 // End of File