|
1 /* |
|
2 * Copyright (c) 2003-2006 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: AIW generic parameter definitions. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 |
|
22 #ifndef AIW_GENERIC_PARAM_HRH |
|
23 #define AIW_GENERIC_PARAM_HRH |
|
24 |
|
25 /** |
|
26 * Pre-defined sematic IDs for generic parameters (TAiwGenericParam). |
|
27 * The data type of the parameter specifies the representation of the parameter. |
|
28 * Use TGenericParamId instead of using TGenericParamIdValue directly. |
|
29 * Additional generic param definitions are possible besides this list. |
|
30 * @see TAiwGenericParam. |
|
31 */ |
|
32 enum TGenericParamIdValue |
|
33 { |
|
34 EGenericParamUnspecified = 0, |
|
35 |
|
36 // General parameters |
|
37 EGenericParamError = 1, // Any error parameter |
|
38 EGenericParamDir = 2, // Any directory |
|
39 EGenericParamFile = 3, // Any file |
|
40 |
|
41 EGenericParamHelpItem = 24, |
|
42 |
|
43 EGenericParamLandmark = 210, |
|
44 EGenericParamLandmarkDatabase = 211, |
|
45 EGenericParamLandmarkId = 212, |
|
46 EGenericParamLandmarkIdList = 213, |
|
47 EGenericParamMnCommonOptions = 214, |
|
48 EGenericParamMnMapViewOptions = 215, |
|
49 EGenericParamMnGeocodingOptions = 216, |
|
50 EGenericParamRequestText = 217 |
|
51 }; |
|
52 |
|
53 |
|
54 // String constants for above sematic ids to be used in content matching. |
|
55 |
|
56 #define EGenericParamUnspecifiedStr "0" |
|
57 #define EGenericParamErrorStr "1" |
|
58 #define EGenericParamDirStr "2" |
|
59 #define EGenericParamFileStr "3" |
|
60 #define EGenericParamHelpItemStr "24" |
|
61 #define EGenericParamLandmarkStr "210" |
|
62 #define EGenericParamLandmarkDatabaseStr "211" |
|
63 #define EGenericParamLandmarkIdStr "212" |
|
64 #define EGenericParamLandmarkIdListStr "213" |
|
65 #define EGenericParamMnCommonOptionsStr "214" |
|
66 #define EGenericParamMnMapViewOptionsStr "215" |
|
67 #define EGenericParamMnGeocodingOptionsStr "216" |
|
68 #define EGenericParamRequestTextStr "217" |
|
69 |
|
70 #endif // AIW_GENERIC_PARAM_HRH |
|
71 |
|
72 // End of file |
|
73 |