sl@0
|
1 |
// Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Part of the MVS Application for TechView
|
sl@0
|
15 |
//
|
sl@0
|
16 |
|
sl@0
|
17 |
|
sl@0
|
18 |
NAME NEWA
|
sl@0
|
19 |
|
sl@0
|
20 |
#include <techview/eikon.rh>
|
sl@0
|
21 |
#include <uikon.rh>
|
sl@0
|
22 |
#include <techview/eikon.hrh>
|
sl@0
|
23 |
#include <uiklafgt/eikcore.rsg>
|
sl@0
|
24 |
#include <eikcoctl.rsg>
|
sl@0
|
25 |
#include <eikctl.rsg>
|
sl@0
|
26 |
#include <eikfile.rsg>
|
sl@0
|
27 |
#include <eikprint.rsg>
|
sl@0
|
28 |
|
sl@0
|
29 |
#include <mvsapp.mbg>
|
sl@0
|
30 |
|
sl@0
|
31 |
|
sl@0
|
32 |
//enums for the resource file and application
|
sl@0
|
33 |
#include "MVSApp.hrh"
|
sl@0
|
34 |
|
sl@0
|
35 |
//string defs
|
sl@0
|
36 |
#include "MVSApp.rls"
|
sl@0
|
37 |
|
sl@0
|
38 |
RESOURCE RSS_SIGNATURE { }
|
sl@0
|
39 |
|
sl@0
|
40 |
RESOURCE TBUF
|
sl@0
|
41 |
{
|
sl@0
|
42 |
buf = "";
|
sl@0
|
43 |
}
|
sl@0
|
44 |
|
sl@0
|
45 |
RESOURCE EIK_APP_INFO
|
sl@0
|
46 |
{
|
sl@0
|
47 |
hotkeys = r_mvs_hotkeys;
|
sl@0
|
48 |
menubar = r_mvs_menubar;
|
sl@0
|
49 |
toolbar = r_mvs_toolbar;
|
sl@0
|
50 |
toolband = r_mvs_toolbar2;
|
sl@0
|
51 |
}
|
sl@0
|
52 |
|
sl@0
|
53 |
RESOURCE HOTKEYS r_mvs_hotkeys
|
sl@0
|
54 |
{
|
sl@0
|
55 |
control =
|
sl@0
|
56 |
{
|
sl@0
|
57 |
HOTKEY
|
sl@0
|
58 |
{
|
sl@0
|
59 |
command = EMVSCmdExit;
|
sl@0
|
60 |
key = HOTKEY_EEikCmdExit;
|
sl@0
|
61 |
},
|
sl@0
|
62 |
HOTKEY
|
sl@0
|
63 |
{
|
sl@0
|
64 |
command = EMVSCmdNew;
|
sl@0
|
65 |
key = HOTKEY_EMVSNew;
|
sl@0
|
66 |
},
|
sl@0
|
67 |
HOTKEY
|
sl@0
|
68 |
{
|
sl@0
|
69 |
command = EMVSCmdOpen;
|
sl@0
|
70 |
key = HOTKEY_EMVSOpen;
|
sl@0
|
71 |
},
|
sl@0
|
72 |
HOTKEY
|
sl@0
|
73 |
{
|
sl@0
|
74 |
command = EMVSCmdRecord;
|
sl@0
|
75 |
key = HOTKEY_EMVSRecord;
|
sl@0
|
76 |
},
|
sl@0
|
77 |
HOTKEY
|
sl@0
|
78 |
{
|
sl@0
|
79 |
command = EMVSCmdClose;
|
sl@0
|
80 |
key = HOTKEY_EMVSClose;
|
sl@0
|
81 |
},
|
sl@0
|
82 |
HOTKEY
|
sl@0
|
83 |
{
|
sl@0
|
84 |
command = EMVSButtonCancel;
|
sl@0
|
85 |
key = HOTKEY_EMVSCancel;
|
sl@0
|
86 |
}
|
sl@0
|
87 |
};
|
sl@0
|
88 |
plain =
|
sl@0
|
89 |
{
|
sl@0
|
90 |
HOTKEY
|
sl@0
|
91 |
{
|
sl@0
|
92 |
command = EMVSCmdPlay;
|
sl@0
|
93 |
key = HOTKEY_EMVSPlay;
|
sl@0
|
94 |
},
|
sl@0
|
95 |
HOTKEY
|
sl@0
|
96 |
{
|
sl@0
|
97 |
command = EMVSCmdPause;
|
sl@0
|
98 |
key = HOTKEY_EMVSPause;
|
sl@0
|
99 |
},
|
sl@0
|
100 |
HOTKEY
|
sl@0
|
101 |
{
|
sl@0
|
102 |
command = EMVSCmdStop;
|
sl@0
|
103 |
key = HOTKEY_EMVSStop;
|
sl@0
|
104 |
}
|
sl@0
|
105 |
};
|
sl@0
|
106 |
}
|
sl@0
|
107 |
|
sl@0
|
108 |
RESOURCE MENU_BAR r_mvs_menubar
|
sl@0
|
109 |
{
|
sl@0
|
110 |
titles =
|
sl@0
|
111 |
{
|
sl@0
|
112 |
MENU_TITLE
|
sl@0
|
113 |
{
|
sl@0
|
114 |
menu_pane = r_mvs_file_menu;
|
sl@0
|
115 |
txt = STRING_mvs_file_menu;
|
sl@0
|
116 |
},
|
sl@0
|
117 |
MENU_TITLE
|
sl@0
|
118 |
{
|
sl@0
|
119 |
menu_pane = r_mvs_edit_menu;
|
sl@0
|
120 |
txt = STRING_mvs_edit_menu;
|
sl@0
|
121 |
},
|
sl@0
|
122 |
MENU_TITLE
|
sl@0
|
123 |
{
|
sl@0
|
124 |
menu_pane = r_mvs_settings_menu;
|
sl@0
|
125 |
txt = STRING_mvs_settings_menu;
|
sl@0
|
126 |
},
|
sl@0
|
127 |
MENU_TITLE
|
sl@0
|
128 |
{
|
sl@0
|
129 |
menu_pane = r_mvs_controls_menu;
|
sl@0
|
130 |
txt = STRING_mvs_controls_menu;
|
sl@0
|
131 |
}
|
sl@0
|
132 |
};
|
sl@0
|
133 |
}
|
sl@0
|
134 |
|
sl@0
|
135 |
RESOURCE MENU_PANE r_mvs_file_menu
|
sl@0
|
136 |
{
|
sl@0
|
137 |
items =
|
sl@0
|
138 |
{
|
sl@0
|
139 |
MENU_ITEM
|
sl@0
|
140 |
{
|
sl@0
|
141 |
command = EMVSCmdNew;
|
sl@0
|
142 |
txt = STRING_mvs_file_menu_record;
|
sl@0
|
143 |
},
|
sl@0
|
144 |
MENU_ITEM
|
sl@0
|
145 |
{
|
sl@0
|
146 |
command = EMVSCmdOpen;
|
sl@0
|
147 |
txt = STRING_mvs_file_menu_play;
|
sl@0
|
148 |
},
|
sl@0
|
149 |
MENU_ITEM
|
sl@0
|
150 |
{
|
sl@0
|
151 |
command = EMVSCmdClose;
|
sl@0
|
152 |
txt = STRING_mvs_file_menu_close;
|
sl@0
|
153 |
},
|
sl@0
|
154 |
MENU_ITEM
|
sl@0
|
155 |
{
|
sl@0
|
156 |
command = EMVSCmdSystemInfo;
|
sl@0
|
157 |
txt = STRING_mvs_file_menu_systeminfo;
|
sl@0
|
158 |
},
|
sl@0
|
159 |
MENU_ITEM
|
sl@0
|
160 |
{
|
sl@0
|
161 |
command = EMVSCmdExit;
|
sl@0
|
162 |
txt = STRING_mvs_file_menu_exit;
|
sl@0
|
163 |
}
|
sl@0
|
164 |
};
|
sl@0
|
165 |
}
|
sl@0
|
166 |
|
sl@0
|
167 |
RESOURCE MENU_PANE r_mvs_edit_menu
|
sl@0
|
168 |
{
|
sl@0
|
169 |
items =
|
sl@0
|
170 |
{
|
sl@0
|
171 |
MENU_ITEM
|
sl@0
|
172 |
{
|
sl@0
|
173 |
command = EMVSCmdSetCropWindow;
|
sl@0
|
174 |
txt = STRING_mvs_edit_menu_setcropwindow;
|
sl@0
|
175 |
},
|
sl@0
|
176 |
MENU_ITEM
|
sl@0
|
177 |
{
|
sl@0
|
178 |
command = EMVSCmdSetPlayWindow;
|
sl@0
|
179 |
txt = STRING_mvs_edit_menu_setplaywindow;
|
sl@0
|
180 |
},
|
sl@0
|
181 |
MENU_ITEM
|
sl@0
|
182 |
{
|
sl@0
|
183 |
command = EMVSCmdClearPlayWindow;
|
sl@0
|
184 |
txt = STRING_mvs_edit_menu_clearplaywindow;
|
sl@0
|
185 |
}
|
sl@0
|
186 |
};
|
sl@0
|
187 |
}
|
sl@0
|
188 |
|
sl@0
|
189 |
|
sl@0
|
190 |
RESOURCE MENU_PANE r_mvs_settings_menu
|
sl@0
|
191 |
{
|
sl@0
|
192 |
items =
|
sl@0
|
193 |
{
|
sl@0
|
194 |
MENU_ITEM
|
sl@0
|
195 |
{
|
sl@0
|
196 |
command = EMVSCmdAudioSetting;
|
sl@0
|
197 |
txt = STRING_mvs_settings_audio_menu;
|
sl@0
|
198 |
},
|
sl@0
|
199 |
MENU_ITEM
|
sl@0
|
200 |
{
|
sl@0
|
201 |
command = EMVSVideoCmdSettings;
|
sl@0
|
202 |
txt = STRING_mvs_settings_video_menu;
|
sl@0
|
203 |
},
|
sl@0
|
204 |
MENU_ITEM
|
sl@0
|
205 |
{
|
sl@0
|
206 |
command = EMVSCmdEditMetadata;
|
sl@0
|
207 |
txt = STRING_mvs_settings_metadata_menu;
|
sl@0
|
208 |
},
|
sl@0
|
209 |
MENU_ITEM
|
sl@0
|
210 |
{
|
sl@0
|
211 |
command = EMVSCmdMultiScreen;
|
sl@0
|
212 |
txt = STRING_mvs_multiscreen_option;
|
sl@0
|
213 |
},
|
sl@0
|
214 |
MENU_ITEM
|
sl@0
|
215 |
{
|
sl@0
|
216 |
command = EMVSRegisterForNotification;
|
sl@0
|
217 |
txt = STRING_mvs_settings_register_menu;
|
sl@0
|
218 |
},
|
sl@0
|
219 |
MENU_ITEM
|
sl@0
|
220 |
{
|
sl@0
|
221 |
command = EMVSCmdClearLog;
|
sl@0
|
222 |
txt = STRING_mvs_settings_clearlog_menu;
|
sl@0
|
223 |
#ifdef SYMBIAN_MULTIMEDIA_SUBTITLE_SUPPORT
|
sl@0
|
224 |
flags = EEikMenuItemSeparatorAfter;
|
sl@0
|
225 |
},
|
sl@0
|
226 |
MENU_ITEM
|
sl@0
|
227 |
{
|
sl@0
|
228 |
command = EMVSCmdEnableSubtitles;
|
sl@0
|
229 |
txt = STRING_mvs_settings_menu_enable_subtitles;
|
sl@0
|
230 |
},
|
sl@0
|
231 |
MENU_ITEM
|
sl@0
|
232 |
{
|
sl@0
|
233 |
command = EMVSCmdDisableSubtitles;
|
sl@0
|
234 |
txt = STRING_mvs_settings_menu_disable_subtitles;
|
sl@0
|
235 |
#endif // SYMBIAN_MULTIMEDIA_SUBTITLE_SUPPORT
|
sl@0
|
236 |
}
|
sl@0
|
237 |
};
|
sl@0
|
238 |
}
|
sl@0
|
239 |
|
sl@0
|
240 |
|
sl@0
|
241 |
RESOURCE MENU_PANE r_mvs_controls_menu
|
sl@0
|
242 |
{
|
sl@0
|
243 |
items =
|
sl@0
|
244 |
{
|
sl@0
|
245 |
MENU_ITEM
|
sl@0
|
246 |
{
|
sl@0
|
247 |
command = EMVSCmdPlay;
|
sl@0
|
248 |
txt = STRING_mvs_controls_menu_play;
|
sl@0
|
249 |
},
|
sl@0
|
250 |
MENU_ITEM
|
sl@0
|
251 |
{
|
sl@0
|
252 |
command = EMVSCmdPause;
|
sl@0
|
253 |
txt = STRING_mvs_controls_menu_pause;
|
sl@0
|
254 |
},
|
sl@0
|
255 |
MENU_ITEM
|
sl@0
|
256 |
{
|
sl@0
|
257 |
command = EMVSCmdStop;
|
sl@0
|
258 |
txt = STRING_mvs_controls_menu_stop;
|
sl@0
|
259 |
flags = EEikMenuItemSeparatorAfter;
|
sl@0
|
260 |
},
|
sl@0
|
261 |
MENU_ITEM
|
sl@0
|
262 |
{
|
sl@0
|
263 |
command = EMVSCmdRewind;
|
sl@0
|
264 |
txt = STRING_mvs_controls_menu_rewind;
|
sl@0
|
265 |
},
|
sl@0
|
266 |
MENU_ITEM
|
sl@0
|
267 |
{
|
sl@0
|
268 |
command = EMVSCmdFastForward;
|
sl@0
|
269 |
txt = STRING_mvs_controls_menu_forward;
|
sl@0
|
270 |
},
|
sl@0
|
271 |
MENU_ITEM
|
sl@0
|
272 |
{
|
sl@0
|
273 |
command = EMVSCmdRecord;
|
sl@0
|
274 |
txt = STRING_mvs_controls_menu_record;
|
sl@0
|
275 |
}
|
sl@0
|
276 |
|
sl@0
|
277 |
};
|
sl@0
|
278 |
}
|
sl@0
|
279 |
|
sl@0
|
280 |
|
sl@0
|
281 |
|
sl@0
|
282 |
RESOURCE MENU_PANE r_mvs_settings_audio_menu
|
sl@0
|
283 |
{
|
sl@0
|
284 |
items=
|
sl@0
|
285 |
{
|
sl@0
|
286 |
MENU_ITEM
|
sl@0
|
287 |
{
|
sl@0
|
288 |
command = EMVSCmdSetVolume;
|
sl@0
|
289 |
txt = STRING_mvs_settings_audio_menu_setvolume;
|
sl@0
|
290 |
},
|
sl@0
|
291 |
MENU_ITEM
|
sl@0
|
292 |
{
|
sl@0
|
293 |
command = EMVSCmdSetRepeats;
|
sl@0
|
294 |
txt = STRING_mvs_settings_audio_menu_setrepeats;
|
sl@0
|
295 |
},
|
sl@0
|
296 |
MENU_ITEM
|
sl@0
|
297 |
{
|
sl@0
|
298 |
command = EMVSCmdSetPlayBalance;
|
sl@0
|
299 |
txt = STRING_mvs_settings_audio_menu_setplaybackbalance;
|
sl@0
|
300 |
},
|
sl@0
|
301 |
MENU_ITEM
|
sl@0
|
302 |
{
|
sl@0
|
303 |
command = EMVSCmdSetGain;
|
sl@0
|
304 |
txt = STRING_mvs_settings_audio_menu_setgain;
|
sl@0
|
305 |
},
|
sl@0
|
306 |
MENU_ITEM
|
sl@0
|
307 |
{
|
sl@0
|
308 |
command = EMVSCmdSetRecordBalance;
|
sl@0
|
309 |
txt = STRING_mvs_settings_audio_menu_setrecordbalance;
|
sl@0
|
310 |
},
|
sl@0
|
311 |
MENU_ITEM
|
sl@0
|
312 |
{
|
sl@0
|
313 |
command = EMVSCmdSetAudioPriority;
|
sl@0
|
314 |
txt = STRING_mvs_settings_audio_menu_setaudiopriority;
|
sl@0
|
315 |
}
|
sl@0
|
316 |
|
sl@0
|
317 |
};
|
sl@0
|
318 |
}
|
sl@0
|
319 |
|
sl@0
|
320 |
|
sl@0
|
321 |
RESOURCE TOOLBAND r_mvs_toolbar1
|
sl@0
|
322 |
{
|
sl@0
|
323 |
breadth=100;
|
sl@0
|
324 |
controls=
|
sl@0
|
325 |
{
|
sl@0
|
326 |
DLG_TBAR_SPACER
|
sl@0
|
327 |
{
|
sl@0
|
328 |
type=EEikCtSpacer;
|
sl@0
|
329 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
330 |
length = 638;
|
sl@0
|
331 |
width=25;
|
sl@0
|
332 |
color=3;
|
sl@0
|
333 |
}
|
sl@0
|
334 |
};
|
sl@0
|
335 |
}
|
sl@0
|
336 |
|
sl@0
|
337 |
RESOURCE TOOLBAND r_mvs_toolbar
|
sl@0
|
338 |
{
|
sl@0
|
339 |
breadth=30;
|
sl@0
|
340 |
controls=
|
sl@0
|
341 |
{
|
sl@0
|
342 |
TBAR_BUTTON
|
sl@0
|
343 |
{
|
sl@0
|
344 |
id=EMVSCmdPlay;
|
sl@0
|
345 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
346 |
length = 30;
|
sl@0
|
347 |
bmpfile="*";
|
sl@0
|
348 |
bmpid=EMbmMvsappPlay;
|
sl@0
|
349 |
bmpmask=EMbmMvsappPlaymask;
|
sl@0
|
350 |
},
|
sl@0
|
351 |
|
sl@0
|
352 |
TBAR_BUTTON
|
sl@0
|
353 |
{
|
sl@0
|
354 |
id=EMVSCmdPause;
|
sl@0
|
355 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
356 |
length = 30;
|
sl@0
|
357 |
bmpfile="*";
|
sl@0
|
358 |
bmpid=EMbmMvsappPause;
|
sl@0
|
359 |
bmpmask=EMbmMvsappPausemask;
|
sl@0
|
360 |
},
|
sl@0
|
361 |
|
sl@0
|
362 |
TBAR_BUTTON
|
sl@0
|
363 |
{
|
sl@0
|
364 |
id=EMVSCmdStop;
|
sl@0
|
365 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
366 |
length = 30;
|
sl@0
|
367 |
bmpfile="*";
|
sl@0
|
368 |
bmpid=EMbmMvsappStop;
|
sl@0
|
369 |
bmpmask=EMbmMvsappStopmask;
|
sl@0
|
370 |
},
|
sl@0
|
371 |
|
sl@0
|
372 |
TBAR_BUTTON
|
sl@0
|
373 |
{
|
sl@0
|
374 |
id=EMVSCmdRecord;
|
sl@0
|
375 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
376 |
length = 30;
|
sl@0
|
377 |
bmpfile="*";
|
sl@0
|
378 |
bmpid=EMbmMvsappRec;
|
sl@0
|
379 |
bmpmask=EMbmMvsappRecmask;
|
sl@0
|
380 |
},
|
sl@0
|
381 |
|
sl@0
|
382 |
DLG_TBAR_SPACER
|
sl@0
|
383 |
{
|
sl@0
|
384 |
type=EEikCtSpacer;
|
sl@0
|
385 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
386 |
length = 35;
|
sl@0
|
387 |
width=25;
|
sl@0
|
388 |
color=3;
|
sl@0
|
389 |
},
|
sl@0
|
390 |
|
sl@0
|
391 |
TBAR_BUTTON
|
sl@0
|
392 |
{
|
sl@0
|
393 |
id=EMVSCmdSetRepeats;
|
sl@0
|
394 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
395 |
length = 30;
|
sl@0
|
396 |
bmpfile="*";
|
sl@0
|
397 |
bmpid=EMbmMvsappCirc;
|
sl@0
|
398 |
bmpmask=EMbmMvsappCircmask;
|
sl@0
|
399 |
},
|
sl@0
|
400 |
|
sl@0
|
401 |
TBAR_BUTTON
|
sl@0
|
402 |
{
|
sl@0
|
403 |
id=EMVSCmdSetVolume;
|
sl@0
|
404 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
405 |
length = 45;
|
sl@0
|
406 |
bmpfile="*";
|
sl@0
|
407 |
bmpid=EMbmMvsappSound;
|
sl@0
|
408 |
bmpmask=EMbmMvsappSoundmask;
|
sl@0
|
409 |
},
|
sl@0
|
410 |
|
sl@0
|
411 |
TBAR_BUTTON
|
sl@0
|
412 |
{
|
sl@0
|
413 |
id=EMVSCmdSetPlayBalance;
|
sl@0
|
414 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
415 |
length = 45;
|
sl@0
|
416 |
bmpfile="*";
|
sl@0
|
417 |
bmpid=EMbmMvsappBalance;
|
sl@0
|
418 |
bmpmask=EMbmMvsappBalancemask;
|
sl@0
|
419 |
},
|
sl@0
|
420 |
|
sl@0
|
421 |
DLG_TBAR_SPACER
|
sl@0
|
422 |
{
|
sl@0
|
423 |
type=EEikCtSpacer;
|
sl@0
|
424 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
425 |
length = 52;
|
sl@0
|
426 |
width=10;
|
sl@0
|
427 |
color=3;
|
sl@0
|
428 |
},
|
sl@0
|
429 |
|
sl@0
|
430 |
TBAR_BUTTON
|
sl@0
|
431 |
{
|
sl@0
|
432 |
id=EMVSCmdRewind;
|
sl@0
|
433 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
434 |
length = 45;
|
sl@0
|
435 |
bmpfile="*";
|
sl@0
|
436 |
bmpid=EMbmMvsappRwd;
|
sl@0
|
437 |
bmpmask=EMbmMvsappRwdmask;
|
sl@0
|
438 |
},
|
sl@0
|
439 |
|
sl@0
|
440 |
DLG_TBAR_SPACER
|
sl@0
|
441 |
{
|
sl@0
|
442 |
type=EEikCtSpacer;
|
sl@0
|
443 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
444 |
length = 6;
|
sl@0
|
445 |
width=25;
|
sl@0
|
446 |
color=3;
|
sl@0
|
447 |
},
|
sl@0
|
448 |
|
sl@0
|
449 |
TBAR_BUTTON
|
sl@0
|
450 |
{
|
sl@0
|
451 |
id=EMVSCmdFastForward;
|
sl@0
|
452 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
453 |
length = 45;
|
sl@0
|
454 |
bmpfile="*";
|
sl@0
|
455 |
bmpid=EMbmMvsappFwd;
|
sl@0
|
456 |
bmpmask=EMbmMvsappFwdmask;
|
sl@0
|
457 |
},
|
sl@0
|
458 |
|
sl@0
|
459 |
|
sl@0
|
460 |
DLG_TBAR_SPACER
|
sl@0
|
461 |
{
|
sl@0
|
462 |
type=EEikCtSpacer;
|
sl@0
|
463 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
464 |
length = 215;
|
sl@0
|
465 |
width=25;
|
sl@0
|
466 |
color=3;
|
sl@0
|
467 |
}
|
sl@0
|
468 |
};
|
sl@0
|
469 |
|
sl@0
|
470 |
}
|
sl@0
|
471 |
|
sl@0
|
472 |
RESOURCE TOOLBAND r_mvs_toolbar2
|
sl@0
|
473 |
{
|
sl@0
|
474 |
breadth=5;
|
sl@0
|
475 |
controls=
|
sl@0
|
476 |
{
|
sl@0
|
477 |
DLG_TBAR_SPACER
|
sl@0
|
478 |
{
|
sl@0
|
479 |
type=EEikCtSpacer;
|
sl@0
|
480 |
flags=EEikToolBarCtrlHasSetMinLength;
|
sl@0
|
481 |
length = 638;
|
sl@0
|
482 |
width=25;
|
sl@0
|
483 |
color=3;
|
sl@0
|
484 |
}
|
sl@0
|
485 |
};
|
sl@0
|
486 |
}
|
sl@0
|
487 |
|
sl@0
|
488 |
//buttons
|
sl@0
|
489 |
RESOURCE DLG_BUTTONS r_mvs_buttons_up_down_ok_cancel
|
sl@0
|
490 |
{
|
sl@0
|
491 |
buttons=
|
sl@0
|
492 |
{
|
sl@0
|
493 |
DLG_BUTTON
|
sl@0
|
494 |
{
|
sl@0
|
495 |
id = EMVSButtonDown;
|
sl@0
|
496 |
button = CMBUT {txt = STRING_r_mvs_buttons_down;};
|
sl@0
|
497 |
hotkey = EEikBidBlank;
|
sl@0
|
498 |
},
|
sl@0
|
499 |
DLG_BUTTON
|
sl@0
|
500 |
{
|
sl@0
|
501 |
id = EMVSButtonUp;
|
sl@0
|
502 |
button = CMBUT {txt = STRING_r_mvs_buttons_up;};
|
sl@0
|
503 |
hotkey = EEikBidSpace;
|
sl@0
|
504 |
},
|
sl@0
|
505 |
DLG_BUTTON
|
sl@0
|
506 |
{
|
sl@0
|
507 |
id = EMVSButtonCancel;
|
sl@0
|
508 |
button = CMBUT {txt = STRING_r_mvs_buttons_cancel;};
|
sl@0
|
509 |
hotkey = EEikBidCancel;
|
sl@0
|
510 |
},
|
sl@0
|
511 |
DLG_BUTTON
|
sl@0
|
512 |
{
|
sl@0
|
513 |
id = EMVSButtonOk;
|
sl@0
|
514 |
button = CMBUT {txt = STRING_r_mvs_buttons_ok;};
|
sl@0
|
515 |
hotkey = EEikBidOk;
|
sl@0
|
516 |
}
|
sl@0
|
517 |
};
|
sl@0
|
518 |
}
|
sl@0
|
519 |
|
sl@0
|
520 |
RESOURCE DIALOG r_mvs_dialog_setvolume
|
sl@0
|
521 |
{
|
sl@0
|
522 |
flags=EEikDialogFlagWait;
|
sl@0
|
523 |
title=STRING_r_mvs_dialog_setvolume_setvolume;
|
sl@0
|
524 |
buttons = r_mvs_buttons_up_down_ok_cancel;
|
sl@0
|
525 |
items=
|
sl@0
|
526 |
{
|
sl@0
|
527 |
DLG_LINE
|
sl@0
|
528 |
{
|
sl@0
|
529 |
prompt=STRING_r_mvs_dialog_setvolume_specifyvolume;
|
sl@0
|
530 |
type=EEikCtProgInfo;
|
sl@0
|
531 |
id=EMVSCmdSetVolume;
|
sl@0
|
532 |
control=PROGRESSINFO
|
sl@0
|
533 |
{
|
sl@0
|
534 |
finalval=KMVSProgressLabelMaxValue; // Maximum number of values the bar can have.
|
sl@0
|
535 |
width=200; // The width of the bar.
|
sl@0
|
536 |
text_type=EEikProgressTextPercentage;
|
sl@0
|
537 |
};
|
sl@0
|
538 |
},
|
sl@0
|
539 |
DLG_LINE
|
sl@0
|
540 |
{
|
sl@0
|
541 |
prompt=STRING_r_mvs_dialog_setvolume_specifyvolumeramp;
|
sl@0
|
542 |
type=EEikCtNumberEditor;
|
sl@0
|
543 |
id=EMVSCmdSetVolumeRamp;
|
sl@0
|
544 |
control= NUMBER_EDITOR
|
sl@0
|
545 |
{
|
sl@0
|
546 |
min = 0;
|
sl@0
|
547 |
max = 10;
|
sl@0
|
548 |
};
|
sl@0
|
549 |
}
|
sl@0
|
550 |
};
|
sl@0
|
551 |
}
|
sl@0
|
552 |
|
sl@0
|
553 |
RESOURCE DLG_BUTTONS r_mvs_buttons_left_right_ok_cancel
|
sl@0
|
554 |
{
|
sl@0
|
555 |
buttons=
|
sl@0
|
556 |
{
|
sl@0
|
557 |
DLG_BUTTON
|
sl@0
|
558 |
{
|
sl@0
|
559 |
id = EMVSButtonLeft;
|
sl@0
|
560 |
button = CMBUT {txt = STRING_r_mvs_buttons_left;};
|
sl@0
|
561 |
},
|
sl@0
|
562 |
DLG_BUTTON
|
sl@0
|
563 |
{
|
sl@0
|
564 |
id = EMVSButtonRight;
|
sl@0
|
565 |
button = CMBUT {txt = STRING_r_mvs_buttons_right;};
|
sl@0
|
566 |
},
|
sl@0
|
567 |
DLG_BUTTON
|
sl@0
|
568 |
{
|
sl@0
|
569 |
id = EMVSButtonCancel;
|
sl@0
|
570 |
button = CMBUT {txt = STRING_r_mvs_buttons_cancel;};
|
sl@0
|
571 |
},
|
sl@0
|
572 |
DLG_BUTTON
|
sl@0
|
573 |
{
|
sl@0
|
574 |
id = EMVSButtonOk;
|
sl@0
|
575 |
button = CMBUT {txt = STRING_r_mvs_buttons_ok;};
|
sl@0
|
576 |
}
|
sl@0
|
577 |
};
|
sl@0
|
578 |
}
|
sl@0
|
579 |
|
sl@0
|
580 |
RESOURCE DIALOG r_mvs_dialog_setbalance
|
sl@0
|
581 |
{
|
sl@0
|
582 |
flags=EEikDialogFlagWait;
|
sl@0
|
583 |
title=STRING_r_mvs_dialog_setbalance_setbalance;
|
sl@0
|
584 |
buttons = r_mvs_buttons_left_right_ok_cancel;
|
sl@0
|
585 |
items=
|
sl@0
|
586 |
{
|
sl@0
|
587 |
DLG_LINE
|
sl@0
|
588 |
{
|
sl@0
|
589 |
|
sl@0
|
590 |
prompt=STRING_r_mvs_dialog_setbalance_specifybalance;
|
sl@0
|
591 |
type=EEikCtProgInfo;
|
sl@0
|
592 |
id=EMVSSetBalance;
|
sl@0
|
593 |
control=PROGRESSINFO
|
sl@0
|
594 |
{
|
sl@0
|
595 |
finalval=KMVSProgressLabelMaxValue; // Maximum number of values the bar can have.
|
sl@0
|
596 |
width=200; // The width of the bar.
|
sl@0
|
597 |
};
|
sl@0
|
598 |
},
|
sl@0
|
599 |
DLG_LINE
|
sl@0
|
600 |
{
|
sl@0
|
601 |
prompt="";
|
sl@0
|
602 |
type=EEikCtLabel;
|
sl@0
|
603 |
id=EMVSSetBalanceLR;
|
sl@0
|
604 |
control= LABEL
|
sl@0
|
605 |
{
|
sl@0
|
606 |
txt = "Left Right ";
|
sl@0
|
607 |
};
|
sl@0
|
608 |
}
|
sl@0
|
609 |
};
|
sl@0
|
610 |
}
|
sl@0
|
611 |
|
sl@0
|
612 |
RESOURCE DIALOG r_mvs_dialog_setgain
|
sl@0
|
613 |
{
|
sl@0
|
614 |
flags=EEikDialogFlagWait;
|
sl@0
|
615 |
title=STRING_r_mvs_dialog_setgain_setgain;
|
sl@0
|
616 |
buttons = r_mvs_buttons_up_down_ok_cancel;
|
sl@0
|
617 |
items=
|
sl@0
|
618 |
{
|
sl@0
|
619 |
DLG_LINE
|
sl@0
|
620 |
{
|
sl@0
|
621 |
prompt=STRING_r_mvs_dialog_setgain_specifygain;
|
sl@0
|
622 |
type=EEikCtProgInfo;
|
sl@0
|
623 |
id=EMVSCmdSetGain;
|
sl@0
|
624 |
control=PROGRESSINFO
|
sl@0
|
625 |
{
|
sl@0
|
626 |
finalval=KMVSProgressLabelMaxValue; // Maximum number of values the bar can have.
|
sl@0
|
627 |
width=200; // The width of the bar.
|
sl@0
|
628 |
text_type=EEikProgressTextPercentage;
|
sl@0
|
629 |
};
|
sl@0
|
630 |
}
|
sl@0
|
631 |
};
|
sl@0
|
632 |
}
|
sl@0
|
633 |
|
sl@0
|
634 |
RESOURCE DIALOG r_mvs_dialog_setrepeats
|
sl@0
|
635 |
{
|
sl@0
|
636 |
flags = EEikDialogFlagWait;
|
sl@0
|
637 |
title=STRING_r_mvs_dialog_setrepeats_setrepeats;
|
sl@0
|
638 |
buttons = R_EIK_BUTTONS_CANCEL_OK;
|
sl@0
|
639 |
items=
|
sl@0
|
640 |
{
|
sl@0
|
641 |
DLG_LINE
|
sl@0
|
642 |
{
|
sl@0
|
643 |
prompt=STRING_r_mvs_dialog_setrepeats_specifyrepeats;
|
sl@0
|
644 |
type=EEikCtNumberEditor;
|
sl@0
|
645 |
id=EMVSCmdSetRepeats;
|
sl@0
|
646 |
control= NUMBER_EDITOR
|
sl@0
|
647 |
{
|
sl@0
|
648 |
min = 0;
|
sl@0
|
649 |
max = 1000;
|
sl@0
|
650 |
};
|
sl@0
|
651 |
},
|
sl@0
|
652 |
DLG_LINE
|
sl@0
|
653 |
{
|
sl@0
|
654 |
prompt=STRING_r_mvs_dialog_setrepeats_specifytrailingsilence;
|
sl@0
|
655 |
type=EEikCtNumberEditor;
|
sl@0
|
656 |
id=EMVSCmdSetTrailingSilence;
|
sl@0
|
657 |
control= NUMBER_EDITOR
|
sl@0
|
658 |
{
|
sl@0
|
659 |
min = 1;
|
sl@0
|
660 |
max = 10;
|
sl@0
|
661 |
};
|
sl@0
|
662 |
}
|
sl@0
|
663 |
};
|
sl@0
|
664 |
}
|
sl@0
|
665 |
|
sl@0
|
666 |
RESOURCE DIALOG r_mvs_dialog_multiplescreen
|
sl@0
|
667 |
{
|
sl@0
|
668 |
flags = EEikDialogFlagWait;
|
sl@0
|
669 |
title=STRING_r_mvs_dialog_setscreen;
|
sl@0
|
670 |
buttons = R_EIK_BUTTONS_CANCEL_OK;
|
sl@0
|
671 |
items=
|
sl@0
|
672 |
{
|
sl@0
|
673 |
DLG_LINE
|
sl@0
|
674 |
{
|
sl@0
|
675 |
prompt=STRING_r_mvs_dialog_setscreen_specifyscreen;
|
sl@0
|
676 |
type=EEikCtNumberEditor;
|
sl@0
|
677 |
id=EMVSCmdMultiScreen;
|
sl@0
|
678 |
control= NUMBER_EDITOR
|
sl@0
|
679 |
{
|
sl@0
|
680 |
min = 0;
|
sl@0
|
681 |
max = 1000;
|
sl@0
|
682 |
};
|
sl@0
|
683 |
}
|
sl@0
|
684 |
};
|
sl@0
|
685 |
}
|
sl@0
|
686 |
|
sl@0
|
687 |
RESOURCE DIALOG r_mvs_dialog_register
|
sl@0
|
688 |
{
|
sl@0
|
689 |
flags=EEikDialogFlagWait;
|
sl@0
|
690 |
title=STRING_r_mvs_dialog_registerfornotification;
|
sl@0
|
691 |
buttons = R_EIK_BUTTONS_CANCEL_OK;
|
sl@0
|
692 |
items=
|
sl@0
|
693 |
{
|
sl@0
|
694 |
DLG_LINE
|
sl@0
|
695 |
{
|
sl@0
|
696 |
prompt=STRING_r_mvs_dialog_registerfornotification_label;
|
sl@0
|
697 |
type=EEikCtCheckBox;
|
sl@0
|
698 |
id=EMVSRegisterForNotification;
|
sl@0
|
699 |
}
|
sl@0
|
700 |
};
|
sl@0
|
701 |
}
|
sl@0
|
702 |
|
sl@0
|
703 |
RESOURCE DLG_BUTTONS r_mvs_buttons_cancel_next
|
sl@0
|
704 |
{
|
sl@0
|
705 |
buttons=
|
sl@0
|
706 |
{
|
sl@0
|
707 |
DLG_BUTTON
|
sl@0
|
708 |
{
|
sl@0
|
709 |
id = EMVSButtonCancel;
|
sl@0
|
710 |
button = CMBUT {txt = STRING_r_mvs_buttons_cancel;};
|
sl@0
|
711 |
},
|
sl@0
|
712 |
DLG_BUTTON
|
sl@0
|
713 |
{
|
sl@0
|
714 |
id = EMVSButtonNext;
|
sl@0
|
715 |
button = CMBUT {txt = STRING_r_mvs_buttons_next;};
|
sl@0
|
716 |
hotkey = EEikBidOk;
|
sl@0
|
717 |
}
|
sl@0
|
718 |
};
|
sl@0
|
719 |
}
|
sl@0
|
720 |
|
sl@0
|
721 |
RESOURCE ARRAY r_mvs_array_none
|
sl@0
|
722 |
{
|
sl@0
|
723 |
items=
|
sl@0
|
724 |
{
|
sl@0
|
725 |
LBUF { txt= STRING_r_mvs_dialog_none; }
|
sl@0
|
726 |
};
|
sl@0
|
727 |
}
|
sl@0
|
728 |
|
sl@0
|
729 |
RESOURCE DIALOG r_mvs_dialog_selectplugins
|
sl@0
|
730 |
{
|
sl@0
|
731 |
flags=EEikDialogFlagWait;
|
sl@0
|
732 |
title=STRING_r_mvs_dialog_selectplugins_selectplugins;
|
sl@0
|
733 |
buttons = r_mvs_buttons_cancel_next;
|
sl@0
|
734 |
items=
|
sl@0
|
735 |
{
|
sl@0
|
736 |
DLG_LINE
|
sl@0
|
737 |
{
|
sl@0
|
738 |
prompt=STRING_r_mvs_dialog_selectplugins_type;
|
sl@0
|
739 |
type=EEikCtHorOptionButList;
|
sl@0
|
740 |
id=EMVSCmdSelectMediaType;
|
sl@0
|
741 |
control= HOROPBUT
|
sl@0
|
742 |
{
|
sl@0
|
743 |
array_id=r_mvs_media_type_array;
|
sl@0
|
744 |
};
|
sl@0
|
745 |
},
|
sl@0
|
746 |
|
sl@0
|
747 |
DLG_LINE
|
sl@0
|
748 |
{
|
sl@0
|
749 |
prompt=STRING_r_mvs_dialog_selectplugins_format;
|
sl@0
|
750 |
type=EEikCtChoiceList;
|
sl@0
|
751 |
id=EMVSCmdSelectFormat;
|
sl@0
|
752 |
control= CHOICELIST
|
sl@0
|
753 |
{
|
sl@0
|
754 |
array_id = r_mvs_array_none;
|
sl@0
|
755 |
};
|
sl@0
|
756 |
},
|
sl@0
|
757 |
|
sl@0
|
758 |
DLG_LINE
|
sl@0
|
759 |
{
|
sl@0
|
760 |
prompt=STRING_r_mvs_dialog_selectplugins_controller;
|
sl@0
|
761 |
type=EEikCtChoiceList;
|
sl@0
|
762 |
id=EMVSCmdSelectControllerPlugin;
|
sl@0
|
763 |
control=CHOICELIST
|
sl@0
|
764 |
{
|
sl@0
|
765 |
array_id = r_mvs_array_none;
|
sl@0
|
766 |
};
|
sl@0
|
767 |
}
|
sl@0
|
768 |
|
sl@0
|
769 |
};
|
sl@0
|
770 |
}
|
sl@0
|
771 |
|
sl@0
|
772 |
RESOURCE DIALOG r_mvs_dialog_videoplugins
|
sl@0
|
773 |
{
|
sl@0
|
774 |
flags=EEikDialogFlagWait;
|
sl@0
|
775 |
title=STRING_r_mvs_dialog_selectplugins_videoplugins;
|
sl@0
|
776 |
buttons = r_mvs_buttons_update_cancel;
|
sl@0
|
777 |
items=
|
sl@0
|
778 |
{
|
sl@0
|
779 |
DLG_LINE
|
sl@0
|
780 |
{
|
sl@0
|
781 |
prompt=STRING_r_mvs_dialog_selectvideomime_codec;
|
sl@0
|
782 |
type=EEikCtChoiceList;
|
sl@0
|
783 |
id=EMVSCmdSelectVideoMimeCodec;
|
sl@0
|
784 |
control= CHOICELIST
|
sl@0
|
785 |
{
|
sl@0
|
786 |
};
|
sl@0
|
787 |
},
|
sl@0
|
788 |
DLG_LINE
|
sl@0
|
789 |
{
|
sl@0
|
790 |
prompt=STRING_r_mvs_dialog_selectvideoframerate;
|
sl@0
|
791 |
type=EEikCtChoiceList;
|
sl@0
|
792 |
id=EMVSCmdSelectVideoFrameRate;
|
sl@0
|
793 |
control= CHOICELIST
|
sl@0
|
794 |
{
|
sl@0
|
795 |
};
|
sl@0
|
796 |
},
|
sl@0
|
797 |
DLG_LINE
|
sl@0
|
798 |
{
|
sl@0
|
799 |
prompt=STRING_r_mvs_dialog_selectvideoFrameSize;
|
sl@0
|
800 |
type=EEikCtChoiceList;
|
sl@0
|
801 |
id=EMVSCmdSelectVideoFrameSize;
|
sl@0
|
802 |
control= CHOICELIST
|
sl@0
|
803 |
{
|
sl@0
|
804 |
};
|
sl@0
|
805 |
},
|
sl@0
|
806 |
DLG_LINE
|
sl@0
|
807 |
{
|
sl@0
|
808 |
type=EEikCtCheckBox;
|
sl@0
|
809 |
prompt=STRING_r_audioenabled_dialog_settings;
|
sl@0
|
810 |
id=EMVSEnableAudio;
|
sl@0
|
811 |
},
|
sl@0
|
812 |
DLG_LINE
|
sl@0
|
813 |
{
|
sl@0
|
814 |
type=EEikCtCheckBox;
|
sl@0
|
815 |
prompt=STRING_r_audio_dialog_settings;
|
sl@0
|
816 |
id=EMVSRestoreVideoSettings;
|
sl@0
|
817 |
}
|
sl@0
|
818 |
};
|
sl@0
|
819 |
}
|
sl@0
|
820 |
|
sl@0
|
821 |
RESOURCE ARRAY r_mvs_media_type_array
|
sl@0
|
822 |
{
|
sl@0
|
823 |
items=
|
sl@0
|
824 |
{
|
sl@0
|
825 |
OPBUT { id = EMVSHorOptButtonAudio;
|
sl@0
|
826 |
text=STRING_r_mvs_dialog_selectplugins_audiochkbox; },
|
sl@0
|
827 |
OPBUT { id = EMVSHorOptButtonVideo;
|
sl@0
|
828 |
text=STRING_r_mvs_dialog_selectplugins_videochkbox; }
|
sl@0
|
829 |
};
|
sl@0
|
830 |
}
|
sl@0
|
831 |
|
sl@0
|
832 |
RESOURCE DLG_BUTTONS r_mvs_buttons_update_cancel
|
sl@0
|
833 |
{
|
sl@0
|
834 |
buttons=
|
sl@0
|
835 |
{
|
sl@0
|
836 |
DLG_BUTTON
|
sl@0
|
837 |
{
|
sl@0
|
838 |
id = EMVSButtonCancel;
|
sl@0
|
839 |
button = CMBUT {txt = STRING_r_mvs_buttons_cancel;};
|
sl@0
|
840 |
hotkey = EEikBidCancel;
|
sl@0
|
841 |
},
|
sl@0
|
842 |
DLG_BUTTON
|
sl@0
|
843 |
{
|
sl@0
|
844 |
id = EMVSButtonUpdate;
|
sl@0
|
845 |
button = CMBUT {txt = STRING_r_mvs_buttons_ok;};
|
sl@0
|
846 |
hotkey = EEikBidOk;
|
sl@0
|
847 |
}
|
sl@0
|
848 |
};
|
sl@0
|
849 |
}
|
sl@0
|
850 |
|
sl@0
|
851 |
RESOURCE DLG_BUTTONS r_mvs_buttons_update
|
sl@0
|
852 |
{
|
sl@0
|
853 |
buttons=
|
sl@0
|
854 |
{
|
sl@0
|
855 |
DLG_BUTTON
|
sl@0
|
856 |
{
|
sl@0
|
857 |
id = EMVSButtonOnlyUpdate;
|
sl@0
|
858 |
button = CMBUT {txt = STRING_r_mvs_buttons_ok;};
|
sl@0
|
859 |
hotkey = EEikBidOk;
|
sl@0
|
860 |
}
|
sl@0
|
861 |
};
|
sl@0
|
862 |
}
|
sl@0
|
863 |
|
sl@0
|
864 |
RESOURCE DIALOG r_mvs_dialog_configuredataformat
|
sl@0
|
865 |
{
|
sl@0
|
866 |
flags=EEikDialogFlagWait;
|
sl@0
|
867 |
title=r_mvs_dialog_configuredataformat_configuredataformat;
|
sl@0
|
868 |
buttons = r_mvs_buttons_update_cancel;
|
sl@0
|
869 |
items=
|
sl@0
|
870 |
{
|
sl@0
|
871 |
DLG_LINE
|
sl@0
|
872 |
{
|
sl@0
|
873 |
prompt=STRING_r_mvs_dialog_selectplugins_codec;
|
sl@0
|
874 |
type=EEikCtChoiceList;
|
sl@0
|
875 |
id=EMVSCmdSelectCodec;
|
sl@0
|
876 |
control= CHOICELIST
|
sl@0
|
877 |
{
|
sl@0
|
878 |
};
|
sl@0
|
879 |
},
|
sl@0
|
880 |
|
sl@0
|
881 |
DLG_LINE
|
sl@0
|
882 |
{
|
sl@0
|
883 |
prompt=r_mvs_dialog_configuredataformat_bitrate;
|
sl@0
|
884 |
type=EEikCtChoiceList;
|
sl@0
|
885 |
id=EMVSSetBitrate;
|
sl@0
|
886 |
control= CHOICELIST
|
sl@0
|
887 |
{
|
sl@0
|
888 |
};
|
sl@0
|
889 |
},
|
sl@0
|
890 |
|
sl@0
|
891 |
DLG_LINE
|
sl@0
|
892 |
{
|
sl@0
|
893 |
prompt=r_mvs_dialog_configuredataformat_nochannels;
|
sl@0
|
894 |
type=EEikCtChoiceList;
|
sl@0
|
895 |
id=EMVSSetNoOfChannels;
|
sl@0
|
896 |
control= CHOICELIST
|
sl@0
|
897 |
{
|
sl@0
|
898 |
};
|
sl@0
|
899 |
},
|
sl@0
|
900 |
|
sl@0
|
901 |
DLG_LINE
|
sl@0
|
902 |
{
|
sl@0
|
903 |
prompt=r_mvs_dialog_configuredataformat_samplerate;
|
sl@0
|
904 |
type=EEikCtChoiceList;
|
sl@0
|
905 |
id=EMVSSetSamplerate;
|
sl@0
|
906 |
control= CHOICELIST
|
sl@0
|
907 |
{
|
sl@0
|
908 |
};
|
sl@0
|
909 |
},
|
sl@0
|
910 |
DLG_LINE
|
sl@0
|
911 |
{
|
sl@0
|
912 |
type=EEikCtCheckBox;
|
sl@0
|
913 |
prompt=STRING_r_audio_dialog_settings;
|
sl@0
|
914 |
id=EMVSRestoreAudioSettings;
|
sl@0
|
915 |
}
|
sl@0
|
916 |
};
|
sl@0
|
917 |
}
|
sl@0
|
918 |
|
sl@0
|
919 |
RESOURCE ARRAY r_mvs_dialog_configuredataformat_formats
|
sl@0
|
920 |
{
|
sl@0
|
921 |
items=
|
sl@0
|
922 |
{
|
sl@0
|
923 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_formats_wav; }
|
sl@0
|
924 |
};
|
sl@0
|
925 |
|
sl@0
|
926 |
}
|
sl@0
|
927 |
|
sl@0
|
928 |
RESOURCE ARRAY r_mvs_dialog_configuredataformat_codecs
|
sl@0
|
929 |
{
|
sl@0
|
930 |
items=
|
sl@0
|
931 |
{
|
sl@0
|
932 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_codecs_pcm16; }
|
sl@0
|
933 |
};
|
sl@0
|
934 |
|
sl@0
|
935 |
}
|
sl@0
|
936 |
|
sl@0
|
937 |
// The array associated with the configure data format dialog.
|
sl@0
|
938 |
|
sl@0
|
939 |
RESOURCE ARRAY r_mvs_dialog_configuredataformat_bitrates
|
sl@0
|
940 |
{
|
sl@0
|
941 |
items=
|
sl@0
|
942 |
{
|
sl@0
|
943 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_bitrates_128; }
|
sl@0
|
944 |
};
|
sl@0
|
945 |
|
sl@0
|
946 |
}
|
sl@0
|
947 |
|
sl@0
|
948 |
|
sl@0
|
949 |
RESOURCE ARRAY r_mvs_dialog_configuredataformat_samplerates
|
sl@0
|
950 |
{
|
sl@0
|
951 |
items=
|
sl@0
|
952 |
{
|
sl@0
|
953 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_8000; },
|
sl@0
|
954 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_11025; },
|
sl@0
|
955 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_16000; },
|
sl@0
|
956 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_22050; },
|
sl@0
|
957 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_32000; },
|
sl@0
|
958 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_44100; },
|
sl@0
|
959 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_samplerates_48000; }
|
sl@0
|
960 |
};
|
sl@0
|
961 |
|
sl@0
|
962 |
}
|
sl@0
|
963 |
|
sl@0
|
964 |
RESOURCE ARRAY r_mvs_dialog_configuredataformat_no_of_channels
|
sl@0
|
965 |
{
|
sl@0
|
966 |
items=
|
sl@0
|
967 |
{
|
sl@0
|
968 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_nochannels_mono; },
|
sl@0
|
969 |
LBUF { txt= STRING_r_mvs_dialog_configuredataformat_nochannels_stereo; }
|
sl@0
|
970 |
};
|
sl@0
|
971 |
|
sl@0
|
972 |
}
|
sl@0
|
973 |
|
sl@0
|
974 |
|
sl@0
|
975 |
RESOURCE DIALOG r_mvs_dialog_setmetainfo
|
sl@0
|
976 |
{
|
sl@0
|
977 |
flags=EEikDialogFlagWait;
|
sl@0
|
978 |
title=STRING_r_mvs_dialog_setmetainfo_setmetainfo;
|
sl@0
|
979 |
buttons = r_mvs_buttons_update_cancel;
|
sl@0
|
980 |
items=
|
sl@0
|
981 |
{
|
sl@0
|
982 |
DLG_LINE
|
sl@0
|
983 |
{
|
sl@0
|
984 |
prompt= STRING_r_mvs_dialog_viewmetainfo_title;
|
sl@0
|
985 |
type=EEikCtEdwin;
|
sl@0
|
986 |
id=EMVSMeta1;
|
sl@0
|
987 |
control= EDWIN
|
sl@0
|
988 |
{
|
sl@0
|
989 |
flags = 0;
|
sl@0
|
990 |
width = 15;
|
sl@0
|
991 |
lines = 1;
|
sl@0
|
992 |
maxlength = 20;
|
sl@0
|
993 |
};
|
sl@0
|
994 |
},
|
sl@0
|
995 |
|
sl@0
|
996 |
DLG_LINE
|
sl@0
|
997 |
{
|
sl@0
|
998 |
prompt=STRING_r_mvs_dialog_viewmetainfo_author;
|
sl@0
|
999 |
type=EEikCtEdwin;
|
sl@0
|
1000 |
id=EMVSMeta2;
|
sl@0
|
1001 |
control= EDWIN
|
sl@0
|
1002 |
{
|
sl@0
|
1003 |
flags = 0;
|
sl@0
|
1004 |
width = 15;
|
sl@0
|
1005 |
lines = 1;
|
sl@0
|
1006 |
maxlength = 20;
|
sl@0
|
1007 |
};
|
sl@0
|
1008 |
},
|
sl@0
|
1009 |
|
sl@0
|
1010 |
DLG_LINE
|
sl@0
|
1011 |
{
|
sl@0
|
1012 |
prompt=STRING_r_mvs_dialog_viewmetainfo_copyright;
|
sl@0
|
1013 |
type=EEikCtEdwin;
|
sl@0
|
1014 |
id=EMVSMeta3;
|
sl@0
|
1015 |
control= EDWIN
|
sl@0
|
1016 |
{
|
sl@0
|
1017 |
flags = 0;
|
sl@0
|
1018 |
width = 10;
|
sl@0
|
1019 |
lines = 1;
|
sl@0
|
1020 |
maxlength = 15;
|
sl@0
|
1021 |
};
|
sl@0
|
1022 |
},
|
sl@0
|
1023 |
|
sl@0
|
1024 |
DLG_LINE
|
sl@0
|
1025 |
{
|
sl@0
|
1026 |
prompt=STRING_r_mvs_dialog_viewmetainfo_revision;
|
sl@0
|
1027 |
type=EEikCtEdwin;
|
sl@0
|
1028 |
id=EMVSMeta4;
|
sl@0
|
1029 |
control= EDWIN
|
sl@0
|
1030 |
{
|
sl@0
|
1031 |
flags = 0;
|
sl@0
|
1032 |
width = 5;
|
sl@0
|
1033 |
lines = 1;
|
sl@0
|
1034 |
maxlength = 8;
|
sl@0
|
1035 |
};
|
sl@0
|
1036 |
},
|
sl@0
|
1037 |
|
sl@0
|
1038 |
DLG_LINE
|
sl@0
|
1039 |
{
|
sl@0
|
1040 |
prompt=STRING_r_mvs_dialog_viewmetainfo_category;
|
sl@0
|
1041 |
type=EEikCtEdwin;
|
sl@0
|
1042 |
id=EMVSMeta5;
|
sl@0
|
1043 |
control= EDWIN
|
sl@0
|
1044 |
{
|
sl@0
|
1045 |
flags = 0;
|
sl@0
|
1046 |
width = 10;
|
sl@0
|
1047 |
lines = 1;
|
sl@0
|
1048 |
maxlength = 15;
|
sl@0
|
1049 |
};
|
sl@0
|
1050 |
},
|
sl@0
|
1051 |
|
sl@0
|
1052 |
DLG_LINE
|
sl@0
|
1053 |
{
|
sl@0
|
1054 |
prompt=STRING_r_mvs_dialog_viewmetainfo_comments;
|
sl@0
|
1055 |
type=EEikCtEdwin;
|
sl@0
|
1056 |
id=EMVSMeta6;
|
sl@0
|
1057 |
control= EDWIN
|
sl@0
|
1058 |
{
|
sl@0
|
1059 |
flags = 0;
|
sl@0
|
1060 |
width = 15;
|
sl@0
|
1061 |
lines = 2;
|
sl@0
|
1062 |
maxlength = 40;
|
sl@0
|
1063 |
};
|
sl@0
|
1064 |
}
|
sl@0
|
1065 |
};
|
sl@0
|
1066 |
}
|
sl@0
|
1067 |
|
sl@0
|
1068 |
|
sl@0
|
1069 |
//
|
sl@0
|
1070 |
//
|
sl@0
|
1071 |
//SYSTEM INFO
|
sl@0
|
1072 |
RESOURCE DIALOG r_new_mvs_dialog_systeminfo
|
sl@0
|
1073 |
{
|
sl@0
|
1074 |
flags=EEikDialogFlagWait;
|
sl@0
|
1075 |
title=STRING_mvs_file_menu_systeminfo;
|
sl@0
|
1076 |
buttons = r_mvs_buttons_update;
|
sl@0
|
1077 |
items=
|
sl@0
|
1078 |
{
|
sl@0
|
1079 |
DLG_LINE
|
sl@0
|
1080 |
{
|
sl@0
|
1081 |
prompt="";
|
sl@0
|
1082 |
type=EEikCtEdwin;
|
sl@0
|
1083 |
id=EMVSCmdSystemInfo;
|
sl@0
|
1084 |
control=EDWIN
|
sl@0
|
1085 |
{
|
sl@0
|
1086 |
width=45;
|
sl@0
|
1087 |
lines=25;
|
sl@0
|
1088 |
};
|
sl@0
|
1089 |
}
|
sl@0
|
1090 |
};
|
sl@0
|
1091 |
}
|
sl@0
|
1092 |
|
sl@0
|
1093 |
|
sl@0
|
1094 |
//
|
sl@0
|
1095 |
//
|
sl@0
|
1096 |
//VIDEO SETTINGS
|
sl@0
|
1097 |
RESOURCE DIALOG r_mvs_video_dialog_videosetting
|
sl@0
|
1098 |
{
|
sl@0
|
1099 |
flags=EEikDialogFlagWait;
|
sl@0
|
1100 |
title=STRING_r_newvideo_dialog_video_videosetting;
|
sl@0
|
1101 |
buttons = r_mvs_buttons_update_cancel;
|
sl@0
|
1102 |
items=
|
sl@0
|
1103 |
{
|
sl@0
|
1104 |
DLG_LINE
|
sl@0
|
1105 |
{
|
sl@0
|
1106 |
prompt=STRING_r_newvideo_dialog_video_rotation;
|
sl@0
|
1107 |
type=EEikCtChoiceList;
|
sl@0
|
1108 |
id=EMVSVideoRotationSettings;
|
sl@0
|
1109 |
control= CHOICELIST
|
sl@0
|
1110 |
{
|
sl@0
|
1111 |
array_id = r_newmvs_dialog_setvideorotation_choicelist;
|
sl@0
|
1112 |
};
|
sl@0
|
1113 |
},
|
sl@0
|
1114 |
DLG_LINE
|
sl@0
|
1115 |
{
|
sl@0
|
1116 |
prompt=STRING_r_newvideo_dialog_video_scalewidth;
|
sl@0
|
1117 |
type=EEikCtFlPtEd;
|
sl@0
|
1118 |
id=EMVSCmdScaleWidth;
|
sl@0
|
1119 |
control= FLPTED
|
sl@0
|
1120 |
{
|
sl@0
|
1121 |
min = 1;
|
sl@0
|
1122 |
max = 1000;
|
sl@0
|
1123 |
};
|
sl@0
|
1124 |
trailer="%";
|
sl@0
|
1125 |
},
|
sl@0
|
1126 |
DLG_LINE
|
sl@0
|
1127 |
{
|
sl@0
|
1128 |
prompt=STRING_r_newvideo_dialog_video_scaleheight;
|
sl@0
|
1129 |
type=EEikCtFlPtEd;
|
sl@0
|
1130 |
id=EMVSCmdScaleHeight;
|
sl@0
|
1131 |
control= FLPTED
|
sl@0
|
1132 |
{
|
sl@0
|
1133 |
min = 1;
|
sl@0
|
1134 |
max = 1000;
|
sl@0
|
1135 |
};
|
sl@0
|
1136 |
trailer="%";
|
sl@0
|
1137 |
},
|
sl@0
|
1138 |
DLG_LINE
|
sl@0
|
1139 |
{
|
sl@0
|
1140 |
prompt=STRING_r_newvideo_dialog_video_antialiasfiltering;
|
sl@0
|
1141 |
type=EEikCtCheckBox;
|
sl@0
|
1142 |
id=EMVSAntiAliasFiltering;
|
sl@0
|
1143 |
},
|
sl@0
|
1144 |
DLG_LINE
|
sl@0
|
1145 |
{
|
sl@0
|
1146 |
prompt="";
|
sl@0
|
1147 |
type=EEikCtLabel;
|
sl@0
|
1148 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1149 |
control=LABEL
|
sl@0
|
1150 |
{
|
sl@0
|
1151 |
txt = "_____________________________________________________";
|
sl@0
|
1152 |
};
|
sl@0
|
1153 |
},
|
sl@0
|
1154 |
DLG_LINE
|
sl@0
|
1155 |
{
|
sl@0
|
1156 |
prompt="";
|
sl@0
|
1157 |
type=EEikCtLabel;
|
sl@0
|
1158 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1159 |
control=LABEL
|
sl@0
|
1160 |
{
|
sl@0
|
1161 |
txt = "CROP REGION";
|
sl@0
|
1162 |
};
|
sl@0
|
1163 |
},
|
sl@0
|
1164 |
DLG_LINE
|
sl@0
|
1165 |
{
|
sl@0
|
1166 |
prompt=STRING_r_newvideo_dialog_video_top_left_x;
|
sl@0
|
1167 |
type=EEikCtNumberEditor;
|
sl@0
|
1168 |
id=EMVSCmdSetTopLeftx;
|
sl@0
|
1169 |
control= NUMBER_EDITOR
|
sl@0
|
1170 |
{
|
sl@0
|
1171 |
min = 0;
|
sl@0
|
1172 |
max = 1000;
|
sl@0
|
1173 |
};
|
sl@0
|
1174 |
},
|
sl@0
|
1175 |
DLG_LINE
|
sl@0
|
1176 |
{
|
sl@0
|
1177 |
prompt=STRING_r_newvideo_dialog_video_top_left_y;
|
sl@0
|
1178 |
type=EEikCtNumberEditor;
|
sl@0
|
1179 |
id=EMVSCmdSetTopLefty;
|
sl@0
|
1180 |
control= NUMBER_EDITOR
|
sl@0
|
1181 |
{
|
sl@0
|
1182 |
min = 0;
|
sl@0
|
1183 |
max = 1000;
|
sl@0
|
1184 |
};
|
sl@0
|
1185 |
},
|
sl@0
|
1186 |
DLG_LINE
|
sl@0
|
1187 |
{
|
sl@0
|
1188 |
prompt=STRING_r_newvideo_dialog_video_bottom_right_x;
|
sl@0
|
1189 |
type=EEikCtNumberEditor;
|
sl@0
|
1190 |
id=EMVSCmdSetBottomRightx;
|
sl@0
|
1191 |
control= NUMBER_EDITOR
|
sl@0
|
1192 |
{
|
sl@0
|
1193 |
min = 0;
|
sl@0
|
1194 |
max = 1000;
|
sl@0
|
1195 |
};
|
sl@0
|
1196 |
},
|
sl@0
|
1197 |
DLG_LINE
|
sl@0
|
1198 |
{
|
sl@0
|
1199 |
prompt=STRING_r_newvideo_dialog_video_bottom_right_y;
|
sl@0
|
1200 |
type=EEikCtNumberEditor;
|
sl@0
|
1201 |
id=EMVSCmdSetBottomRighty;
|
sl@0
|
1202 |
control= NUMBER_EDITOR
|
sl@0
|
1203 |
{
|
sl@0
|
1204 |
min = 0;
|
sl@0
|
1205 |
max = 1000;
|
sl@0
|
1206 |
};
|
sl@0
|
1207 |
},
|
sl@0
|
1208 |
DLG_LINE
|
sl@0
|
1209 |
{
|
sl@0
|
1210 |
prompt="";
|
sl@0
|
1211 |
type=EEikCtLabel;
|
sl@0
|
1212 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1213 |
control=LABEL
|
sl@0
|
1214 |
{
|
sl@0
|
1215 |
txt = "_____________________________________________________";
|
sl@0
|
1216 |
};
|
sl@0
|
1217 |
},
|
sl@0
|
1218 |
DLG_LINE
|
sl@0
|
1219 |
{
|
sl@0
|
1220 |
prompt="";
|
sl@0
|
1221 |
type=EEikCtLabel;
|
sl@0
|
1222 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1223 |
control=LABEL
|
sl@0
|
1224 |
{
|
sl@0
|
1225 |
txt = "VIDEO EXTENT REGION";
|
sl@0
|
1226 |
};
|
sl@0
|
1227 |
},
|
sl@0
|
1228 |
DLG_LINE
|
sl@0
|
1229 |
{
|
sl@0
|
1230 |
prompt=STRING_r_newvideo_dialog_video_top_left_x;
|
sl@0
|
1231 |
type=EEikCtNumberEditor;
|
sl@0
|
1232 |
id=EMVSCmdSetVideoExtentTopLeftx;
|
sl@0
|
1233 |
control= NUMBER_EDITOR
|
sl@0
|
1234 |
{
|
sl@0
|
1235 |
min = 0;
|
sl@0
|
1236 |
max = 1000;
|
sl@0
|
1237 |
};
|
sl@0
|
1238 |
},
|
sl@0
|
1239 |
DLG_LINE
|
sl@0
|
1240 |
{
|
sl@0
|
1241 |
prompt=STRING_r_newvideo_dialog_video_top_left_y;
|
sl@0
|
1242 |
type=EEikCtNumberEditor;
|
sl@0
|
1243 |
id=EMVSCmdSetVideoExtentTopLefty;
|
sl@0
|
1244 |
control= NUMBER_EDITOR
|
sl@0
|
1245 |
{
|
sl@0
|
1246 |
min = 0;
|
sl@0
|
1247 |
max = 1000;
|
sl@0
|
1248 |
};
|
sl@0
|
1249 |
},
|
sl@0
|
1250 |
DLG_LINE
|
sl@0
|
1251 |
{
|
sl@0
|
1252 |
prompt=STRING_r_newvideo_dialog_video_bottom_right_x;
|
sl@0
|
1253 |
type=EEikCtNumberEditor;
|
sl@0
|
1254 |
id=EMVSCmdSetVideoExtentBottomRightx;
|
sl@0
|
1255 |
control= NUMBER_EDITOR
|
sl@0
|
1256 |
{
|
sl@0
|
1257 |
min = 0;
|
sl@0
|
1258 |
max = 1000;
|
sl@0
|
1259 |
};
|
sl@0
|
1260 |
},
|
sl@0
|
1261 |
DLG_LINE
|
sl@0
|
1262 |
{
|
sl@0
|
1263 |
prompt=STRING_r_newvideo_dialog_video_bottom_right_y;
|
sl@0
|
1264 |
type=EEikCtNumberEditor;
|
sl@0
|
1265 |
id=EMVSCmdSetVideoExtentBottomRighty;
|
sl@0
|
1266 |
control= NUMBER_EDITOR
|
sl@0
|
1267 |
{
|
sl@0
|
1268 |
min = 0;
|
sl@0
|
1269 |
max = 1000;
|
sl@0
|
1270 |
};
|
sl@0
|
1271 |
},
|
sl@0
|
1272 |
DLG_LINE
|
sl@0
|
1273 |
{
|
sl@0
|
1274 |
prompt="";
|
sl@0
|
1275 |
type=EEikCtLabel;
|
sl@0
|
1276 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1277 |
control=LABEL
|
sl@0
|
1278 |
{
|
sl@0
|
1279 |
txt = "_____________________________________________________";
|
sl@0
|
1280 |
};
|
sl@0
|
1281 |
},
|
sl@0
|
1282 |
DLG_LINE
|
sl@0
|
1283 |
{
|
sl@0
|
1284 |
prompt="";
|
sl@0
|
1285 |
type=EEikCtLabel;
|
sl@0
|
1286 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1287 |
control=LABEL
|
sl@0
|
1288 |
{
|
sl@0
|
1289 |
txt = "WINDOW CLIPPING REGION";
|
sl@0
|
1290 |
};
|
sl@0
|
1291 |
},
|
sl@0
|
1292 |
DLG_LINE
|
sl@0
|
1293 |
{
|
sl@0
|
1294 |
prompt=STRING_r_newvideo_dialog_video_top_left_x;
|
sl@0
|
1295 |
type=EEikCtNumberEditor;
|
sl@0
|
1296 |
id=EMVSCmdSetWindowClipTopLeftx;
|
sl@0
|
1297 |
control= NUMBER_EDITOR
|
sl@0
|
1298 |
{
|
sl@0
|
1299 |
min = 0;
|
sl@0
|
1300 |
max = 1000;
|
sl@0
|
1301 |
};
|
sl@0
|
1302 |
},
|
sl@0
|
1303 |
DLG_LINE
|
sl@0
|
1304 |
{
|
sl@0
|
1305 |
prompt=STRING_r_newvideo_dialog_video_top_left_y;
|
sl@0
|
1306 |
type=EEikCtNumberEditor;
|
sl@0
|
1307 |
id=EMVSCmdSetWindowClipTopLefty;
|
sl@0
|
1308 |
control= NUMBER_EDITOR
|
sl@0
|
1309 |
{
|
sl@0
|
1310 |
min = 0;
|
sl@0
|
1311 |
max = 1000;
|
sl@0
|
1312 |
};
|
sl@0
|
1313 |
},
|
sl@0
|
1314 |
DLG_LINE
|
sl@0
|
1315 |
{
|
sl@0
|
1316 |
prompt=STRING_r_newvideo_dialog_video_bottom_right_x;
|
sl@0
|
1317 |
type=EEikCtNumberEditor;
|
sl@0
|
1318 |
id=EMVSCmdSetWindowClipBottomRightx;
|
sl@0
|
1319 |
control= NUMBER_EDITOR
|
sl@0
|
1320 |
{
|
sl@0
|
1321 |
min = 0;
|
sl@0
|
1322 |
max = 1000;
|
sl@0
|
1323 |
};
|
sl@0
|
1324 |
},
|
sl@0
|
1325 |
DLG_LINE
|
sl@0
|
1326 |
{
|
sl@0
|
1327 |
prompt=STRING_r_newvideo_dialog_video_bottom_right_y;
|
sl@0
|
1328 |
type=EEikCtNumberEditor;
|
sl@0
|
1329 |
id=EMVSCmdSetWindowClipBottomRighty;
|
sl@0
|
1330 |
control= NUMBER_EDITOR
|
sl@0
|
1331 |
{
|
sl@0
|
1332 |
min = 0;
|
sl@0
|
1333 |
max = 1000;
|
sl@0
|
1334 |
};
|
sl@0
|
1335 |
},
|
sl@0
|
1336 |
DLG_LINE
|
sl@0
|
1337 |
{
|
sl@0
|
1338 |
prompt="";
|
sl@0
|
1339 |
type=EEikCtLabel;
|
sl@0
|
1340 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1341 |
control=LABEL
|
sl@0
|
1342 |
{
|
sl@0
|
1343 |
txt = "_______________________________________________________";
|
sl@0
|
1344 |
};
|
sl@0
|
1345 |
},
|
sl@0
|
1346 |
DLG_LINE
|
sl@0
|
1347 |
{
|
sl@0
|
1348 |
type=EEikCtCheckBox;
|
sl@0
|
1349 |
prompt=STRING_r_newvideo_dialog_video_display_overlay_text;
|
sl@0
|
1350 |
id=EMVSCmdSetDisplayOverlayText;
|
sl@0
|
1351 |
},
|
sl@0
|
1352 |
DLG_LINE
|
sl@0
|
1353 |
{
|
sl@0
|
1354 |
prompt=STRING_r_newvideo_dialog_video_display_overlay_text;
|
sl@0
|
1355 |
type=EEikCtEdwin;
|
sl@0
|
1356 |
id=EMVSCmdSetOverlayText;
|
sl@0
|
1357 |
control= EDWIN
|
sl@0
|
1358 |
{
|
sl@0
|
1359 |
width = 20;
|
sl@0
|
1360 |
maxlength = 50;
|
sl@0
|
1361 |
};
|
sl@0
|
1362 |
},
|
sl@0
|
1363 |
DLG_LINE
|
sl@0
|
1364 |
{
|
sl@0
|
1365 |
prompt="";
|
sl@0
|
1366 |
type=EEikCtLabel;
|
sl@0
|
1367 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1368 |
control=LABEL
|
sl@0
|
1369 |
{
|
sl@0
|
1370 |
txt = "_____________________________________________________";
|
sl@0
|
1371 |
};
|
sl@0
|
1372 |
},
|
sl@0
|
1373 |
DLG_LINE
|
sl@0
|
1374 |
{
|
sl@0
|
1375 |
type=EEikCtCheckBox;
|
sl@0
|
1376 |
prompt=STRING_r_newvideo_dialog_video_viewfinder;
|
sl@0
|
1377 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1378 |
},
|
sl@0
|
1379 |
DLG_LINE
|
sl@0
|
1380 |
{
|
sl@0
|
1381 |
prompt=STRING_r_newvideo_dialog_video_cameraindex;
|
sl@0
|
1382 |
type=EEikCtNumberEditor;
|
sl@0
|
1383 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1384 |
control= NUMBER_EDITOR
|
sl@0
|
1385 |
{
|
sl@0
|
1386 |
min = 1;
|
sl@0
|
1387 |
max = 1000;
|
sl@0
|
1388 |
};
|
sl@0
|
1389 |
},
|
sl@0
|
1390 |
DLG_LINE
|
sl@0
|
1391 |
{
|
sl@0
|
1392 |
prompt="";
|
sl@0
|
1393 |
type=EEikCtLabel;
|
sl@0
|
1394 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1395 |
control=LABEL
|
sl@0
|
1396 |
{
|
sl@0
|
1397 |
txt = "_______________________________________________________";
|
sl@0
|
1398 |
};
|
sl@0
|
1399 |
},
|
sl@0
|
1400 |
DLG_LINE
|
sl@0
|
1401 |
{
|
sl@0
|
1402 |
prompt=STRING_r_newvideo_dialog_video_camerapriority;
|
sl@0
|
1403 |
type=EEikCtNumberEditor;
|
sl@0
|
1404 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1405 |
control= NUMBER_EDITOR
|
sl@0
|
1406 |
{
|
sl@0
|
1407 |
min = 1;
|
sl@0
|
1408 |
max = 1000;
|
sl@0
|
1409 |
};
|
sl@0
|
1410 |
},
|
sl@0
|
1411 |
DLG_LINE
|
sl@0
|
1412 |
{
|
sl@0
|
1413 |
prompt="";
|
sl@0
|
1414 |
type=EEikCtLabel;
|
sl@0
|
1415 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1416 |
control= LABEL
|
sl@0
|
1417 |
{
|
sl@0
|
1418 |
|
sl@0
|
1419 |
};
|
sl@0
|
1420 |
},
|
sl@0
|
1421 |
DLG_LINE
|
sl@0
|
1422 |
{
|
sl@0
|
1423 |
prompt="";
|
sl@0
|
1424 |
type=EEikCtLabel;
|
sl@0
|
1425 |
id=EMVSVideoCmdSettings;
|
sl@0
|
1426 |
control=LABEL
|
sl@0
|
1427 |
{
|
sl@0
|
1428 |
txt = "_______________________________________________________";
|
sl@0
|
1429 |
};
|
sl@0
|
1430 |
},
|
sl@0
|
1431 |
DLG_LINE
|
sl@0
|
1432 |
{
|
sl@0
|
1433 |
prompt=STRING_r_newvideo_dialog_video_auto_scale_type;
|
sl@0
|
1434 |
type=EEikCtChoiceList;
|
sl@0
|
1435 |
id=EMVSAutoScaleType;
|
sl@0
|
1436 |
control= CHOICELIST
|
sl@0
|
1437 |
{
|
sl@0
|
1438 |
array_id = r_newmvs_dialog_setautoscale_type_choicelist;
|
sl@0
|
1439 |
};
|
sl@0
|
1440 |
},
|
sl@0
|
1441 |
DLG_LINE
|
sl@0
|
1442 |
{
|
sl@0
|
1443 |
prompt=STRING_r_newvideo_dialog_video_auto_scale_horiz;
|
sl@0
|
1444 |
type=EEikCtChoiceList;
|
sl@0
|
1445 |
id=EMVSAutoScaleHoriz;
|
sl@0
|
1446 |
control= CHOICELIST
|
sl@0
|
1447 |
{
|
sl@0
|
1448 |
array_id = r_newmvs_dialog_setautoscale_horiz_choicelist;
|
sl@0
|
1449 |
};
|
sl@0
|
1450 |
},
|
sl@0
|
1451 |
DLG_LINE
|
sl@0
|
1452 |
{
|
sl@0
|
1453 |
prompt=STRING_r_newvideo_dialog_video_auto_scale_horiz_pos;
|
sl@0
|
1454 |
type=EEikCtNumberEditor;
|
sl@0
|
1455 |
id=EMVSAutoScaleHorizPos;
|
sl@0
|
1456 |
control= NUMBER_EDITOR
|
sl@0
|
1457 |
{
|
sl@0
|
1458 |
min = -1000;
|
sl@0
|
1459 |
max = 1000;
|
sl@0
|
1460 |
};
|
sl@0
|
1461 |
},
|
sl@0
|
1462 |
DLG_LINE
|
sl@0
|
1463 |
{
|
sl@0
|
1464 |
prompt=STRING_r_newvideo_dialog_video_auto_scale_vert;
|
sl@0
|
1465 |
type=EEikCtChoiceList;
|
sl@0
|
1466 |
id=EMVSAutoScaleVert;
|
sl@0
|
1467 |
control= CHOICELIST
|
sl@0
|
1468 |
{
|
sl@0
|
1469 |
array_id = r_newmvs_dialog_setautoscale_vert_choicelist;
|
sl@0
|
1470 |
};
|
sl@0
|
1471 |
},
|
sl@0
|
1472 |
DLG_LINE
|
sl@0
|
1473 |
{
|
sl@0
|
1474 |
prompt=STRING_r_newvideo_dialog_video_auto_scale_vert_pos;
|
sl@0
|
1475 |
type=EEikCtNumberEditor;
|
sl@0
|
1476 |
id=EMVSAutoScaleVertPos;
|
sl@0
|
1477 |
control= NUMBER_EDITOR
|
sl@0
|
1478 |
{
|
sl@0
|
1479 |
min = -1000;
|
sl@0
|
1480 |
max = 1000;
|
sl@0
|
1481 |
};
|
sl@0
|
1482 |
},
|
sl@0
|
1483 |
DLG_LINE
|
sl@0
|
1484 |
{
|
sl@0
|
1485 |
prompt=STRING_r_newvideo_dialog_pip;
|
sl@0
|
1486 |
type=EEikCtCheckBox;
|
sl@0
|
1487 |
id=EMVSPIP;
|
sl@0
|
1488 |
},
|
sl@0
|
1489 |
DLG_LINE
|
sl@0
|
1490 |
{
|
sl@0
|
1491 |
prompt=STRING_r_newvideo_dialog_crp;
|
sl@0
|
1492 |
type=EEikCtCheckBox;
|
sl@0
|
1493 |
id=EMVSCRP;
|
sl@0
|
1494 |
}
|
sl@0
|
1495 |
};
|
sl@0
|
1496 |
}
|
sl@0
|
1497 |
|
sl@0
|
1498 |
|
sl@0
|
1499 |
RESOURCE ARRAY r_newmvs_dialog_setvideorotation_choicelist
|
sl@0
|
1500 |
{
|
sl@0
|
1501 |
items=
|
sl@0
|
1502 |
{
|
sl@0
|
1503 |
LBUF { txt= STRING_r_mvs_dialog_setrotationnone; },
|
sl@0
|
1504 |
LBUF { txt= STRING_r_mvs_dialog_setrotationClockwise90; },
|
sl@0
|
1505 |
LBUF { txt= STRING_r_mvs_dialog_setrotationClockwise180; },
|
sl@0
|
1506 |
LBUF { txt= STRING_r_mvs_dialog_setrotationClockwise270; }
|
sl@0
|
1507 |
};
|
sl@0
|
1508 |
|
sl@0
|
1509 |
}
|
sl@0
|
1510 |
|
sl@0
|
1511 |
RESOURCE ARRAY r_newmvs_dialog_setautoscale_type_choicelist
|
sl@0
|
1512 |
{
|
sl@0
|
1513 |
items=
|
sl@0
|
1514 |
{
|
sl@0
|
1515 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_none; },
|
sl@0
|
1516 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_best_fit; },
|
sl@0
|
1517 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_clip; },
|
sl@0
|
1518 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_stretch; }
|
sl@0
|
1519 |
};
|
sl@0
|
1520 |
}
|
sl@0
|
1521 |
|
sl@0
|
1522 |
RESOURCE ARRAY r_newmvs_dialog_setautoscale_horiz_choicelist
|
sl@0
|
1523 |
{
|
sl@0
|
1524 |
items=
|
sl@0
|
1525 |
{
|
sl@0
|
1526 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_left; },
|
sl@0
|
1527 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_center; },
|
sl@0
|
1528 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_right; },
|
sl@0
|
1529 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_custom; }
|
sl@0
|
1530 |
};
|
sl@0
|
1531 |
}
|
sl@0
|
1532 |
|
sl@0
|
1533 |
RESOURCE ARRAY r_newmvs_dialog_setautoscale_vert_choicelist
|
sl@0
|
1534 |
{
|
sl@0
|
1535 |
items=
|
sl@0
|
1536 |
{
|
sl@0
|
1537 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_top; },
|
sl@0
|
1538 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_center; },
|
sl@0
|
1539 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_bottom; },
|
sl@0
|
1540 |
LBUF { txt= STRING_r_newvideo_dialog_video_auto_scale_custom; }
|
sl@0
|
1541 |
};
|
sl@0
|
1542 |
}
|
sl@0
|
1543 |
|
sl@0
|
1544 |
/*//
|
sl@0
|
1545 |
//
|
sl@0
|
1546 |
//Audio Settings*/
|
sl@0
|
1547 |
RESOURCE DIALOG r_new_mvs_dialog_audiosetting
|
sl@0
|
1548 |
{
|
sl@0
|
1549 |
flags=EEikDialogFlagWait;
|
sl@0
|
1550 |
title=STRING_mvs_file_menu_audiosetting;
|
sl@0
|
1551 |
buttons = r_mvs_buttons_update_cancel;
|
sl@0
|
1552 |
items=
|
sl@0
|
1553 |
{
|
sl@0
|
1554 |
DLG_LINE
|
sl@0
|
1555 |
{
|
sl@0
|
1556 |
prompt=STRING_mvs_settings_audio_menu_setrepeats;
|
sl@0
|
1557 |
type=EEikCtNumberEditor;
|
sl@0
|
1558 |
id=EMVSCmdSetRepeats;
|
sl@0
|
1559 |
control= NUMBER_EDITOR
|
sl@0
|
1560 |
{
|
sl@0
|
1561 |
min = 0;
|
sl@0
|
1562 |
max = 1000;
|
sl@0
|
1563 |
};
|
sl@0
|
1564 |
},
|
sl@0
|
1565 |
DLG_LINE
|
sl@0
|
1566 |
{
|
sl@0
|
1567 |
prompt=STRING_mvs_audiosetting_dialog_delay;
|
sl@0
|
1568 |
type=EEikCtNumberEditor;
|
sl@0
|
1569 |
id=EMVSCmdSetTrailingSilence;
|
sl@0
|
1570 |
control= NUMBER_EDITOR
|
sl@0
|
1571 |
{
|
sl@0
|
1572 |
min = 1;
|
sl@0
|
1573 |
max = 10;
|
sl@0
|
1574 |
};
|
sl@0
|
1575 |
trailer="sec";
|
sl@0
|
1576 |
},
|
sl@0
|
1577 |
DLG_LINE
|
sl@0
|
1578 |
{
|
sl@0
|
1579 |
type=EEikCtCheckBox;
|
sl@0
|
1580 |
prompt=STRING_r_audiosetting_dialog_playonopen;
|
sl@0
|
1581 |
id=EMVSCmdAudioSetting;
|
sl@0
|
1582 |
},
|
sl@0
|
1583 |
DLG_LINE
|
sl@0
|
1584 |
{
|
sl@0
|
1585 |
prompt=STRING_mvs_settings_audio_menu_setaudiopriority;
|
sl@0
|
1586 |
type=EEikCtChoiceList;
|
sl@0
|
1587 |
id=EMVSCmdSetAudioPriority;
|
sl@0
|
1588 |
control= CHOICELIST
|
sl@0
|
1589 |
{
|
sl@0
|
1590 |
array_id = r_newmvs_dialog_setaudiopriority_choicelist;
|
sl@0
|
1591 |
};
|
sl@0
|
1592 |
},
|
sl@0
|
1593 |
DLG_LINE
|
sl@0
|
1594 |
{
|
sl@0
|
1595 |
prompt= STRING_mvs_settings_audio_menu_setaudioprioritypreference;
|
sl@0
|
1596 |
type=EEikCtChoiceList;
|
sl@0
|
1597 |
id=EMVSCmdSetAudioPriorityPreference;
|
sl@0
|
1598 |
control= CHOICELIST
|
sl@0
|
1599 |
{
|
sl@0
|
1600 |
array_id = r_newmvs_dialog_setprioritypreference_choicelist;
|
sl@0
|
1601 |
};
|
sl@0
|
1602 |
},
|
sl@0
|
1603 |
DLG_LINE
|
sl@0
|
1604 |
{
|
sl@0
|
1605 |
type=EEikCtCheckBox;
|
sl@0
|
1606 |
prompt=STRING_r_audiosetting_dialog_autopauseresume;
|
sl@0
|
1607 |
id=EMVSAutoPauseResume;
|
sl@0
|
1608 |
},
|
sl@0
|
1609 |
DLG_LINE
|
sl@0
|
1610 |
{
|
sl@0
|
1611 |
type=EEikCtNumberEditor;
|
sl@0
|
1612 |
prompt=STRING_r_audiosetting_dialog_maxfilesize;
|
sl@0
|
1613 |
id=EMVSCmdSetMaxFileSizeNum;
|
sl@0
|
1614 |
control= NUMBER_EDITOR
|
sl@0
|
1615 |
{
|
sl@0
|
1616 |
min = 0;
|
sl@0
|
1617 |
max = 2147483647;
|
sl@0
|
1618 |
};
|
sl@0
|
1619 |
}
|
sl@0
|
1620 |
};
|
sl@0
|
1621 |
}
|
sl@0
|
1622 |
|
sl@0
|
1623 |
RESOURCE ARRAY r_newmvs_dialog_setaudiopriority_choicelist
|
sl@0
|
1624 |
{
|
sl@0
|
1625 |
items=
|
sl@0
|
1626 |
{
|
sl@0
|
1627 |
LBUF { txt= STRING_r_mvs_dialog_setaudiopriority_min; },
|
sl@0
|
1628 |
LBUF { txt= STRING_r_mvs_dialog_setaudiopriority_normal; },
|
sl@0
|
1629 |
LBUF { txt= STRING_r_mvs_dialog_setaudiopriority_max; }
|
sl@0
|
1630 |
};
|
sl@0
|
1631 |
|
sl@0
|
1632 |
}
|
sl@0
|
1633 |
|
sl@0
|
1634 |
RESOURCE ARRAY r_newmvs_dialog_setprioritypreference_choicelist
|
sl@0
|
1635 |
{
|
sl@0
|
1636 |
items=
|
sl@0
|
1637 |
{
|
sl@0
|
1638 |
LBUF { txt= STRING_r_mvs_dialog_setprioritypreference_None; },
|
sl@0
|
1639 |
LBUF { txt= STRING_r_mvs_dialog_setprioritypreference_time; },
|
sl@0
|
1640 |
LBUF { txt= STRING_r_mvs_dialog_setprioritypreference_quality; },
|
sl@0
|
1641 |
LBUF { txt= STRING_r_mvs_dialog_setprioritypreference_both; }
|
sl@0
|
1642 |
};
|
sl@0
|
1643 |
|
sl@0
|
1644 |
}
|
sl@0
|
1645 |
|
sl@0
|
1646 |
|
sl@0
|
1647 |
|
sl@0
|
1648 |
//
|
sl@0
|
1649 |
//
|
sl@0
|
1650 |
//SETPLAYWINDOW
|
sl@0
|
1651 |
|
sl@0
|
1652 |
RESOURCE DIALOG r_mvs_dialog_setplaywindow
|
sl@0
|
1653 |
{
|
sl@0
|
1654 |
flags=EEikDialogFlagWait;
|
sl@0
|
1655 |
title=STRING_r_mvs_dialog_setplaywindow ;
|
sl@0
|
1656 |
buttons = r_mvs_buttons_update_cancel;
|
sl@0
|
1657 |
items=
|
sl@0
|
1658 |
{
|
sl@0
|
1659 |
DLG_LINE
|
sl@0
|
1660 |
{
|
sl@0
|
1661 |
prompt=STRING_r_mvs_dialog_setplaywindow_start;
|
sl@0
|
1662 |
type=EEikCtNumberEditor;
|
sl@0
|
1663 |
id=EMVSCmdSetPlayWindowStart;
|
sl@0
|
1664 |
control= NUMBER_EDITOR
|
sl@0
|
1665 |
{
|
sl@0
|
1666 |
min = 0;
|
sl@0
|
1667 |
max = 2147483647;
|
sl@0
|
1668 |
};
|
sl@0
|
1669 |
trailer="ms";
|
sl@0
|
1670 |
},
|
sl@0
|
1671 |
DLG_LINE
|
sl@0
|
1672 |
{
|
sl@0
|
1673 |
prompt=STRING_r_mvs_dialog_setplaywindow_end;
|
sl@0
|
1674 |
type=EEikCtNumberEditor;
|
sl@0
|
1675 |
id=EMVSCmdSetPlayWindowEnd;
|
sl@0
|
1676 |
control= NUMBER_EDITOR
|
sl@0
|
1677 |
{
|
sl@0
|
1678 |
min = 0;
|
sl@0
|
1679 |
max = 2147483647;//This will be updated when seeded
|
sl@0
|
1680 |
};
|
sl@0
|
1681 |
trailer="ms";
|
sl@0
|
1682 |
}
|
sl@0
|
1683 |
};
|
sl@0
|
1684 |
}
|
sl@0
|
1685 |
|
sl@0
|
1686 |
//
|
sl@0
|
1687 |
//CROP DIALOG
|
sl@0
|
1688 |
// This dialog is used to crop the audio clip.
|
sl@0
|
1689 |
//
|
sl@0
|
1690 |
RESOURCE DIALOG r_mvs_dialog_crop
|
sl@0
|
1691 |
{
|
sl@0
|
1692 |
flags=EEikDialogFlagWait;
|
sl@0
|
1693 |
title=STRING_r_mvs_dialog_crop_crop;
|
sl@0
|
1694 |
buttons = r_mvs_buttons_crop_cancel;
|
sl@0
|
1695 |
items=
|
sl@0
|
1696 |
{
|
sl@0
|
1697 |
DLG_LINE
|
sl@0
|
1698 |
{
|
sl@0
|
1699 |
prompt=STRING_r_mvs_dialog_crop_leftright;
|
sl@0
|
1700 |
type=EEikCtHorOptionButList;
|
sl@0
|
1701 |
id=EMVSCmdCropLeftRight;
|
sl@0
|
1702 |
control= HOROPBUT
|
sl@0
|
1703 |
{
|
sl@0
|
1704 |
array_id=r_mvs_crop_left_right_array;
|
sl@0
|
1705 |
};
|
sl@0
|
1706 |
},
|
sl@0
|
1707 |
DLG_LINE
|
sl@0
|
1708 |
{
|
sl@0
|
1709 |
prompt=STRING_r_mvs_dialog_crop_position;
|
sl@0
|
1710 |
type=EEikCtNumberEditor;
|
sl@0
|
1711 |
id=EMVSCmdCropPositionNumber;
|
sl@0
|
1712 |
control= NUMBER_EDITOR
|
sl@0
|
1713 |
{
|
sl@0
|
1714 |
min = 0;
|
sl@0
|
1715 |
max = 9999999;//This will be updated when seeded
|
sl@0
|
1716 |
};
|
sl@0
|
1717 |
trailer="sec";
|
sl@0
|
1718 |
}
|
sl@0
|
1719 |
};
|
sl@0
|
1720 |
}
|
sl@0
|
1721 |
|
sl@0
|
1722 |
RESOURCE ARRAY r_mvs_crop_left_right_array
|
sl@0
|
1723 |
{
|
sl@0
|
1724 |
items=
|
sl@0
|
1725 |
{
|
sl@0
|
1726 |
OPBUT { id = EMVSHorOptButtonCropFromBeginning;
|
sl@0
|
1727 |
text=STRING_r_mvs_crop_left_right_array_left; },
|
sl@0
|
1728 |
OPBUT { id = EMVSHorOptButtonCropFromEnd;
|
sl@0
|
1729 |
text=STRING_r_mvs_crop_left_right_array_right; }
|
sl@0
|
1730 |
};
|
sl@0
|
1731 |
}
|
sl@0
|
1732 |
|
sl@0
|
1733 |
|
sl@0
|
1734 |
RESOURCE PROGRESSINFO r_clip_progressinfo
|
sl@0
|
1735 |
{
|
sl@0
|
1736 |
text_type=0;
|
sl@0
|
1737 |
splits_in_block=50;
|
sl@0
|
1738 |
finalval=200;
|
sl@0
|
1739 |
width=0;
|
sl@0
|
1740 |
height=0;
|
sl@0
|
1741 |
}
|
sl@0
|
1742 |
|
sl@0
|
1743 |
//
|
sl@0
|
1744 |
//
|
sl@0
|
1745 |
//
|
sl@0
|
1746 |
//Crop button
|
sl@0
|
1747 |
//
|
sl@0
|
1748 |
//
|
sl@0
|
1749 |
RESOURCE DLG_BUTTONS r_mvs_buttons_crop_cancel
|
sl@0
|
1750 |
{
|
sl@0
|
1751 |
buttons=
|
sl@0
|
1752 |
{
|
sl@0
|
1753 |
DLG_BUTTON
|
sl@0
|
1754 |
{
|
sl@0
|
1755 |
id = EMVSButtonCancel;
|
sl@0
|
1756 |
button = CMBUT {txt = STRING_r_mvs_buttons_cancel;};
|
sl@0
|
1757 |
hotkey = EEikBidCancel;
|
sl@0
|
1758 |
},
|
sl@0
|
1759 |
DLG_BUTTON
|
sl@0
|
1760 |
{
|
sl@0
|
1761 |
id = EMVSButtonUpdate;
|
sl@0
|
1762 |
button = CMBUT {txt = STRING_r_mvs_buttons_crop;};
|
sl@0
|
1763 |
hotkey = EEikBidOk;
|
sl@0
|
1764 |
}
|
sl@0
|
1765 |
};
|
sl@0
|
1766 |
}
|
sl@0
|
1767 |
|
sl@0
|
1768 |
//
|
sl@0
|
1769 |
//View Related//
|
sl@0
|
1770 |
//
|
sl@0
|
1771 |
RESOURCE TBUF r_idle { buf = STRING_KIdle; }
|
sl@0
|
1772 |
RESOURCE TBUF r_playing { buf = STRING_KPlaying; }
|
sl@0
|
1773 |
RESOURCE TBUF r_ready { buf = STRING_KReady; }
|
sl@0
|
1774 |
RESOURCE TBUF r_paused { buf = STRING_KPaused; }
|
sl@0
|
1775 |
RESOURCE TBUF r_recording { buf = STRING_KRecording; }
|
sl@0
|
1776 |
RESOURCE TBUF r_nofile { buf = STRING_KNoFile; }
|
sl@0
|
1777 |
RESOURCE TBUF r_open { buf = STRING_KOpen; }
|
sl@0
|
1778 |
RESOURCE TBUF r_zerotime { buf = STRING_KZeroTime; }
|
sl@0
|
1779 |
|
sl@0
|
1780 |
RESOURCE TBUF r_dollardollar { buf = STRING_KDollarDollar; }
|
sl@0
|
1781 |
RESOURCE TBUF r_percent { buf = STRING_KPercent; }
|
sl@0
|
1782 |
RESOURCE TBUF r_volume { buf = STRING_KVolume; }
|
sl@0
|
1783 |
RESOURCE TBUF r_volumeramp { buf = STRING_KVolumeRamp; }
|
sl@0
|
1784 |
RESOURCE TBUF r_balance { buf = STRING_KBalance; }
|
sl@0
|
1785 |
RESOURCE TBUF r_cropstart { buf = STRING_KCropStart; }
|
sl@0
|
1786 |
RESOURCE TBUF r_cropend { buf = STRING_KCropEnd; }
|
sl@0
|
1787 |
RESOURCE TBUF r_norepeats { buf = STRING_KNoRepeats; }
|
sl@0
|
1788 |
RESOURCE TBUF r_repeatdelay { buf = STRING_KRepeatDelay; }
|
sl@0
|
1789 |
RESOURCE TBUF r_audiopriority { buf = STRING_KAudioPriority; }
|
sl@0
|
1790 |
RESOURCE TBUF r_gain { buf = STRING_KGain; }
|
sl@0
|
1791 |
RESOURCE TBUF r_tabspace { buf = STRING_KTabSpace; }
|
sl@0
|
1792 |
RESOURCE TBUF r_ms { buf = STRING_Kms; }
|
sl@0
|
1793 |
RESOURCE TBUF r_cliplength { buf = STRING_KClipLength; }
|
sl@0
|
1794 |
RESOURCE TBUF r_left { buf = STRING_KLeftOpen; }
|
sl@0
|
1795 |
RESOURCE TBUF r_right { buf = STRING_KRightOpen; }
|
sl@0
|
1796 |
RESOURCE TBUF r_close { buf = STRING_KClose; }
|
sl@0
|
1797 |
RESOURCE TBUF r_nocrop { buf = STRING_KNoCrop; }
|
sl@0
|
1798 |
RESOURCE TBUF r_welcome { buf = STRING_KWelcome; }
|
sl@0
|
1799 |
RESOURCE TBUF r_center { buf = STRING_KCenter; }
|
sl@0
|
1800 |
RESOURCE TBUF r_ramp { buf = STRING_KRamp; }
|
sl@0
|
1801 |
RESOURCE TBUF r_format { buf = STRING_KFormat; }
|
sl@0
|
1802 |
RESOURCE TBUF r_bitrate { buf = STRING_KBitRate; }
|
sl@0
|
1803 |
RESOURCE TBUF r_samplerate { buf = STRING_KSampleRate; }
|
sl@0
|
1804 |
RESOURCE TBUF r_channels { buf = STRING_KChannels; }
|
sl@0
|
1805 |
RESOURCE TBUF r_audioenabled { buf = STRING_KAudioEnabled; }
|
sl@0
|
1806 |
RESOURCE TBUF r_audionotenabled { buf = STRING_KAudioNotEnabled; }
|