|
1 /* |
|
2 * Copyright (c) 2004-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 "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: Resource file for PIM API / ToDo lists |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // RESOURCE IDENTIFIER |
|
20 NAME PIMT |
|
21 |
|
22 // INTERNAL INCLUDES |
|
23 #include "pimtodo.h" |
|
24 #include "PIMPlugin.rh" |
|
25 |
|
26 // EXTERNAL INCLUDES |
|
27 #include <uikon.rh> |
|
28 #include <pimtodo.loc> |
|
29 |
|
30 RESOURCE RSS_SIGNATURE { } |
|
31 |
|
32 // RESOURCE DEFINITIONS |
|
33 // --------------------------------------------------------------------------- |
|
34 // R_PIM_TODO_LISTS |
|
35 // This resource structure holds information about todo lists and labels |
|
36 // associated to each list. |
|
37 // |
|
38 // @see PIM_LIST |
|
39 // @see PIM_LABEL_ARRAY |
|
40 // --------------------------------------------------------------------------- |
|
41 // |
|
42 RESOURCE PIM_LIST_ARRAY r_pim_todo_lists |
|
43 { |
|
44 lists = |
|
45 { |
|
46 // Default ToDo list |
|
47 PIM_LIST |
|
48 { |
|
49 list_name = r_pim_todo_listname; |
|
50 field_array_id = r_pim_todo_fields; |
|
51 } |
|
52 }; |
|
53 } |
|
54 |
|
55 // --------------------------------------------------------------------------- |
|
56 // R_PIM_TODO_FIELDS |
|
57 // Array of labels associated to todo fields. Fields may contain sub-elements |
|
58 // such as array elements. Those have to be presented in a different structure |
|
59 // |
|
60 // @see PIM_LABEL_PAIR |
|
61 // @see PIM_LABEL_PAIR_WITH_SUBELEMENTS |
|
62 // --------------------------------------------------------------------------- |
|
63 // |
|
64 RESOURCE PIM_LABEL_ARRAY r_pim_todo_fields |
|
65 { |
|
66 labels = |
|
67 { |
|
68 PIM_LABEL_PAIR |
|
69 { |
|
70 id = EPIMToDoSummary; |
|
71 label = qtn_jpim_todo_summary; |
|
72 }, |
|
73 PIM_LABEL_PAIR |
|
74 { |
|
75 id = EPIMToDoNote; |
|
76 label = qtn_jpim_todo_note; |
|
77 }, |
|
78 PIM_LABEL_PAIR |
|
79 { |
|
80 id = EPIMToDoDue; |
|
81 label = qtn_jpim_todo_due; |
|
82 }, |
|
83 PIM_LABEL_PAIR |
|
84 { |
|
85 id = EPIMToDoExtAlarm; |
|
86 label = qtn_jpim_todo_extalarm; |
|
87 }, |
|
88 PIM_LABEL_PAIR |
|
89 { |
|
90 id = EPIMToDoPriority; |
|
91 label = qtn_jpim_todo_priority; |
|
92 }, |
|
93 PIM_LABEL_PAIR |
|
94 { |
|
95 id = EPIMToDoCompleted; |
|
96 label = qtn_jpim_todo_completed; |
|
97 }, |
|
98 PIM_LABEL_PAIR |
|
99 { |
|
100 id = EPIMToDoCompletionDate; |
|
101 label = qtn_jpim_todo_completiondate; |
|
102 }, |
|
103 PIM_LABEL_PAIR |
|
104 { |
|
105 id = EPIMToDoClass; |
|
106 label = qtn_jpim_todo_class; |
|
107 }, |
|
108 PIM_LABEL_PAIR |
|
109 { |
|
110 id = EPIMToDoUid; |
|
111 label = qtn_jpim_todo_uid; |
|
112 }, |
|
113 PIM_LABEL_PAIR |
|
114 { |
|
115 id = EPIMToDoRevision; |
|
116 label = qtn_jpim_todo_revision; |
|
117 } |
|
118 }; |
|
119 } |
|
120 |
|
121 // --------------------------------------------------------------------------- |
|
122 // String resources |
|
123 // --------------------------------------------------------------------------- |
|
124 // |
|
125 RESOURCE LBUF r_pim_todo_listname { txt = qtn_jpim_todo_listname; } |
|
126 |
|
127 // End of File |