contacts_plat/virtual_phonebook_configuration_api/inc/phonebook/VPbkVariant.hrh
changeset 0 e686773b3f54
child 18 d4f567ce2e7c
equal deleted inserted replaced
-1:000000000000 0:e686773b3f54
       
     1 /*
       
     2 * Copyright (c) 2004-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:  Local variation flags for Virtual Phonebook
       
    15 *
       
    16 */
       
    17 
       
    18 
       
    19 #ifndef VPBKVARIANT_HRH
       
    20 #define VPBKVARIANT_HRH
       
    21 
       
    22 
       
    23 // DATA TYPES
       
    24 
       
    25 /**
       
    26  * Local variation flags for Virtual Phonebook.
       
    27  */
       
    28 enum TVPbkLocalVariantFlags
       
    29     {
       
    30     /**
       
    31  	 * Multiple vCard sending over Bluetooth and Infrared.
       
    32      */
       
    33     EVPbkLVMultipleVCardOverBTAndIR = 0x00000001,
       
    34 
       
    35     /**
       
    36 	 * Contact info view sideways navigation.
       
    37      */
       
    38 	EVPbkLVContactInfoViewNavigation = 0x00000002,
       
    39 
       
    40     /**
       
    41 	 * Send selected contact fields in vCard.
       
    42      */
       
    43 	EVPbkLVSendSelectedContactFields = 0x00000004,
       
    44 
       
    45     /**
       
    46 	 * Add Nick Name field to Phonebook fields.
       
    47      */
       
    48 	EVPbkLVAddNickNameField = 0x00000008,
       
    49 
       
    50     /**
       
    51 	 * Add Video Telephony fields to Phonebook fields.
       
    52      */
       
    53 	EVPbkLVAddVideoTelephonyFields = 0x00000010,
       
    54 
       
    55     /**
       
    56      * Enable Phonebook to be sent to the background up on exit.
       
    57      */
       
    58 	EVPbkLVAlwaysOnPhonebook = 0x00000020,
       
    59 
       
    60     /**
       
    61      * Enable launch of Speed Dial application from names list.
       
    62      */
       
    63 	EVPbkLVAllowOpen1Touch = 0x00000040,
       
    64 
       
    65     /**
       
    66      * Enable check for duplicate entry when saving edited contact.
       
    67      */
       
    68 	EVPbkLVCheckDuplicateEntry = 0x00000080,
       
    69 
       
    70     /**
       
    71      * Add support for generic SIP field
       
    72      */
       
    73 	EVPbkLVAddSIPFields = 0x00000100,
       
    74 
       
    75     /**
       
    76      * Add MDO(prefix&suffix) fields to Phonebook fields.
       
    77      */
       
    78 	EVPbkLVAddMDOFields = 0x00000200,
       
    79 
       
    80     /**
       
    81      * Enable Adn when FDN is on.
       
    82      */
       
    83 	EVPbkLVEnableAdnWhenFdnOn = 0x00000400,
       
    84 
       
    85      /**
       
    86       * Group management, send option available in group list
       
    87       */
       
    88 	EVPbkLVGroupManagementSend = 0x00000800,
       
    89 
       
    90      /**
       
    91       * Support for POC/PTT (Push To Talk Over Cellular) fields
       
    92       */
       
    93 	EVPbkLVPOC = 0x00001000,
       
    94 
       
    95 	/**
       
    96      * Use UTF-8 charset instead of Shift-JIS in Japanese
       
    97      */
       
    98 	EVPbkLVUseJapaneseUTF8 = 0x00002000,
       
    99 
       
   100     /**
       
   101      * Add MegaOperator fields to Phonebook fields.
       
   102      */
       
   103     EVPbkLVMegaOperatorFields = 0x00004000,
       
   104 
       
   105     /**
       
   106      * Make postal code editor alphanumeric by default.
       
   107      */
       
   108     EVPbkLVPostalFieldAlphaDefault = 0x00008000,
       
   109 
       
   110     /**
       
   111      * Add Pager field to the entry template.
       
   112      */
       
   113     EVPbkLVPagerInTemplate = 0x00010000,
       
   114 
       
   115     /**
       
   116      * Enable Middle softkey (MSK) in Phonebook.
       
   117      */
       
   118     EVPbkLVEnableMiddleSoftKey = 0x00020000,
       
   119 
       
   120     /**
       
   121      * Support for Share View/SWIS(See What I See) fields
       
   122      */
       
   123     EVPbkLVShareView = 0x00040000,
       
   124 
       
   125     /**
       
   126      * Support for VOIP (Voice Over Internet Protocol) fields
       
   127      * Remeber that there is also a platform wide flag KFeatureIdCommonVoip.
       
   128      */
       
   129     EVPbkLVVOIP = 0x00080000,
       
   130 
       
   131     /**
       
   132      * Show email addresses in Send Message address selection.
       
   133      */
       
   134     EVPbkLVShowEmailInSendMsg = 0x00100000
       
   135 	};
       
   136 
       
   137 
       
   138 #endif // VPBKVARIANT_HRH
       
   139 
       
   140 // End of File