contacts_plat/contacts_ui_api/inc/cntuids.h
changeset 47 7cbcb2896f0e
parent 46 efe85016a067
child 66 554fe4dbbb59
equal deleted inserted replaced
46:efe85016a067 47:7cbcb2896f0e
    22 #include <e32cmn.h>
    22 #include <e32cmn.h>
    23 
    23 
    24 /*
    24 /*
    25 *   Contacts application's central repository Uid used for global settings
    25 *   Contacts application's central repository Uid used for global settings
    26 */
    26 */
    27 const TUid KCRUiContacts = {0x2002FF54};
    27 const TUid KCRCntSettings = {0x2002FF54};
    28 
    28 
    29 /*
    29 /*
    30 *   Key value used to store the name ordering setting i.e
    30 *   Key value used to store the name ordering setting i.e
    31 *   FirstName LastName, LastName FirstName etc
    31 *   FirstName LastName, LastName FirstName etc
    32 */
    32 */
    33 const TUint32 KCntNameOrdering = 0x00000001;
    33 const TUint32 KCntNameOrdering = 0x00000001;
       
    34 
       
    35 /*
       
    36 *   Key value used to store the setting how each row is presented
       
    37 *   in the names list: one row with a name, 2 rows with a name in the 
       
    38 *   first row and phone number in the second, etc.
       
    39 */
       
    40 const TUint32 KCntNameListRowSetting = 0x00000002;
    34 
    41 
    35 // name order enumerations
    42 // name order enumerations
    36 enum CntNameOrder {
    43 enum CntNameOrder {
    37     CntOrderLastFirst = 0x0,
    44     CntOrderLastFirst = 0x0,
    38     CntOrderLastCommaFirst = 0x1,
    45     CntOrderLastCommaFirst = 0x1,
    39     CntOrderFirstLast = 0x2
    46     CntOrderFirstLast = 0x2
    40 };
    47 };
    41 
    48 
       
    49 // name list row enumerations
       
    50 enum CntNameListRowSetting {
       
    51     CntOneRowNameOnly = 0x0,
       
    52     CntTwoRowsNameAndPhoneNumber = 0x1
       
    53 };
       
    54 
       
    55 
    42 #endif
    56 #endif