|
1 /* |
|
2 * Copyright (c) 2008 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: PIM Versit API definitions |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 #ifndef PIMVERSIT_H |
|
20 #define PIMVERSIT_H |
|
21 |
|
22 // PIM Versit tokens for extended Contact fields. These fields |
|
23 // do not belong to the standard vCard specification field set and |
|
24 // do not have properties defined |
|
25 _LIT8(KPIMVersitTokenNICKNAME, "X-NICKNAME"); |
|
26 _LIT8(KPIMVersitTokenDTMF, "X-DTMF"); |
|
27 _LIT8(KPIMVersitTokenWVID, "X-WV-ID"); |
|
28 _LIT8(KPIMVersitTokenASSTTEL, "X-ASSISTANT-TEL"); |
|
29 _LIT8(KPIMVersitTokenSIP, "X-SIP"); |
|
30 |
|
31 // SIP field has subtypes of VOIP, PoC (Push-to-talk) and share view |
|
32 // these are all extended properties and need their own definitions |
|
33 _LIT8(KPIMVersitTokenVoip, "VOIP"); |
|
34 _LIT8(KPIMVersitTokenPoc, "POC"); |
|
35 _LIT8(KPIMVersitTokenSwis, "SWIS"); |
|
36 |
|
37 // Strings for mapping CLASS values correctly to vCard/vCalendar and back |
|
38 _LIT(KPIMClassStringPublic, "PUBLIC"); |
|
39 _LIT(KPIMClassStringPrivate, "PRIVATE"); |
|
40 _LIT(KPIMClassStringConfidential, "CONFIDENTIAL"); |
|
41 |
|
42 // Strings for mapping ToDo completed field to vCalendar and back |
|
43 _LIT(KPIMStatusCompleted, "COMPLETED"); |
|
44 _LIT(KPIMStatusUncompleted, "NEEDS ACTION"); |
|
45 |
|
46 // String for separating name reading values in vCards |
|
47 _LIT(KPIMSpaceString, " "); |
|
48 |
|
49 #endif // PIMVERSIT_H |
|
50 // End of file |