vmbx/vmbxengine/inc/voicemailboxprivatecrkeys.h
branchRCL_3
changeset 20 987c9837762f
parent 19 7d48bed6ce0c
child 21 0a6dd2dc9970
equal deleted inserted replaced
19:7d48bed6ce0c 20:987c9837762f
     1 /*
       
     2 * Copyright (c) 2009 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:
       
    15 *  Interface   : Private
       
    16 *
       
    17 */
       
    18 
       
    19 
       
    20 #ifndef VOICEMAILBOXPRIVATECRKEYS_H
       
    21 #define VOICEMAILBOXPRIVATECRKEYS_H
       
    22 #include <e32std.h>
       
    23 
       
    24 const TInt KVmbxUiUserEditNotAllowed = 0x01;
       
    25 
       
    26 
       
    27 /** VoiceMailbox Settings API */
       
    28 /** Provides access to the VoiceMailbox numbers and settings */
       
    29 
       
    30 const TUid KCRUidVoiceMailbox = {0x101F874F};
       
    31 
       
    32 
       
    33 /** Flag which decides where the vmbx number is to be stored.
       
    34 * If this is On (equals 1) the voice mailbox number is stored in SIM memory,
       
    35 * else it is stored in Phone memory.
       
    36 *
       
    37 * Integer type
       
    38 *
       
    39 * Default value: 1
       
    40 */
       
    41 const TUint32 KVmbxUsesSimMemory           = 0x00000000;
       
    42 
       
    43 /** Flag which decides if writing to sim allowed.
       
    44 * If this is On (equals 1) writing to SIM is not allowed.
       
    45 * Writing is allowed with value 0
       
    46 * Value
       
    47 * Integer type
       
    48 *
       
    49 * Default value: 1
       
    50 */
       
    51 const TUint32 KVmbxNoSimWriting            = 0x00000001;
       
    52 
       
    53 /** Voice Mailbox number for primary line
       
    54 *
       
    55 ** Text type
       
    56 *
       
    57 * Default value: ""
       
    58 */
       
    59 const TUint32 KVmbxNumberLinePrimary       = 0x00000002;
       
    60 
       
    61 /** Voice Mailbox number for Alternate line
       
    62 *
       
    63 ** Text type
       
    64 *
       
    65 * Default value: ""
       
    66 */
       
    67 const TUint32 KVmbxNumberLineAlternate     = 0x00000003;
       
    68 
       
    69 /** Video Mailbox number for primary line
       
    70 *
       
    71 * Text type
       
    72 *
       
    73 * Default value: ""
       
    74 */
       
    75 const TUint32 KVmbxVideoNmbrLinePrimary    = 0x00000004;
       
    76 
       
    77 /** Video Mailbox number for Alternate line
       
    78 *
       
    79 * Text type
       
    80 *
       
    81 * Default value: ""
       
    82 */
       
    83 const TUint32 KVmbxVideoNmbrLineAlternate  = 0x00000005;
       
    84 
       
    85 /** Flag which User allowed or not allowed to change the VMBX number
       
    86 * If set value 0x01 no allowed to be edited by user.
       
    87 *
       
    88 * Integer type0
       
    89 * 0 indicate allowed
       
    90 * Default value: 0
       
    91 */
       
    92 const TUint32 KVmbxUiCaps                   = 0x00000006;
       
    93 
       
    94 /** Flag which Video mailbox is supported or NOT
       
    95 *
       
    96 * Integer type
       
    97 *
       
    98 * Default value: 1
       
    99 */
       
   100 const TUint32 KVmbxVideoMbxSupport = 0x00000015;
       
   101 
       
   102 
       
   103 #endif      // VOICEMAILBOXPRIVATECRKEYS_H