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");
|
|
32 |
_LIT8( KCmdAdd, "Add" );
|
|
33 |
_LIT8( KCmdDelete, "Delete" );
|
|
34 |
_LIT8( KCmdOrganiseGroups, "Organise" );
|
|
35 |
_LIT8( KCmdCancel, "Cancel" );
|
|
36 |
// Constant for the appending Error code
|
|
37 |
_LIT8( KErrorCode, "ErrorCode" );
|
|
38 |
_LIT8( KErrorMessage, "ErrorMessage" );
|
|
39 |
|
|
40 |
// Constant for the appending TransactionID
|
|
41 |
_LIT8( KTransactionID, "TransactionID" );
|
|
42 |
|
|
43 |
//Constant for appending Iterator
|
|
44 |
_LIT8( KReturnValue, "ReturnValue");
|
|
45 |
|
|
46 |
_LIT8(KSourceFileNameParam, "SourceFile");
|
|
47 |
_LIT8(KDestFileNameParam, "DestinationFile");
|
|
48 |
_LIT8(KGroupId,"id");
|
|
49 |
_LIT8(KContactId, "id");
|
|
50 |
|
|
51 |
|
|
52 |
_LIT8(KFieldLabel, "Label");
|
|
53 |
_LIT8(KFieldValue, "Value");
|
|
54 |
_LIT8(KFieldNext, "Next");
|
|
55 |
_LIT8(KGroupLabel, "GroupLabel");
|
|
56 |
_LIT8(KContents, "Contents");
|
|
57 |
|
|
58 |
_LIT8(KList, "IdList");
|
|
59 |
_LIT(KContact, "Contact");
|
|
60 |
_LIT(KGroup, "Group");
|
|
61 |
_LIT(KDatabase, "Database");
|
|
62 |
|
|
63 |
_LIT8(KDBUri, "DBUri");
|
|
64 |
_LIT8(KSearchVal, "SearchVal");
|
|
65 |
_LIT8(KType, "Type");
|
|
66 |
_LIT8(KFilter, "Filter");
|
|
67 |
_LIT8(KSort, "Sort");
|
|
68 |
_LIT8(KOrder, "Order");
|
|
69 |
_LIT8(KData, "Data");
|
|
70 |
_LIT8(KOperationType, "OperationType");
|
|
71 |
|
|
72 |
_LIT(KAssociate, "Associate");
|
|
73 |
_LIT(KDissociate, "Disassociate");
|
|
74 |
|
|
75 |
_LIT(KAscending, "Ascending");
|
|
76 |
_LIT(KDescending, "Descending");
|
|
77 |
|
|
78 |
|
|
79 |
#ifndef C_FIELDKEYS_HRH
|
|
80 |
|
|
81 |
_LIT8(KSync, "Sync");
|
|
82 |
_LIT8(KLastName, "LastName");
|
|
83 |
_LIT8(KLastNameReading, "LastNameReading");
|
|
84 |
_LIT8(KFirstName, "FirstName");
|
|
85 |
_LIT8(KFirstNameReading, "FirstNameReading");
|
|
86 |
_LIT8(KPrefix, "Prefix");
|
|
87 |
_LIT8(KSuffix, "Suffix");
|
|
88 |
_LIT8(KSecondName, "SecondName");
|
|
89 |
_LIT8(KLandPhoneHome, "LandPhoneHome");
|
|
90 |
_LIT8(KMobilePhoneHome, "MobilePhoneHome");
|
|
91 |
_LIT8(KVideoNumberHome, "VideoNumberHome");
|
|
92 |
_LIT8(KFaxNumberHome, "FaxNumberHome");
|
|
93 |
_LIT8(KVoipHome, "VoipHome");
|
|
94 |
_LIT8(KEmailHome, "EmailHome");
|
|
95 |
_LIT8(KURLHome, "URLHome");
|
|
96 |
_LIT8(KAddrLabelHome, "AddrLabelHome");
|
|
97 |
_LIT8(KAddrPOHome, "AddrPOHome");
|
|
98 |
_LIT8(KAddrEXTHome, "AddrEXTHome");
|
|
99 |
_LIT8(KAddrStreetHome, "AddrStreetHome");
|
|
100 |
_LIT8(KAddrLocalHome, "AddrLocalHome");
|
|
101 |
_LIT8(KAddrRegionHome, "AddrRegionHome");
|
|
102 |
_LIT8(KAddrPostCodeHome, "AddrPostCodeHome");
|
|
103 |
_LIT8(KAddrCountryHome, "AddrCountryHome");
|
|
104 |
_LIT8(KJobTitle, "JobTitle");
|
|
105 |
_LIT8(KCompanyName,"CompanyName");
|
|
106 |
_LIT8(KLandPhoneWork, "LandPhoneWork");
|
|
107 |
_LIT8(KMobilePhoneWork, "MobilePhoneWork");
|
|
108 |
_LIT8(KVideoNumberWork, "VideoNumberWork");
|
|
109 |
_LIT8(KFaxNumberWork, "FaxNumberWork");
|
|
110 |
_LIT8(KVoipWork, "VoipWork");
|
|
111 |
_LIT8(KEmailWork, "EmailWork");
|
|
112 |
_LIT8(KURLWork, "URLWork");
|
|
113 |
_LIT8(KAddrLabelWork, "AddrLabelWork");
|
|
114 |
_LIT8(KAddrPOWork, "AddrPOWork");
|
|
115 |
_LIT8(KAddrEXTWork, "AddrEXTWork");
|
|
116 |
_LIT8(KAddrStreetWork, "AddrStreetWork");
|
|
117 |
_LIT8(KAddrLocalWork, "AddrLocalWork");
|
|
118 |
_LIT8(KAddrRegionWork, "AddrRegionWork");
|
|
119 |
_LIT8(KAddrPostCodeWork, "AddrPostCodeWork");
|
|
120 |
_LIT8(KAddrCountryWork, "AddrCountryWork");
|
|
121 |
_LIT8(KLandPhoneGen, "LandPhoneGen");
|
|
122 |
_LIT8(KMobilePhoneGen, "MobilePhoneGen");
|
|
123 |
_LIT8(KVideoNumberGen, "VideoNumberGen");
|
|
124 |
_LIT8(KFaxNumberGen, "FaxNumberGen");
|
|
125 |
_LIT8(KVOIPGen, "VOIPGen");
|
|
126 |
_LIT8(KPOC, "POC");
|
|
127 |
_LIT8(KSWIS, "SWIS");
|
|
128 |
_LIT8(KSIP, "SIP");
|
|
129 |
_LIT8(KEmailGen, "EmailGen");
|
|
130 |
_LIT8(KURLGen, "URLGen");
|
|
131 |
_LIT8(KAddrLabelGen, "AddrLabelGen");
|
|
132 |
_LIT8(KAddrPOGen, "AddrPOGen");
|
|
133 |
_LIT8(KAddrExtGen, "AddrExtGen");
|
|
134 |
_LIT8(KAddrStreetGen, "AddrStreetGen");
|
|
135 |
_LIT8(KAddrLocalGen, "AddrLocalGen");
|
|
136 |
_LIT8(KAddrRegionGen, "AddrRegionGen");
|
|
137 |
_LIT8(KAddrPostCodeGen, "AddrPostCodeGen");
|
|
138 |
_LIT8(KAddrCountryGen, "AddrCountryGen");
|
|
139 |
_LIT8(KPageNumber, "PageNumber");
|
|
140 |
_LIT8(KDTMFString, "DTMFString");
|
|
141 |
_LIT8(KWVAddress, "WVAddress");
|
|
142 |
_LIT8(KDate, "Date");
|
|
143 |
_LIT8(KNote, "Note");
|
|
144 |
_LIT8(KThumbNailPic, "ThumbNailPic");
|
|
145 |
_LIT8(KRingtone, "Ringtone");
|
|
146 |
_LIT8(KCallerObjImg, "CallerObjImg");
|
|
147 |
_LIT8(KCallerObjText, "CallerObjText");
|
|
148 |
_LIT8(KMiddleName, "MiddleName");
|
|
149 |
_LIT8(KDepartment, "Department");
|
|
150 |
_LIT8(KAsstName, "AsstName");
|
|
151 |
_LIT8(KSpouse, "Spouse");
|
|
152 |
_LIT8(KChildren, "Children");
|
|
153 |
_LIT8(KAsstPhone, "AsstPhone");
|
|
154 |
_LIT8(KCarPhone, "CarPhone");
|
|
155 |
_LIT8(KAnniversary, "Anniversary");
|
|
156 |
_LIT8(KSyncClass, "SyncClass");
|
|
157 |
_LIT8(KLOCPrivacy, "LOCPrivacy");
|
|
158 |
_LIT8(KGenLabel, "GenLabel");
|
|
159 |
|
|
160 |
#endif // C_FIELDKEYS_HRH
|
|
161 |
#endif // C_CONTACTINTERFACE_HRH
|