profilesservices/ProfileEngine/EngInc/ProfileEng.hrh
branchRCL_3
changeset 8 f62c3a3d66b8
parent 4 3f8368f032cf
child 11 0ab8cddfd377
child 12 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 enumeration TProfileSettingKeyType
       
    15 *		and TProfileSettingId.
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef __PROFILEENG_HRH__
       
    21 #define __PROFILEENG_HRH__
       
    22 
       
    23 #define PROFILES_ENGINE_RESOURCE_SIGNATURE 75
       
    24 #define PROFILES_MAX_NAME_LENGTH           64
       
    25 #define PROFILES_MAX_STATUS_MSG_LENGTH     40
       
    26 #define PROFILES_MAX_CALL_OBJECT_TEXT_LENGTH 1000
       
    27 
       
    28 // DATA TYPES
       
    29 enum TProfileSettingKeyType
       
    30     {
       
    31     EProfileSettingKeyTypeInt = 0,
       
    32     EProfileSettingKeyTypeString = 1,
       
    33     EProfileSettingKeyTypeBin = 2,
       
    34     EProfileSettingKeyTypeReal = 3
       
    35     };
       
    36 
       
    37 enum TProfileSettingId
       
    38     {
       
    39     EProfileSettingIdModifiableFlags = 0x00000000,
       
    40     EProfileSettingIdVisibleFlags = 0x00000001,
       
    41     EProfileSettingIdProfileName = 0x00000002,
       
    42     EProfileSettingIdAlertForGroups = 0x00000003,
       
    43     EProfileSettingIdRingingTone = 0x00000004,
       
    44     EProfileSettingIdRingingTone2 = 0x00000005,
       
    45     EProfileSettingIdMsgTone = 0x00000006,
       
    46     EProfileSettingIdRingingType = 0x00000007,
       
    47     EProfileSettingIdKeypadVolume = 0x00000008,
       
    48     EProfileSettingIdRingingVolume = 0x00000009,
       
    49     EProfileSettingIdVibra = 0x0000000A,
       
    50     EProfileSettingIdWarnAndGameTones = 0x0000000B,
       
    51     EProfileSettingIdImTone = 0x0000000C,
       
    52     EProfileSettingIdEmailTone = 0x0000000D,
       
    53     EProfileSettingIdVideoCallTone = 0x0000000E,
       
    54     EProfileSettingIdStatusMsg = 0x0000000F,
       
    55     EProfileSettingIdAvailAttribute = 0x00000010,
       
    56     EProfileSettingIdMediaVolume = 0x00000011,
       
    57     EProfileSettingIdTextToSpeechTone = 0x00000012,
       
    58     EProfileSettingIdNameChanged = 0x00000013,
       
    59     EProfileSettingIdCallObjectContent = 0x00000014,
       
    60     EProfileSettingIdPttTone = 0x00000015,
       
    61     EProfileSettingIdPttStatus = 0x00000016,
       
    62     EProfileSettingId3DEffect = 0x00000017,
       
    63     EProfileSettingId3DEcho = 0x00000018,
       
    64     EProfileSettingIdTactileFeedback = 0x00000019,
       
    65     EProfileSettingIdAudioFeedback = 0x0000001A,
       
    66     EProfileSettingIdEmailVibra=0x0000001B
       
    67     };
       
    68 
       
    69 #endif // __PROFILEENG_HRH__
       
    70 
       
    71 // End of File
       
    72