author | Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com> |
Thu, 27 Aug 2009 07:43:07 +0300 | |
changeset 10 | fc9cf246af83 |
parent 5 | 989d2f495d90 |
permissions | -rw-r--r-- |
5 | 1 |
/* |
2 |
* Copyright (c) 2006-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 the License "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: Provides the Enumerations for contact interface Parameters |
|
15 |
* |
|
16 |
*/ |
|
17 |
||
18 |
||
19 |
#ifndef C_CONTACTINTERFACE_HRH |
|
20 |
#define C_CONTACTINTERFACE_HRH |
|
21 |
||
22 |
enum TcontactAsyncCommands |
|
23 |
{ |
|
24 |
ECmdImport = 0, |
|
25 |
ECmdExport |
|
26 |
}; |
|
27 |
||
28 |
//commands that can be performed on the contacts database. |
|
29 |
_LIT8( KCmdImport, "Import" ); |
|
30 |
_LIT8( KCmdExport, "Export" ); |
|
31 |
_LIT8( KCmdGetList, "GetList"); |
|
10
fc9cf246af83
Revision: 200931
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
5
diff
changeset
|
32 |
_LIT8( KCmdGetIds, "GetIds"); |
5 | 33 |
_LIT8( KCmdAdd, "Add" ); |
34 |
_LIT8( KCmdDelete, "Delete" ); |
|
35 |
_LIT8( KCmdOrganiseGroups, "Organise" ); |
|
36 |
_LIT8( KCmdCancel, "Cancel" ); |
|
37 |
// Constant for the appending Error code |
|
38 |
_LIT8( KErrorCode, "ErrorCode" ); |
|
39 |
_LIT8( KErrorMessage, "ErrorMessage" ); |
|
10
fc9cf246af83
Revision: 200931
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
5
diff
changeset
|
40 |
_LIT8(KIdsLabel,"IdList"); |
5 | 41 |
// Constant for the appending TransactionID |
42 |
_LIT8( KTransactionID, "TransactionID" ); |
|
43 |
||
44 |
//Constant for appending Iterator |
|
45 |
_LIT8( KReturnValue, "ReturnValue"); |
|
46 |
||
47 |
_LIT8(KSourceFileNameParam, "SourceFile"); |
|
48 |
_LIT8(KDestFileNameParam, "DestinationFile"); |
|
49 |
_LIT8(KGroupId,"id"); |
|
50 |
_LIT8(KContactId, "id"); |
|
51 |
||
52 |
||
53 |
_LIT8(KFieldLabel, "Label"); |
|
54 |
_LIT8(KFieldValue, "Value"); |
|
55 |
_LIT8(KFieldNext, "Next"); |
|
56 |
_LIT8(KGroupLabel, "GroupLabel"); |
|
57 |
_LIT8(KContents, "Contents"); |
|
58 |
||
59 |
_LIT8(KList, "IdList"); |
|
60 |
_LIT(KContact, "Contact"); |
|
61 |
_LIT(KGroup, "Group"); |
|
62 |
_LIT(KDatabase, "Database"); |
|
63 |
||
64 |
_LIT8(KDBUri, "DBUri"); |
|
65 |
_LIT8(KSearchVal, "SearchVal"); |
|
66 |
_LIT8(KType, "Type"); |
|
67 |
_LIT8(KFilter, "Filter"); |
|
68 |
_LIT8(KSort, "Sort"); |
|
69 |
_LIT8(KOrder, "Order"); |
|
70 |
_LIT8(KData, "Data"); |
|
71 |
_LIT8(KOperationType, "OperationType"); |
|
72 |
||
73 |
_LIT(KAssociate, "Associate"); |
|
74 |
_LIT(KDissociate, "Disassociate"); |
|
75 |
||
76 |
_LIT(KAscending, "Ascending"); |
|
77 |
_LIT(KDescending, "Descending"); |
|
78 |
||
10
fc9cf246af83
Revision: 200931
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
5
diff
changeset
|
79 |
_LIT(KXspidLabel,"IMPP"); |
5 | 80 |
|
81 |
#ifndef C_FIELDKEYS_HRH |
|
82 |
||
83 |
_LIT8(KSync, "Sync"); |
|
84 |
_LIT8(KLastName, "LastName"); |
|
85 |
_LIT8(KLastNameReading, "LastNameReading"); |
|
86 |
_LIT8(KFirstName, "FirstName"); |
|
87 |
_LIT8(KFirstNameReading, "FirstNameReading"); |
|
88 |
_LIT8(KPrefix, "Prefix"); |
|
89 |
_LIT8(KSuffix, "Suffix"); |
|
90 |
_LIT8(KSecondName, "SecondName"); |
|
91 |
_LIT8(KLandPhoneHome, "LandPhoneHome"); |
|
92 |
_LIT8(KMobilePhoneHome, "MobilePhoneHome"); |
|
93 |
_LIT8(KVideoNumberHome, "VideoNumberHome"); |
|
94 |
_LIT8(KFaxNumberHome, "FaxNumberHome"); |
|
95 |
_LIT8(KVoipHome, "VoipHome"); |
|
96 |
_LIT8(KEmailHome, "EmailHome"); |
|
97 |
_LIT8(KURLHome, "URLHome"); |
|
98 |
_LIT8(KAddrLabelHome, "AddrLabelHome"); |
|
99 |
_LIT8(KAddrPOHome, "AddrPOHome"); |
|
100 |
_LIT8(KAddrEXTHome, "AddrEXTHome"); |
|
101 |
_LIT8(KAddrStreetHome, "AddrStreetHome"); |
|
102 |
_LIT8(KAddrLocalHome, "AddrLocalHome"); |
|
103 |
_LIT8(KAddrRegionHome, "AddrRegionHome"); |
|
104 |
_LIT8(KAddrPostCodeHome, "AddrPostCodeHome"); |
|
105 |
_LIT8(KAddrCountryHome, "AddrCountryHome"); |
|
106 |
_LIT8(KJobTitle, "JobTitle"); |
|
107 |
_LIT8(KCompanyName,"CompanyName"); |
|
108 |
_LIT8(KLandPhoneWork, "LandPhoneWork"); |
|
109 |
_LIT8(KMobilePhoneWork, "MobilePhoneWork"); |
|
110 |
_LIT8(KVideoNumberWork, "VideoNumberWork"); |
|
111 |
_LIT8(KFaxNumberWork, "FaxNumberWork"); |
|
112 |
_LIT8(KVoipWork, "VoipWork"); |
|
113 |
_LIT8(KEmailWork, "EmailWork"); |
|
114 |
_LIT8(KURLWork, "URLWork"); |
|
115 |
_LIT8(KAddrLabelWork, "AddrLabelWork"); |
|
116 |
_LIT8(KAddrPOWork, "AddrPOWork"); |
|
117 |
_LIT8(KAddrEXTWork, "AddrEXTWork"); |
|
118 |
_LIT8(KAddrStreetWork, "AddrStreetWork"); |
|
119 |
_LIT8(KAddrLocalWork, "AddrLocalWork"); |
|
120 |
_LIT8(KAddrRegionWork, "AddrRegionWork"); |
|
121 |
_LIT8(KAddrPostCodeWork, "AddrPostCodeWork"); |
|
122 |
_LIT8(KAddrCountryWork, "AddrCountryWork"); |
|
123 |
_LIT8(KLandPhoneGen, "LandPhoneGen"); |
|
124 |
_LIT8(KMobilePhoneGen, "MobilePhoneGen"); |
|
125 |
_LIT8(KVideoNumberGen, "VideoNumberGen"); |
|
126 |
_LIT8(KFaxNumberGen, "FaxNumberGen"); |
|
127 |
_LIT8(KVOIPGen, "VOIPGen"); |
|
128 |
_LIT8(KPOC, "POC"); |
|
129 |
_LIT8(KSWIS, "SWIS"); |
|
130 |
_LIT8(KSIP, "SIP"); |
|
131 |
_LIT8(KEmailGen, "EmailGen"); |
|
132 |
_LIT8(KURLGen, "URLGen"); |
|
133 |
_LIT8(KAddrLabelGen, "AddrLabelGen"); |
|
134 |
_LIT8(KAddrPOGen, "AddrPOGen"); |
|
135 |
_LIT8(KAddrExtGen, "AddrExtGen"); |
|
136 |
_LIT8(KAddrStreetGen, "AddrStreetGen"); |
|
137 |
_LIT8(KAddrLocalGen, "AddrLocalGen"); |
|
138 |
_LIT8(KAddrRegionGen, "AddrRegionGen"); |
|
139 |
_LIT8(KAddrPostCodeGen, "AddrPostCodeGen"); |
|
140 |
_LIT8(KAddrCountryGen, "AddrCountryGen"); |
|
141 |
_LIT8(KPageNumber, "PageNumber"); |
|
142 |
_LIT8(KDTMFString, "DTMFString"); |
|
143 |
_LIT8(KWVAddress, "WVAddress"); |
|
144 |
_LIT8(KDate, "Date"); |
|
145 |
_LIT8(KNote, "Note"); |
|
146 |
_LIT8(KThumbNailPic, "ThumbNailPic"); |
|
147 |
_LIT8(KRingtone, "Ringtone"); |
|
148 |
_LIT8(KCallerObjImg, "CallerObjImg"); |
|
149 |
_LIT8(KCallerObjText, "CallerObjText"); |
|
150 |
_LIT8(KMiddleName, "MiddleName"); |
|
151 |
_LIT8(KDepartment, "Department"); |
|
152 |
_LIT8(KAsstName, "AsstName"); |
|
153 |
_LIT8(KSpouse, "Spouse"); |
|
154 |
_LIT8(KChildren, "Children"); |
|
155 |
_LIT8(KAsstPhone, "AsstPhone"); |
|
156 |
_LIT8(KCarPhone, "CarPhone"); |
|
157 |
_LIT8(KAnniversary, "Anniversary"); |
|
158 |
_LIT8(KSyncClass, "SyncClass"); |
|
159 |
_LIT8(KLOCPrivacy, "LOCPrivacy"); |
|
160 |
_LIT8(KGenLabel, "GenLabel"); |
|
10
fc9cf246af83
Revision: 200931
Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
parents:
5
diff
changeset
|
161 |
_LIT8(KXspid, "IMPP"); |
5 | 162 |
|
163 |
#endif // C_FIELDKEYS_HRH |
|
164 |
#endif // C_CONTACTINTERFACE_HRH |