1 /* |
|
2 * Copyright (c) 2004,2005 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 SVGT App observer DLL. |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 // RESOURCE IDENTIFIER |
|
20 |
|
21 NAME SVGA |
|
22 |
|
23 // INCLUDES |
|
24 |
|
25 #include <eikon.rh> |
|
26 #include <avkon.rh> |
|
27 #include <avkon.rsg> |
|
28 #include <avkon.mbg> |
|
29 #include <avkon.loc> |
|
30 #include <avkon.hrh> |
|
31 #include <documenthandler.loc> |
|
32 #ifdef __SCALABLE_ICONS |
|
33 #include <appinfo.rh> |
|
34 #endif |
|
35 #include <CommonDialogs.hrh> |
|
36 #include <CommonDialogs.rh> |
|
37 #include <pathconfiguration.hrh> |
|
38 #include <e32keys.h> |
|
39 #include <svgtuicontrol.loc> |
|
40 // --------------------------------------------------------- |
|
41 // |
|
42 // Define the resource file signature |
|
43 // This resource should be empty. |
|
44 // |
|
45 // --------------------------------------------------------- |
|
46 // |
|
47 RESOURCE RSS_SIGNATURE |
|
48 { |
|
49 } |
|
50 |
|
51 RESOURCE TBUF |
|
52 { |
|
53 buf = "SVGTAppObserver"; |
|
54 } |
|
55 |
|
56 //---------------------------------------------------- |
|
57 // |
|
58 // r_svgt_save_locations |
|
59 // |
|
60 //---------------------------------------------------- |
|
61 // |
|
62 RESOURCE MEMORYSELECTIONDIALOG r_svgt_save_locations |
|
63 { |
|
64 softkey_1 = text_softkey_ok; |
|
65 softkey_2 = text_softkey_cancel; |
|
66 locations = |
|
67 { |
|
68 #ifndef RD_MULTIPLE_DRIVE |
|
69 LOCATION { root_path = text_phone_memory_root_path text_others_path; }, |
|
70 LOCATION { root_path = text_memory_card_root_path text_others_path; } |
|
71 #else |
|
72 LOCATION |
|
73 { |
|
74 root_path = "C:\\Data\\"; |
|
75 //default_folder="images\\"; |
|
76 default_folder="Others\\"; |
|
77 }, |
|
78 LOCATION |
|
79 { |
|
80 root_path = "E:\\"; |
|
81 //default_folder="images\\"; |
|
82 default_folder="Others\\"; |
|
83 } |
|
84 |
|
85 #endif |
|
86 }; |
|
87 } |
|
88 |
|
89 // --------------------------------------------------- |
|
90 // |
|
91 // r_svgt_mmc_full |
|
92 // |
|
93 // --------------------------------------------------- |
|
94 // |
|
95 RESOURCE TBUF r_svgt_mmc_full |
|
96 { |
|
97 buf = qtn_memlo_mmc_not_enough_memory; |
|
98 } |
|
99 |
|
100 // --------------------------------------------------- |
|
101 // |
|
102 // r_svgt_saving_wait_note |
|
103 // |
|
104 // --------------------------------------------------- |
|
105 // |
|
106 RESOURCE DIALOG r_svgt_saving_wait_note |
|
107 { |
|
108 flags = EAknProgressNoteFlags; |
|
109 buttons = r_svgt_waitnote_softkeys; |
|
110 items = |
|
111 { |
|
112 DLG_LINE |
|
113 { |
|
114 type = EAknCtNote; |
|
115 id = 10; |
|
116 control = AVKON_NOTE |
|
117 { |
|
118 layout = EProgressLayout; |
|
119 singular_label = qtn_gen_note_saving; |
|
120 imageid = EMbmAvkonQgn_note_progress; |
|
121 imagemask = EMbmAvkonQgn_note_progress_mask; |
|
122 }; |
|
123 } |
|
124 }; |
|
125 } |
|
126 |
|
127 // --------------------------------------------------- |
|
128 // |
|
129 // r_svgt_download_wait_note |
|
130 // |
|
131 // --------------------------------------------------- |
|
132 // |
|
133 RESOURCE DIALOG r_svgt_download_wait_note |
|
134 { |
|
135 flags = EAknWaitNoteFlags; |
|
136 buttons = r_svgt_waitnote_softkeys; |
|
137 items = |
|
138 { |
|
139 DLG_LINE |
|
140 { |
|
141 type = EAknCtNote; |
|
142 id = 15; // EWaitNote |
|
143 control = AVKON_NOTE |
|
144 { |
|
145 layout = EWaitLayout; |
|
146 imageid = EMbmAvkonQgn_note_progress; |
|
147 imagemask = EMbmAvkonQgn_note_progress_mask; |
|
148 animation = R_QGN_GRAF_WAIT_BAR_ANIM; |
|
149 }; |
|
150 } |
|
151 }; |
|
152 } |
|
153 |
|
154 // --------------------------------------------------- |
|
155 // |
|
156 // r_svgt_saving_softkeys |
|
157 // |
|
158 // --------------------------------------------------- |
|
159 // |
|
160 RESOURCE CBA r_svgt_waitnote_softkeys |
|
161 { |
|
162 buttons= |
|
163 { |
|
164 CBA_BUTTON |
|
165 { |
|
166 id = EAknSoftkeyEmpty; |
|
167 txt = text_softkey_empty; |
|
168 }, |
|
169 CBA_BUTTON |
|
170 { |
|
171 id = EAknSoftkeyQuit; |
|
172 txt = text_softkey_cancel; |
|
173 } |
|
174 }; |
|
175 } |
|
176 |
|
177 // --------------------------------------------------- |
|
178 // |
|
179 // r_svgt_clip_saved |
|
180 // |
|
181 // --------------------------------------------------- |
|
182 // |
|
183 RESOURCE TBUF r_svgt_clip_saved |
|
184 { |
|
185 |
|
186 buf = qtn_fldr_others_directory ; |
|
187 } |
|
188 |
|
189 // --------------------------------------------------- |
|
190 // |
|
191 // r_svgt_file_not_found |
|
192 // |
|
193 // --------------------------------------------------- |
|
194 // |
|
195 RESOURCE TBUF r_svgt_file_not_found |
|
196 { |
|
197 buf = qtn_svgt_file_not_found; |
|
198 } |
|
199 |
|
200 // --------------------------------------------------- |
|
201 // |
|
202 // r_svgt_downloading_file |
|
203 // |
|
204 // --------------------------------------------------- |
|
205 // |
|
206 RESOURCE TBUF r_svgt_downloading_file |
|
207 { |
|
208 buf = qtn_svgt_waiting_downloading; |
|
209 } |
|
210 |
|
211 // End of File |
|