cbs/CbsServer/ServerInc/CbsServerPrivateCRKeys.h
changeset 46 2fa1fa551b0b
parent 42 35488577e233
child 48 78df25012fda
equal deleted inserted replaced
42:35488577e233 46:2fa1fa551b0b
     1 /*
       
     2 * Copyright (c) 2005 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:  This file contains the header file of private CR keys
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 
       
    20 #ifndef __CBSSERVER_PRIVATE_CR_KEYS_H__
       
    21 #define __CBSSERVER_PRIVATE_CR_KEYS_H__
       
    22 
       
    23 const TUid KCRUidCellBroadcast = {0x1020298F};
       
    24 
       
    25 /**
       
    26 * This key setting enables CBS messages reception if it is turned on.
       
    27 *
       
    28 * Possible integer values:
       
    29 * 0 Reception off
       
    30 * 1 Reception on
       
    31 *
       
    32 * Default value: 0
       
    33 */
       
    34 const TUint32 KCbsReception = 0x00000001;
       
    35 
       
    36 /**
       
    37 * If this key value is set on and the topic of received message is 
       
    38 * not in the topic list, the topic is added to the topic list.
       
    39 *
       
    40 * Possible integer values:
       
    41 * 0 Topic detection off
       
    42 * 1 Topic detection on
       
    43 *
       
    44 * Default value: 0
       
    45 */
       
    46 const TUint32 KCbsTopicDetection = 0x00000002;
       
    47 
       
    48 /**
       
    49 * This key holds information of message languages 
       
    50 * that are allowed to be received. Default value means that 
       
    51 * all messages with all languages are allowed to be received.
       
    52 *
       
    53 * Possible values:
       
    54 * Each character in the string can be either '0' or '1'
       
    55 *
       
    56 * Default value: 0000000000000000000001
       
    57 */
       
    58 const TUint32 KCbsLanguages = 0x00000003;
       
    59 
       
    60 /**
       
    61 * With this key value user sets feature on, which limits message 
       
    62 * reception with a time frame. Time frame is defined separately by UI.
       
    63 *
       
    64 * Possible integer values:
       
    65 * 0 Time limits off
       
    66 * 1 Time limits on
       
    67 *
       
    68 * Default value: 0
       
    69 */
       
    70 const TUint32 KCbsLimitedReception = 0x00000004;
       
    71 
       
    72 /**
       
    73 * Time when last automatic cleanup was excecuted.
       
    74 *
       
    75 * Possible integer values:
       
    76 * Interger representation of the time.
       
    77 *
       
    78 * Default value: 0
       
    79 */
       
    80 const TUint32 KCbsCleanupTime = 0x00000005;
       
    81 	
       
    82 #endif // __CBSSERVER_PRIVATE_CR_KEYS_H__
       
    83