contacts_plat/logs_timers_api/inc/LogsDomainCRKeys.h
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 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:  Logs domain Central Repository keys
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef LOGSDOMAINCRKEYS_H
       
    21 #define LOGSDOMAINCRKEYS_H
       
    22 
       
    23 /**************************************************************************/
       
    24 /** Logs Timers API */
       
    25 /** Provides access to the timers/counters related to Logs processing */
       
    26 
       
    27 const TUid KCRUidLogs = {0x101F874E};
       
    28 
       
    29 
       
    30 /**
       
    31 * Actual last call timer
       
    32 * This timer must be updated every time a call is ended.
       
    33 * Integer type
       
    34 **/
       
    35 const TUint32 KLogsActualLastCallTimer      = 0x00000000;
       
    36 
       
    37 /**
       
    38 * Dialled calls timer to ALS Line 1
       
    39 * This is incremented every time when call on Line 1 is ended
       
    40 * Integer type
       
    41 **/
       
    42 const TUint32 KLogsDialledCallsTimerLine1   = 0x00000001;
       
    43 
       
    44 /**
       
    45 * Dialled calls timer to ALS Line 2
       
    46 * This is incremented every time when call on Line 2 is ended
       
    47 * Integer type
       
    48 **/
       
    49 const TUint32 KLogsDialledCallsTimerLine2   = 0x00000002;
       
    50 
       
    51 /**
       
    52 * Last call timer to ALS Line 1
       
    53 * This timer must be updated every time a call is ended in Line 1.
       
    54 * Integer type
       
    55 **/
       
    56 const TUint32 KLogsLastCallTimerLine1       = 0x00000003;
       
    57 
       
    58 /**
       
    59 * Last call timer to ALS Line 2
       
    60 * This timer must be updated every time a call is ended in Line 2.
       
    61 * Integer type
       
    62 **/
       
    63 const TUint32 KLogsLastCallTimerLine2       = 0x00000004;
       
    64 
       
    65 /**
       
    66 * Informs other applications that is the Logs application's
       
    67 * logging enabled.
       
    68 * Note! If this has been set OFF, it does not mean that you
       
    69 * will not log. If your application is meant to log, it will
       
    70 * log always.
       
    71 * Integer type
       
    72 * 0 (OFF)
       
    73 * 1 (ON)
       
    74 *
       
    75 * Default value: 1
       
    76 **/
       
    77 const TUint32 KLogsLoggingEnabled           = 0x00000005;
       
    78 
       
    79 /**
       
    80 * Informs the Logs application about the amount of new missed calls.
       
    81 * Integer type
       
    82 **/
       
    83 const TUint32 KLogsNewMissedCalls                   = 0x00000006;
       
    84 
       
    85 /**
       
    86 * Received calls timer to ALS Line 1
       
    87 * This is incremented every time when received call on Line 1
       
    88 * is ended
       
    89 * Integer type
       
    90 **/
       
    91 const TUint32 KLogsReceivedCallsTimerLine1  = 0x00000007;
       
    92 
       
    93 /**
       
    94 * Received calls timer to ALS Line 2
       
    95 * This is incremented every time when received call on Line 2
       
    96 * is ended
       
    97 * Integer type
       
    98 **/
       
    99 const TUint32 KLogsReceivedCallsTimerLine2  = 0x00000008;
       
   100 
       
   101 
       
   102 //FIXME: THIS IS NOT ANYMORE PART OF LOGS APPLICATION, SO IT SHOULD BE MOVED TO 
       
   103 //DEVICEMANAGEMENT DOMAIN
       
   104 /**
       
   105 * Inidicates whether call duration is shown or not in Phone Application
       
   106 *
       
   107 * Integer, possible values are:
       
   108 *
       
   109 * 0 (call duration not shown in Phone application)
       
   110 * 1 (call duration shown Phone application)
       
   111 *
       
   112 * Default value: 0
       
   113 **/
       
   114 const TUint32 KLogsShowCallDuration    = 0x00000009;
       
   115 
       
   116 
       
   117 /**
       
   118 * This key is required for VoIP Last Call Timer
       
   119 */
       
   120 const TUint32 KLogsLastCallTimerVoIP = 0x0000000A;
       
   121  
       
   122 /**
       
   123 * This key is required for VoIP Received Calls Timer
       
   124 */
       
   125 const TUint32 KLogsReceivedCallsTimerVoIP = 0x0000000B;
       
   126  
       
   127 /**
       
   128 * This key is required for VoIP Dialled Calls Timer
       
   129 */
       
   130 const TUint32 KLogsDialledCallsTimerVoIP = 0x0000000C;
       
   131 
       
   132 
       
   133 /**************************************************************************/
       
   134 
       
   135 
       
   136 #endif      // LOGSDOMAINCRKEYS_H