phonebookui/Phonebook2/inc/Pbk2Config.hrh
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2005-2007 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:  Phonebook 2 build time configuration file.
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef PBK2CONFIG_HRH
       
    20 #define PBK2CONFIG_HRH
       
    21 
       
    22 /// Put flags you want to enable or disable for testing here.
       
    23 /// In order for this to work all Phonebook source files that need
       
    24 /// the platform flags should not include <bldvariant.hrh> directly but
       
    25 /// this file. DO NOT check this file out from version control if you modify
       
    26 /// it only for testing. Modify only your local copy.
       
    27 
       
    28 //TEMPORARY DEFINE FOR ECE:
       
    29 // context-sensitive menu ( and middle softkey ) needs to be disabled for ece
       
    30 // but should be still available for platfrom branch and feature realeses
       
    31 // it's not clear how this variation will be handled so
       
    32 // use ECE_DISABLE_CONTEXT_MENU for now to avoid code deleting and ease merging
       
    33 #define ECE_DISABLE_CONTEXT_MENU
       
    34 
       
    35 #if defined(__WINS__) || defined(WINS)
       
    36 /// Flag for using ETel test server instead of ETel
       
    37 //#define PBK2_USE_ETEL_TESTSERVER
       
    38 #endif
       
    39 
       
    40 
       
    41 /// Enable phonebook debug print all over the phonebook
       
    42 /// If you like to enable debug prints in specific file,
       
    43 /// define this macro only in that file before Pbk2Debug.h include.
       
    44 /// 
       
    45 // #define PBK2_ENABLE_DEBUG_PRINT
       
    46 
       
    47 /// Define this if you want to put debug output to the file.
       
    48 /// The file should be c:/logs/Pbk2/Pbk2.log, see Pbk2Debug.h.
       
    49 ///
       
    50 //#define PBK2_ENABLE_DEBUG_LOGGER
       
    51 
       
    52 /// Enabling the PBK2_ENABLE_PROFILE flag enables the phonebook profiling
       
    53 /// on all profiles. Search with PBK2_ENABLE_PROFILE and uncomment the 
       
    54 /// nesessary parts to build all needed parts of the framework.
       
    55 /// When logging on HW remember to uncomment the component
       
    56 /// from the IBY files.
       
    57 #undef PBK2_ENABLE_PROFILE
       
    58 
       
    59 
       
    60 #endif // PBK2CONFIG_HRH
       
    61 
       
    62 // End of File