tacticonserver/inc/tacticonprivatecrkeys.h
changeset 0 d54f32e146dd
equal deleted inserted replaced
-1:000000000000 0:d54f32e146dd
       
     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: Private Central Repository keys for Tacticon setttings.
       
    15 * Part of    : Tacticon Server
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef TACTICONPRIVATECRKEYS_H
       
    20 #define TACTICONPRIVATECRKEYS_H
       
    21 
       
    22 #include "tacticondomaincrkeys.h"
       
    23 
       
    24 /**
       
    25 * Implementation UID of the plugin, which is used to play tacticons.
       
    26 *
       
    27 * Possible values are:
       
    28 * Implementation UID of the plugin.
       
    29 *
       
    30 * Default value: 537001553 (0x2001FE51)
       
    31 **/
       
    32 const TUint32 KTacticonPlugin                      = 0x00000003;
       
    33 
       
    34 /**
       
    35 * Boolean value to define is tacticons disabled during a phone call or not.
       
    36 *
       
    37 * Possible values are:
       
    38 * 0, 1
       
    39 *
       
    40 * Default value: 0
       
    41 **/
       
    42 const TUint32 KTacticonDuringCall                  = 0x00000004;
       
    43 
       
    44 /**
       
    45 * Bitmask to define which tacticons are enabled:
       
    46 * Bit 1: Call connected tacticon
       
    47 *
       
    48 * Possible values are:
       
    49 * 0-1
       
    50 *
       
    51 * Default value: 1
       
    52 **/
       
    53 const TUint32 KTacticonSet                         = 0x00000005;
       
    54 
       
    55 /**
       
    56 * Defines bit 1 in KTacticonSet. 
       
    57 * If this bit is 1, tacticon is played when call is connected
       
    58 * If this bit is 0, tacticon is not played when call is connected.
       
    59 * By default this is 1.
       
    60 */
       
    61 const TInt KTacticonSetCallConnected = 0x01;  // 2^0
       
    62 
       
    63 /**
       
    64 * Actuator type used for playing tacticons
       
    65 *
       
    66 * Possible values are defined in hwrmlogicalactuators.h
       
    67 *
       
    68 * Default value: 1 (EHWRMLogicalActuatorAny)
       
    69 **/
       
    70 const TUint32 KActuatorType                    = 0x00000006;
       
    71 
       
    72 
       
    73 #endif  // TACTICONPRIVATECRKEYS_H
       
    74 
       
    75 // End of File