contacts_plat/phonebook_internal_common_api/inc/Phonebook/PhonebookVariant.hrh
changeset 0 e686773b3f54
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2002 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:  Local variation flags for Phonebook
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef __PHONEBOOKVARIANT_HRH__
       
    20 #define __PHONEBOOKVARIANT_HRH__
       
    21 
       
    22 
       
    23 // DATA TYPES
       
    24 
       
    25 /**
       
    26 * Local variation flags for Phonebook.
       
    27 */
       
    28 enum TPbkLocalVariantFlags
       
    29     {
       
    30     /**
       
    31  	 * Multiple vCard sending over Bluetooth and Infrared.
       
    32      */
       
    33     EPbkLVMultipleVCardOverBTAndIR = 0x00000001,
       
    34 
       
    35     /**
       
    36 	 * Contact info view sideways navigation.
       
    37      */
       
    38 	EPbkLVContactInfoViewNavigation = 0x00000002,
       
    39 
       
    40     /**
       
    41 	 * Send selected contact fields in vCard.
       
    42      */
       
    43 	EPbkLVSendSelectedContactFields = 0x00000004,
       
    44 
       
    45     /**
       
    46 	 * Add Nick Name field to Phonebook fields.
       
    47      */
       
    48 	EPbkLVAddNickNameField = 0x00000008,
       
    49 
       
    50     /**
       
    51 	 * Add Video Telephony fields to Phonebook fields.
       
    52      */
       
    53 	EPbkLVAddVideoTelephonyFields = 0x00000010,
       
    54 
       
    55     /**
       
    56      * Enable Phonebook to be sent to the background up on exit.
       
    57      */
       
    58 	EPbkLVAlwaysOnPhonebook = 0x00000020,
       
    59 
       
    60     /**
       
    61      * Enable launch of Speed Dial application from names list.
       
    62      */
       
    63 	EPbkLVAllowOpen1Touch = 0x00000040,
       
    64 
       
    65     /**
       
    66      * Enable check for duplicate entry when saving edited contact.
       
    67      */
       
    68 	EPbkLVCheckDuplicateEntry = 0x00000080,
       
    69 
       
    70     /**
       
    71      * Support for generic SIP fields
       
    72      */
       
    73 	EPbkLVAddSIPFields = 0x00000100,
       
    74 	
       
    75     /**
       
    76      * Add MDO(prefix&suffix) fields to Phonebook fields.
       
    77      */
       
    78 	EPbkLVAddMDOFields = 0x00000200,
       
    79 
       
    80     /**
       
    81      * Enable Adn when FDN is on.
       
    82      */
       
    83 	EPbkLVEnableAdnWhenFdnOn = 0x00000400,
       
    84 
       
    85 
       
    86      /**
       
    87       * Group management, send option available in group list
       
    88       */
       
    89 	EPbkLVGroupManagementSend = 0x00000800,
       
    90 	
       
    91      /**
       
    92       * Support for POC/PTT (Push To Talk Over Cellular) fields
       
    93       */
       
    94 	EPbkLVPOC = 0x00001000,
       
    95 	
       
    96 	/**
       
    97      * Use UTF-8 charset instead of Shift-JIS in Japanese
       
    98      */
       
    99 	EPbkLVUseJapaneseUTF8 = 0x00002000,
       
   100 
       
   101     /**
       
   102      * Add MegaOperator fields to Phonebook fields.
       
   103      */
       
   104     EVPbkLVMegaOperatorFields = 0x00004000,
       
   105     
       
   106     /**
       
   107      * Support for Share View/SWIS(See What I See) fields
       
   108      *
       
   109      * Notice the skipping of some flag values because there are flags that
       
   110      * are not used by the Phonebook1.
       
   111      */
       
   112     EPbkLVShareView = 0x00040000,
       
   113     
       
   114     /**
       
   115      * Support for VOIP (Voice Over Internet Protocol) fields
       
   116      */
       
   117     EPbkLVVOIP = 0x00080000
       
   118 	};
       
   119 	
       
   120 
       
   121 #endif // __PHONEBOOKVARIANT_HRH__
       
   122 
       
   123 // End of File