|
1 /* |
|
2 * Copyright (c) 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: |
|
15 * |
|
16 */ |
|
17 |
|
18 |
|
19 |
|
20 |
|
21 NAME MATT |
|
22 |
|
23 #include <eikon.rh> |
|
24 #include <eikon.rsg> |
|
25 #include <avkon.rh> |
|
26 #include <avkon.rsg> |
|
27 #include <avkon.mbg> |
|
28 #include <AvkonIcons.hrh> |
|
29 |
|
30 |
|
31 |
|
32 #include "creator.hrh" |
|
33 #include <data_caging_paths_strings.hrh> |
|
34 #include <appinfo.rh> |
|
35 |
|
36 // --------------------------------------------------------- |
|
37 // |
|
38 // Define the resource file signature |
|
39 // This resource should be empty. |
|
40 // |
|
41 // --------------------------------------------------------- |
|
42 // |
|
43 RESOURCE RSS_SIGNATURE { } |
|
44 |
|
45 // --------------------------------------------------------- |
|
46 // |
|
47 // Default Document Name |
|
48 // |
|
49 // --------------------------------------------------------- |
|
50 // |
|
51 RESOURCE TBUF r_default_document_name { buf=""; } |
|
52 |
|
53 // --------------------------------------------------------- |
|
54 // |
|
55 // Define default menu and CBA key. |
|
56 // |
|
57 // --------------------------------------------------------- |
|
58 // |
|
59 RESOURCE EIK_APP_INFO |
|
60 { |
|
61 menubar = r_creator_menubar; |
|
62 cba = R_AVKON_SOFTKEYS_OPTIONS_EXIT; |
|
63 } |
|
64 |
|
65 |
|
66 // --------------------------------------------------------- |
|
67 // |
|
68 // r_creator_menubar |
|
69 // Menubar for Creator |
|
70 // |
|
71 // --------------------------------------------------------- |
|
72 // |
|
73 RESOURCE MENU_BAR r_creator_menubar |
|
74 { |
|
75 titles = |
|
76 { |
|
77 MENU_TITLE {menu_pane = r_creator_menu;} |
|
78 }; |
|
79 } |
|
80 |
|
81 |
|
82 // --------------------------------------------------------- |
|
83 // |
|
84 // r_creator_menu |
|
85 // Menu for "Options" |
|
86 // |
|
87 // --------------------------------------------------------- |
|
88 // |
|
89 RESOURCE MENU_PANE r_creator_menu |
|
90 { |
|
91 items = |
|
92 { |
|
93 #if(!defined __SERIES60_30__ && !defined __SERIES60_31__) |
|
94 MENU_ITEM |
|
95 { |
|
96 command = ECmdCreateFromFile; |
|
97 txt = "Run script"; |
|
98 }, |
|
99 #endif |
|
100 |
|
101 MENU_ITEM |
|
102 { |
|
103 command = ECmdCreateCalendarEntries; |
|
104 cascade = r_creator_agendaentries_submenu; |
|
105 txt = "Calendar"; |
|
106 }, |
|
107 |
|
108 MENU_ITEM |
|
109 { |
|
110 command = ECmdCreateBrowserEntries; |
|
111 cascade = r_creator_browserentries_submenu; |
|
112 txt = "Browser"; |
|
113 }, |
|
114 |
|
115 MENU_ITEM |
|
116 { |
|
117 command = ECmdCreateFileEntries; |
|
118 cascade = r_creator_fileentries_submenu; |
|
119 txt = "Files"; |
|
120 }, |
|
121 |
|
122 MENU_ITEM |
|
123 { |
|
124 command = ECmdCreateLogEntries; |
|
125 cascade = r_creator_logentries_submenu; |
|
126 txt = "Logs"; |
|
127 }, |
|
128 |
|
129 MENU_ITEM |
|
130 { |
|
131 command = ECmdCreateMessagingEntries; |
|
132 cascade = r_creator_messagingentries_submenu; |
|
133 txt = "Messaging"; |
|
134 }, |
|
135 |
|
136 MENU_ITEM |
|
137 { |
|
138 command = ECmdCreateMiscEntries; |
|
139 cascade = r_creator_miscentries_submenu; |
|
140 txt = "Misc"; |
|
141 }, |
|
142 |
|
143 MENU_ITEM |
|
144 { |
|
145 command = ECmdCreatePhoneBookEntries; |
|
146 cascade = r_creator_phonebookentries_submenu; |
|
147 txt = "Phonebook"; |
|
148 }, |
|
149 |
|
150 MENU_ITEM |
|
151 { |
|
152 command = ECmdDeleteEntries; |
|
153 cascade = r_creator_deleteentries_submenu; |
|
154 txt = "Delete"; |
|
155 }, |
|
156 |
|
157 MENU_ITEM |
|
158 { |
|
159 command = ECmdSelectRandomDataFile; |
|
160 txt = "Select random data file"; |
|
161 }, |
|
162 |
|
163 MENU_ITEM |
|
164 { |
|
165 command = ECmdAboutCreator; |
|
166 txt = "About Creator"; |
|
167 }, |
|
168 |
|
169 MENU_ITEM |
|
170 { |
|
171 command = EAknSoftkeyExit; |
|
172 txt = "Exit"; |
|
173 } |
|
174 }; |
|
175 } |
|
176 |
|
177 |
|
178 // --------------------------------------------------------- |
|
179 |
|
180 RESOURCE MENU_PANE r_creator_agendaentries_submenu |
|
181 { |
|
182 items = |
|
183 { |
|
184 MENU_ITEM |
|
185 { |
|
186 command = ECmdCreateCalendarEntryAppointments; |
|
187 txt = "Appointments"; |
|
188 }, |
|
189 MENU_ITEM |
|
190 { |
|
191 command = ECmdCreateCalendarEntryEvents; |
|
192 txt = "Events"; |
|
193 }, |
|
194 MENU_ITEM |
|
195 { |
|
196 command = ECmdCreateCalendarEntryAnniversaries; |
|
197 txt = "Anniversaries"; |
|
198 }, |
|
199 MENU_ITEM |
|
200 { |
|
201 command = ECmdCreateCalendarEntryToDos; |
|
202 txt = "Todos"; |
|
203 }, |
|
204 MENU_ITEM |
|
205 { |
|
206 command = ECmdCreateCalendarEntryReminders; |
|
207 txt = "Reminders"; |
|
208 } |
|
209 }; |
|
210 } |
|
211 |
|
212 // --------------------------------------------------------- |
|
213 |
|
214 RESOURCE MENU_PANE r_creator_browserentries_submenu |
|
215 { |
|
216 items = |
|
217 { |
|
218 MENU_ITEM |
|
219 { |
|
220 command = ECmdCreateBrowserBookmarkEntries; |
|
221 txt = "Bookmarks"; |
|
222 }, |
|
223 MENU_ITEM |
|
224 { |
|
225 command = ECmdCreateBrowserBookmarkFolderEntries; |
|
226 txt = "Bookmark folders"; |
|
227 }, |
|
228 MENU_ITEM |
|
229 { |
|
230 command = ECmdCreateBrowserSavedPageEntries; |
|
231 txt = "Saved pages"; |
|
232 }, |
|
233 MENU_ITEM |
|
234 { |
|
235 command = ECmdCreateBrowserSavedPageFolderEntries; |
|
236 txt = "Saved page folders"; |
|
237 } |
|
238 }; |
|
239 } |
|
240 |
|
241 // --------------------------------------------------------- |
|
242 |
|
243 RESOURCE MENU_PANE r_creator_fileentries_submenu |
|
244 { |
|
245 items = |
|
246 { |
|
247 MENU_ITEM |
|
248 { |
|
249 command = ECmdCreateFileEntryEmptyFolder; |
|
250 txt = "Empty folder"; |
|
251 }, |
|
252 MENU_ITEM |
|
253 { |
|
254 command = ECmdCreateFileEntryJPEG_25kB; |
|
255 txt = "JPEG 25kB"; |
|
256 }, |
|
257 MENU_ITEM |
|
258 { |
|
259 command = ECmdCreateFileEntryJPEG_200kB; |
|
260 txt = "JPEG 200kB"; |
|
261 }, |
|
262 MENU_ITEM |
|
263 { |
|
264 command = ECmdCreateFileEntryJPEG_500kB; |
|
265 txt = "JPEG 500kB"; |
|
266 }, |
|
267 MENU_ITEM |
|
268 { |
|
269 command = ECmdCreateFileEntryPNG_15kB; |
|
270 txt = "PNG 15kB"; |
|
271 }, |
|
272 MENU_ITEM |
|
273 { |
|
274 command = ECmdCreateFileEntryGIF_2kB; |
|
275 txt = "GIF 2kB"; |
|
276 }, |
|
277 MENU_ITEM |
|
278 { |
|
279 command = ECmdCreateFileEntryBMP_25kB; |
|
280 txt = "BMP 25kB"; |
|
281 }, |
|
282 MENU_ITEM |
|
283 { |
|
284 command = ECmdCreateFileEntryJP2_65kB; |
|
285 txt = "JP2 65kB"; |
|
286 }, |
|
287 MENU_ITEM |
|
288 { |
|
289 command = ECmdCreateFileEntrySVG_15kB; |
|
290 txt = "SVG 15kB"; |
|
291 }, |
|
292 MENU_ITEM |
|
293 { |
|
294 command = ECmdCreateFileEntryTIF_25kB; |
|
295 txt = "TIF 25kB"; |
|
296 }, |
|
297 MENU_ITEM |
|
298 { |
|
299 command = ECmdCreateFileEntryRNG_1kB; |
|
300 txt = "RNG 1kB"; |
|
301 }, |
|
302 MENU_ITEM |
|
303 { |
|
304 command = ECmdCreateFileEntryMIDI_10kB; |
|
305 txt = "MIDI 10kB"; |
|
306 }, |
|
307 MENU_ITEM |
|
308 { |
|
309 command = ECmdCreateFileEntryWAV_20kB; |
|
310 txt = "WAVE 20kB"; |
|
311 }, |
|
312 MENU_ITEM |
|
313 { |
|
314 command = ECmdCreateFileEntryAMR_20kB; |
|
315 txt = "AMR 20kB"; |
|
316 }, |
|
317 MENU_ITEM |
|
318 { |
|
319 command = ECmdCreateFileEntryXLS_15kB; |
|
320 txt = "Excel 15kB"; |
|
321 }, |
|
322 MENU_ITEM |
|
323 { |
|
324 command = ECmdCreateFileEntryDOC_20kB; |
|
325 txt = "Word 20kB"; |
|
326 }, |
|
327 MENU_ITEM |
|
328 { |
|
329 command = ECmdCreateFileEntryPPT_40kB; |
|
330 txt = "PowerPoint 40kB"; |
|
331 }, |
|
332 MENU_ITEM |
|
333 { |
|
334 command = ECmdCreateFileEntryTXT_10kB; |
|
335 txt = "Text 10kB"; |
|
336 }, |
|
337 MENU_ITEM |
|
338 { |
|
339 command = ECmdCreateFileEntryTXT_70kB; |
|
340 txt = "Text 70kB"; |
|
341 }, |
|
342 MENU_ITEM |
|
343 { |
|
344 command = ECmdCreateFileEntryHTML_20kB; |
|
345 txt = "HTML 20kB"; |
|
346 }, |
|
347 /*MENU_ITEM |
|
348 { |
|
349 command = ECmdCreateFileEntryDeck_1kB; |
|
350 txt = "Savedeck 1kB"; |
|
351 },*/ |
|
352 MENU_ITEM |
|
353 { |
|
354 command = ECmdCreateFileEntryMXMF_40kB; |
|
355 txt = "MXMF 40kB"; |
|
356 }, |
|
357 MENU_ITEM |
|
358 { |
|
359 command = ECmdCreateFileEntryRAM_1kB; |
|
360 txt = "RAM 1kB"; |
|
361 }, |
|
362 MENU_ITEM |
|
363 { |
|
364 command = ECmdCreateFileEntryJAD_1kB; |
|
365 txt = "JAD 1kB"; |
|
366 }, |
|
367 MENU_ITEM |
|
368 { |
|
369 command = ECmdCreateFileEntryJAR_10kB; |
|
370 txt = "JAR 10kB"; |
|
371 }, |
|
372 MENU_ITEM |
|
373 { |
|
374 command = ECmdCreateFileEntryVCF_1kB; |
|
375 txt = "VCF 1kB"; |
|
376 }, |
|
377 MENU_ITEM |
|
378 { |
|
379 command = ECmdCreateFileEntryVCS_1kB; |
|
380 txt = "VCS 1kB"; |
|
381 }, |
|
382 MENU_ITEM |
|
383 { |
|
384 command = ECmdCreateFileEntrySISX_10kB; |
|
385 txt = "SISX 10kB"; |
|
386 }, |
|
387 MENU_ITEM |
|
388 { |
|
389 command = ECmdCreateFileEntry3GPP_70kB; |
|
390 txt = "3GPP 70kB"; |
|
391 }, |
|
392 MENU_ITEM |
|
393 { |
|
394 command = ECmdCreateFileEntryMP3_250kB; |
|
395 txt = "MP3 250kB"; |
|
396 }, |
|
397 MENU_ITEM |
|
398 { |
|
399 command = ECmdCreateFileEntryAAC_100kB; |
|
400 txt = "AAC 100kB"; |
|
401 }, |
|
402 MENU_ITEM |
|
403 { |
|
404 command = ECmdCreateFileEntrySWF_15kB; |
|
405 txt = "SWF 15kB"; |
|
406 }, |
|
407 MENU_ITEM |
|
408 { |
|
409 command = ECmdCreateFileEntryMP4_200kB; |
|
410 txt = "MP4 200kB"; |
|
411 }, |
|
412 MENU_ITEM |
|
413 { |
|
414 command = ECmdCreateFileEntryRM_95kB; |
|
415 txt = "RM 95kB"; |
|
416 }, |
|
417 MENU_ITEM |
|
418 { |
|
419 command = ECmdCreateFileEntryWMA_50kB; |
|
420 txt = "WMA 50kB"; |
|
421 }, |
|
422 MENU_ITEM |
|
423 { |
|
424 command = ECmdCreateFileEntryWMV_200kB; |
|
425 txt = "WMV 200kB"; |
|
426 } |
|
427 }; |
|
428 } |
|
429 |
|
430 |
|
431 // --------------------------------------------------------- |
|
432 |
|
433 RESOURCE MENU_PANE r_creator_logentries_submenu |
|
434 { |
|
435 items = |
|
436 { |
|
437 MENU_ITEM |
|
438 { |
|
439 command = ECmdCreateLogEntryMissedCalls; |
|
440 txt = "Missed calls"; |
|
441 }, |
|
442 MENU_ITEM |
|
443 { |
|
444 command = ECmdCreateLogEntryReceivedCalls; |
|
445 txt = "Received calls"; |
|
446 }, |
|
447 MENU_ITEM |
|
448 { |
|
449 command = ECmdCreateLogEntryDialledNumbers; |
|
450 txt = "Dialled numbers"; |
|
451 } |
|
452 }; |
|
453 } |
|
454 |
|
455 // --------------------------------------------------------- |
|
456 |
|
457 RESOURCE MENU_PANE r_creator_messagingentries_submenu |
|
458 { |
|
459 items = |
|
460 { |
|
461 /* |
|
462 MENU_ITEM |
|
463 { |
|
464 command = ECmdCreateMessagingEntryCBSTopics; |
|
465 txt = "CBS topics"; |
|
466 }, |
|
467 MENU_ITEM |
|
468 { |
|
469 command = ECmdCreateMessagingEntryDocumentsFolders; |
|
470 txt = "Documents folders"; |
|
471 }, |
|
472 MENU_ITEM |
|
473 { |
|
474 command = ECmdCreateMessagingEntrySMSMessageCenters; |
|
475 txt = "SMS Message Centers"; |
|
476 }, |
|
477 */ |
|
478 MENU_ITEM |
|
479 { |
|
480 command = ECmdCreateMessagingEntryMailboxes; |
|
481 txt = "Mailboxes"; |
|
482 }, |
|
483 MENU_ITEM |
|
484 { |
|
485 command = ECmdCreateMessagingEntryMessages; |
|
486 txt = "Messages"; |
|
487 } |
|
488 /* |
|
489 , |
|
490 MENU_ITEM |
|
491 { |
|
492 command = ECmdCreateMessagingEntryTemplates; |
|
493 txt = "Templates"; |
|
494 } |
|
495 */ |
|
496 }; |
|
497 } |
|
498 |
|
499 // --------------------------------------------------------- |
|
500 |
|
501 RESOURCE MENU_PANE r_creator_miscentries_submenu |
|
502 { |
|
503 items = |
|
504 { |
|
505 #if defined (__SERIES60_30__) || defined(__SERIES60_31__) |
|
506 MENU_ITEM |
|
507 { |
|
508 command = ECmdCreateMiscEntryAccessPoints; |
|
509 txt = "Access Points"; |
|
510 }, |
|
511 |
|
512 #else |
|
513 MENU_ITEM |
|
514 { |
|
515 command = ECmdCreateMiscEntryAccessPoints; |
|
516 txt = "Connection Methods"; |
|
517 }, |
|
518 |
|
519 #endif |
|
520 |
|
521 /* |
|
522 MENU_ITEM |
|
523 { |
|
524 command = ECmdCreateMiscEntryAppMenuFolders; |
|
525 txt = "App menu folders"; |
|
526 }, |
|
527 */ |
|
528 #ifdef __PRESENCE |
|
529 MENU_ITEM |
|
530 { |
|
531 command = ECmdCreateMiscEntryIMPSServers; |
|
532 txt = "IMPS servers"; |
|
533 }, |
|
534 #endif |
|
535 |
|
536 MENU_ITEM |
|
537 { |
|
538 command = ECmdCreateMiscEntryNotes; |
|
539 txt = "Notes"; |
|
540 } |
|
541 |
|
542 |
|
543 /* |
|
544 , |
|
545 MENU_ITEM |
|
546 { |
|
547 command = ECmdCreateMiscEntrySyncSettings; |
|
548 txt = "Sync settings"; |
|
549 } |
|
550 */ |
|
551 , |
|
552 MENU_ITEM |
|
553 { |
|
554 command = ECmdCreateMiscEntryLandmarks; |
|
555 txt = "Landmarks"; |
|
556 } |
|
557 }; |
|
558 } |
|
559 |
|
560 // --------------------------------------------------------- |
|
561 |
|
562 RESOURCE MENU_PANE r_creator_phonebookentries_submenu |
|
563 { |
|
564 items = |
|
565 { |
|
566 MENU_ITEM |
|
567 { |
|
568 command = ECmdCreatePhoneBookEntryContacts; |
|
569 txt = "Contacts"; |
|
570 }, |
|
571 MENU_ITEM |
|
572 { |
|
573 command = ECmdCreatePhoneBookEntryGroups; |
|
574 txt = "Groups"; |
|
575 } |
|
576 /* |
|
577 , |
|
578 MENU_ITEM |
|
579 { |
|
580 command = ECmdCreatePhoneBookEntrySubscribedContacts; |
|
581 txt = "Subscribed contacts"; |
|
582 } |
|
583 */ |
|
584 }; |
|
585 } |
|
586 |
|
587 // --------------------------------------------------------- |
|
588 |
|
589 RESOURCE MENU_PANE r_creator_deleteentries_submenu |
|
590 { |
|
591 items = |
|
592 { |
|
593 MENU_ITEM |
|
594 { |
|
595 command = ECmdDeleteAllEntries; |
|
596 cascade = r_creator_deleteall_submenu; |
|
597 txt = "All items"; |
|
598 }, |
|
599 MENU_ITEM |
|
600 { |
|
601 command = ECmdDeleteCalendarEntries; |
|
602 cascade = r_creator_deletecalendar_submenu; |
|
603 txt = "Calendar entries"; |
|
604 }, |
|
605 MENU_ITEM |
|
606 { |
|
607 command = ECmdDeleteBrowserBookmarks; |
|
608 cascade = r_creator_deletebookmarks_submenu; |
|
609 txt = "Br bookmarks"; |
|
610 }, |
|
611 MENU_ITEM |
|
612 { |
|
613 command = ECmdDeleteCreatorBrowserBookmarkFolders; |
|
614 cascade = r_creator_deletebookmarkfolders_submenu; |
|
615 txt = "Br bookmark folders"; |
|
616 }, |
|
617 MENU_ITEM |
|
618 { |
|
619 command = ECmdDeleteBrowserSavedPages; |
|
620 cascade = r_creator_deletesavedpages_submenu; |
|
621 txt = "Br saved pages"; |
|
622 }, |
|
623 MENU_ITEM |
|
624 { |
|
625 command = ECmdDeleteBrowserSavedPageFolders; |
|
626 cascade = r_creator_deletesavedpagefolders_submenu; |
|
627 txt = "Br saved page folders"; |
|
628 }, |
|
629 MENU_ITEM |
|
630 { |
|
631 command = ECmdDeleteCreatorFiles; |
|
632 cascade = r_creator_deletefiles_submenu; |
|
633 txt = "Files"; |
|
634 }, |
|
635 MENU_ITEM |
|
636 { |
|
637 command = ECmdDeleteLogs; |
|
638 cascade = r_creator_deletelogs_submenu; |
|
639 txt = "Logs"; |
|
640 }, |
|
641 MENU_ITEM |
|
642 { |
|
643 command = ECmdDeleteMessages; |
|
644 cascade = r_creator_deletemessages_submenu; |
|
645 txt = "Messages"; |
|
646 }, |
|
647 MENU_ITEM |
|
648 { |
|
649 command = ECmdDeleteIAPs; // ECmdDeleteMiscEntryAccessPoints |
|
650 cascade = r_creator_deleteiaps_submenu; |
|
651 #if defined (__SERIES60_30__) || defined(__SERIES60_31__) |
|
652 txt = "Access Points"; |
|
653 #else |
|
654 txt = "Connection methods"; |
|
655 #endif |
|
656 }, |
|
657 MENU_ITEM |
|
658 { |
|
659 command = ECmdDeleteIMPSs; |
|
660 cascade = r_creator_deleteimps_submenu; |
|
661 txt = "IMPS servers"; |
|
662 }, |
|
663 MENU_ITEM |
|
664 { |
|
665 command = ECmdDeleteNotes; |
|
666 cascade = r_creator_deletenotes_submenu; |
|
667 txt = "Notes"; |
|
668 }, |
|
669 MENU_ITEM |
|
670 { |
|
671 command = ECmdDeleteLandmarks; |
|
672 cascade = r_creator_deletelandmarks_submenu; |
|
673 txt = "Landmarks"; |
|
674 }, |
|
675 MENU_ITEM |
|
676 { |
|
677 command = ECmdDeleteContacts; |
|
678 cascade = r_creator_deletecontacts_submenu; |
|
679 txt = "Contacts"; |
|
680 }, |
|
681 MENU_ITEM |
|
682 { |
|
683 command = ECmdDeleteContactGroups; |
|
684 cascade = r_creator_deletecontactgroups_submenu; |
|
685 txt = "Contact groups"; |
|
686 } |
|
687 |
|
688 /* |
|
689 MENU_ITEM |
|
690 { |
|
691 command = ECmdDeleteMiscEntryAccessPoints; |
|
692 txt = "All Connection Methods"; |
|
693 } |
|
694 */ |
|
695 }; |
|
696 } |
|
697 |
|
698 #define string_creator_deletemenu_all "All" |
|
699 #define string_creator_deletemenu_by_creator "By Creator" |
|
700 |
|
701 // --------------------------------------------------------- |
|
702 RESOURCE MENU_PANE r_creator_deleteall_submenu |
|
703 { |
|
704 items = |
|
705 { |
|
706 MENU_ITEM |
|
707 { |
|
708 command = ECmdDeleteAllEntries; |
|
709 txt = string_creator_deletemenu_all; |
|
710 }, |
|
711 MENU_ITEM |
|
712 { |
|
713 command = ECmdDeleteAllCreatorEntries; |
|
714 txt = string_creator_deletemenu_by_creator; |
|
715 } |
|
716 }; |
|
717 } |
|
718 |
|
719 // --------------------------------------------------------- |
|
720 RESOURCE MENU_PANE r_creator_deletecalendar_submenu |
|
721 { |
|
722 items = |
|
723 { |
|
724 MENU_ITEM |
|
725 { |
|
726 command = ECmdDeleteCalendarEntries; |
|
727 txt = string_creator_deletemenu_all; |
|
728 }, |
|
729 MENU_ITEM |
|
730 { |
|
731 command = ECmdDeleteCreatorCalendarEntries; |
|
732 txt = string_creator_deletemenu_by_creator; |
|
733 } |
|
734 }; |
|
735 } |
|
736 |
|
737 // --------------------------------------------------------- |
|
738 RESOURCE MENU_PANE r_creator_deletebookmarks_submenu |
|
739 { |
|
740 items = |
|
741 { |
|
742 MENU_ITEM |
|
743 { |
|
744 command = ECmdDeleteBrowserBookmarks; |
|
745 txt = string_creator_deletemenu_all; |
|
746 }, |
|
747 MENU_ITEM |
|
748 { |
|
749 command = ECmdDeleteCreatorBrowserBookmarks; |
|
750 txt = string_creator_deletemenu_by_creator; |
|
751 } |
|
752 }; |
|
753 } |
|
754 |
|
755 // --------------------------------------------------------- |
|
756 RESOURCE MENU_PANE r_creator_deletebookmarkfolders_submenu |
|
757 { |
|
758 items = |
|
759 { |
|
760 MENU_ITEM |
|
761 { |
|
762 command = ECmdDeleteBrowserBookmarkFolders; |
|
763 txt = string_creator_deletemenu_all; |
|
764 }, |
|
765 MENU_ITEM |
|
766 { |
|
767 command = ECmdDeleteCreatorBrowserBookmarkFolders; |
|
768 txt = string_creator_deletemenu_by_creator; |
|
769 } |
|
770 }; |
|
771 } |
|
772 |
|
773 // --------------------------------------------------------- |
|
774 RESOURCE MENU_PANE r_creator_deletesavedpages_submenu |
|
775 { |
|
776 items = |
|
777 { |
|
778 MENU_ITEM |
|
779 { |
|
780 command = ECmdDeleteBrowserSavedPages; |
|
781 txt = string_creator_deletemenu_all; |
|
782 }, |
|
783 MENU_ITEM |
|
784 { |
|
785 command = ECmdDeleteCreatorBrowserSavedPages; |
|
786 txt = string_creator_deletemenu_by_creator; |
|
787 } |
|
788 }; |
|
789 } |
|
790 |
|
791 // --------------------------------------------------------- |
|
792 RESOURCE MENU_PANE r_creator_deletesavedpagefolders_submenu |
|
793 { |
|
794 items = |
|
795 { |
|
796 MENU_ITEM |
|
797 { |
|
798 command = ECmdDeleteBrowserSavedPageFolders; |
|
799 txt = string_creator_deletemenu_all; |
|
800 }, |
|
801 MENU_ITEM |
|
802 { |
|
803 command = ECmdDeleteCreatorBrowserSavedPageFolders; |
|
804 txt = string_creator_deletemenu_by_creator; |
|
805 } |
|
806 }; |
|
807 } |
|
808 |
|
809 // --------------------------------------------------------- |
|
810 RESOURCE MENU_PANE r_creator_deletefiles_submenu |
|
811 { |
|
812 items = |
|
813 { |
|
814 MENU_ITEM |
|
815 { |
|
816 command = ECmdDeleteCreatorFiles; |
|
817 txt = string_creator_deletemenu_by_creator; |
|
818 } |
|
819 }; |
|
820 } |
|
821 |
|
822 // --------------------------------------------------------- |
|
823 RESOURCE MENU_PANE r_creator_deletelogs_submenu |
|
824 { |
|
825 items = |
|
826 { |
|
827 MENU_ITEM |
|
828 { |
|
829 command = ECmdDeleteLogs; |
|
830 txt = string_creator_deletemenu_all; |
|
831 }, |
|
832 MENU_ITEM |
|
833 { |
|
834 command = ECmdDeleteCreatorLogs; |
|
835 txt = string_creator_deletemenu_by_creator; |
|
836 } |
|
837 }; |
|
838 } |
|
839 |
|
840 // --------------------------------------------------------- |
|
841 RESOURCE MENU_PANE r_creator_deletemailboxes_submenu |
|
842 { |
|
843 items = |
|
844 { |
|
845 MENU_ITEM |
|
846 { |
|
847 command = ECmdDeleteMailboxes; |
|
848 txt = string_creator_deletemenu_all; |
|
849 }, |
|
850 MENU_ITEM |
|
851 { |
|
852 command = ECmdDeleteCreatorMailboxes; |
|
853 txt = string_creator_deletemenu_by_creator; |
|
854 } |
|
855 }; |
|
856 } |
|
857 |
|
858 // --------------------------------------------------------- |
|
859 RESOURCE MENU_PANE r_creator_deletemessages_submenu |
|
860 { |
|
861 items = |
|
862 { |
|
863 MENU_ITEM |
|
864 { |
|
865 command = ECmdDeleteMessages; |
|
866 txt = string_creator_deletemenu_all; |
|
867 }, |
|
868 MENU_ITEM |
|
869 { |
|
870 command = ECmdDeleteCreatorMessages; |
|
871 txt = string_creator_deletemenu_by_creator; |
|
872 } |
|
873 }; |
|
874 } |
|
875 |
|
876 // --------------------------------------------------------- |
|
877 RESOURCE MENU_PANE r_creator_deleteiaps_submenu |
|
878 { |
|
879 items = |
|
880 { |
|
881 MENU_ITEM |
|
882 { |
|
883 command = ECmdDeleteIAPs; |
|
884 txt = string_creator_deletemenu_all; |
|
885 }, |
|
886 MENU_ITEM |
|
887 { |
|
888 command = ECmdDeleteCreatorIAPs; |
|
889 txt = string_creator_deletemenu_by_creator; |
|
890 } |
|
891 }; |
|
892 } |
|
893 |
|
894 // --------------------------------------------------------- |
|
895 RESOURCE MENU_PANE r_creator_deleteimps_submenu |
|
896 { |
|
897 items = |
|
898 { |
|
899 MENU_ITEM |
|
900 { |
|
901 command = ECmdDeleteIMPSs; |
|
902 txt = string_creator_deletemenu_all; |
|
903 }, |
|
904 MENU_ITEM |
|
905 { |
|
906 command = ECmdDeleteCreatorIMPSs; |
|
907 txt = string_creator_deletemenu_by_creator; |
|
908 } |
|
909 }; |
|
910 } |
|
911 |
|
912 // --------------------------------------------------------- |
|
913 RESOURCE MENU_PANE r_creator_deletenotes_submenu |
|
914 { |
|
915 items = |
|
916 { |
|
917 MENU_ITEM |
|
918 { |
|
919 command = ECmdDeleteNotes; |
|
920 txt = string_creator_deletemenu_all; |
|
921 } |
|
922 // By Creator not supported because |
|
923 // note id is not available via Notepad API |
|
924 }; |
|
925 } |
|
926 |
|
927 // --------------------------------------------------------- |
|
928 RESOURCE MENU_PANE r_creator_deletelandmarks_submenu |
|
929 { |
|
930 items = |
|
931 { |
|
932 MENU_ITEM |
|
933 { |
|
934 command = ECmdDeleteLandmarks; |
|
935 txt = string_creator_deletemenu_all; |
|
936 }, |
|
937 MENU_ITEM |
|
938 { |
|
939 command = ECmdDeleteCreatorLandmarks; |
|
940 txt = string_creator_deletemenu_by_creator; |
|
941 } |
|
942 }; |
|
943 } |
|
944 |
|
945 // --------------------------------------------------------- |
|
946 RESOURCE MENU_PANE r_creator_deletecontacts_submenu |
|
947 { |
|
948 items = |
|
949 { |
|
950 MENU_ITEM |
|
951 { |
|
952 command = ECmdDeleteContacts; |
|
953 txt = string_creator_deletemenu_all; |
|
954 }, |
|
955 MENU_ITEM |
|
956 { |
|
957 command = ECmdDeleteCreatorContacts; |
|
958 txt = string_creator_deletemenu_by_creator; |
|
959 } |
|
960 }; |
|
961 } |
|
962 |
|
963 // --------------------------------------------------------- |
|
964 RESOURCE MENU_PANE r_creator_deletecontactgroups_submenu |
|
965 { |
|
966 items = |
|
967 { |
|
968 MENU_ITEM |
|
969 { |
|
970 command = ECmdDeleteContactGroups; |
|
971 txt = string_creator_deletemenu_all; |
|
972 }, |
|
973 MENU_ITEM |
|
974 { |
|
975 command = ECmdDeleteCreatorContactGroups; |
|
976 txt = string_creator_deletemenu_by_creator; |
|
977 } |
|
978 }; |
|
979 } |
|
980 |
|
981 |
|
982 // --------------------------------------------------------- |
|
983 // |
|
984 // r_creator_about_dialog |
|
985 // About dialog - show version and copyright info etc. |
|
986 // |
|
987 // --------------------------------------------------------- |
|
988 // |
|
989 |
|
990 RESOURCE DIALOG r_creator_about_dialog |
|
991 { |
|
992 flags = EGeneralQueryFlags | EEikDialogFlagNoBorder | EEikDialogFlagNoShadow; |
|
993 buttons = R_AVKON_SOFTKEYS_OK_EMPTY; |
|
994 items= |
|
995 { |
|
996 DLG_LINE |
|
997 { |
|
998 type = EAknCtPopupHeadingPane; |
|
999 id = EAknMessageQueryHeaderId; |
|
1000 control = AVKON_HEADING |
|
1001 { |
|
1002 label = "About Creator"; |
|
1003 headinglayout = R_AVKON_WML_SIGN_QUERY_HEADING_PANE; |
|
1004 }; |
|
1005 }, |
|
1006 DLG_LINE |
|
1007 { |
|
1008 type = EAknCtMessageQuery; |
|
1009 id = EAknMessageQueryContentId; |
|
1010 control = AVKON_MESSAGE_QUERY |
|
1011 { |
|
1012 message = "Version 5.3.5 - 30th October 2009. Copyright © 2009 Nokia Corporation and/or its subsidiary(-ies). All rights reserved. Licensed under Eclipse Public License v1.0."; |
|
1013 }; |
|
1014 } |
|
1015 }; |
|
1016 } |
|
1017 |
|
1018 |
|
1019 // --------------------------------------------------------- |
|
1020 // |
|
1021 // r_entry_query |
|
1022 // Dialog to query the amount of entries to create |
|
1023 // |
|
1024 // --------------------------------------------------------- |
|
1025 // |
|
1026 |
|
1027 |
|
1028 RESOURCE DIALOG r_entry_query |
|
1029 { |
|
1030 flags = EGeneralQueryFlags; |
|
1031 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1032 items = |
|
1033 { |
|
1034 DLG_LINE |
|
1035 { |
|
1036 type = EAknCtQuery; |
|
1037 id = EGeneralQuery; |
|
1038 control= AVKON_DATA_QUERY |
|
1039 { |
|
1040 layout = ENumberLayout; |
|
1041 label = "Insert label to ExecuteLD"; |
|
1042 control = AVKON_INTEGER_EDWIN |
|
1043 { |
|
1044 min = 0; |
|
1045 max = 9999; |
|
1046 }; |
|
1047 }; |
|
1048 } |
|
1049 }; |
|
1050 } |
|
1051 |
|
1052 |
|
1053 // --------------------------------------------------------- |
|
1054 // |
|
1055 // r_start_date_query |
|
1056 // Dialog to query a start date |
|
1057 // |
|
1058 // --------------------------------------------------------- |
|
1059 // |
|
1060 |
|
1061 RESOURCE DIALOG r_start_date_query |
|
1062 { |
|
1063 flags = EGeneralQueryFlags; |
|
1064 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1065 items = |
|
1066 { |
|
1067 DLG_LINE |
|
1068 { |
|
1069 type = EAknCtQuery; |
|
1070 id = EGeneralQuery; |
|
1071 control= AVKON_DATA_QUERY |
|
1072 { |
|
1073 layout = EDateLayout; |
|
1074 label = "Start date of creation period"; |
|
1075 control = DATE_EDITOR |
|
1076 { |
|
1077 minDate = DATE |
|
1078 { |
|
1079 year = 1900; |
|
1080 }; |
|
1081 maxDate = DATE |
|
1082 { |
|
1083 year = 3000; |
|
1084 }; |
|
1085 flags = 0; |
|
1086 }; |
|
1087 }; |
|
1088 } |
|
1089 }; |
|
1090 } |
|
1091 |
|
1092 // --------------------------------------------------------- |
|
1093 // |
|
1094 // r_end_date_query |
|
1095 // Dialog to query a start date |
|
1096 // |
|
1097 // --------------------------------------------------------- |
|
1098 // |
|
1099 |
|
1100 RESOURCE DIALOG r_end_date_query |
|
1101 { |
|
1102 flags = EGeneralQueryFlags; |
|
1103 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1104 items = |
|
1105 { |
|
1106 DLG_LINE |
|
1107 { |
|
1108 type = EAknCtQuery; |
|
1109 id = EGeneralQuery; |
|
1110 control= AVKON_DATA_QUERY |
|
1111 { |
|
1112 layout = EDateLayout; |
|
1113 label = "End date of creation period"; |
|
1114 control = DATE_EDITOR |
|
1115 { |
|
1116 minDate = DATE |
|
1117 { |
|
1118 year = 1900; |
|
1119 }; |
|
1120 maxDate = DATE |
|
1121 { |
|
1122 year = 3000; |
|
1123 }; |
|
1124 flags = 0; |
|
1125 }; |
|
1126 }; |
|
1127 } |
|
1128 }; |
|
1129 } |
|
1130 |
|
1131 // --------------------------------------------------------- |
|
1132 // |
|
1133 // r_contact_creation_type_query |
|
1134 // Dialog to query a contact creation type |
|
1135 // |
|
1136 // --------------------------------------------------------- |
|
1137 // |
|
1138 |
|
1139 RESOURCE DIALOG r_contact_creation_type_query |
|
1140 { |
|
1141 flags = EGeneralQueryFlags; |
|
1142 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1143 items = |
|
1144 { |
|
1145 AVKON_LIST_QUERY_DLG_LINE |
|
1146 { |
|
1147 control= AVKON_LIST_QUERY_CONTROL |
|
1148 { |
|
1149 listtype = EAknCtSinglePopupMenuListBox; |
|
1150 listbox = AVKON_LIST_QUERY_LIST |
|
1151 { |
|
1152 array_id = r_contact_creation_type_query_array; |
|
1153 }; |
|
1154 heading = "Fields in contact"; |
|
1155 }; |
|
1156 } |
|
1157 }; |
|
1158 } |
|
1159 |
|
1160 RESOURCE ARRAY r_contact_creation_type_query_array |
|
1161 { |
|
1162 items = |
|
1163 { |
|
1164 LBUF {txt = "Default fields"; }, |
|
1165 LBUF {txt = "Define..."; } |
|
1166 }; |
|
1167 } |
|
1168 |
|
1169 |
|
1170 // --------------------------------------------------------- |
|
1171 // |
|
1172 // r_message_type_query |
|
1173 // Dialog to query a message type |
|
1174 // |
|
1175 // --------------------------------------------------------- |
|
1176 // |
|
1177 |
|
1178 RESOURCE DIALOG r_message_type_query |
|
1179 { |
|
1180 flags = EGeneralQueryFlags; |
|
1181 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1182 items = |
|
1183 { |
|
1184 AVKON_LIST_QUERY_DLG_LINE |
|
1185 { |
|
1186 control= AVKON_LIST_QUERY_CONTROL |
|
1187 { |
|
1188 listtype = EAknCtSinglePopupMenuListBox; |
|
1189 listbox = AVKON_LIST_QUERY_LIST |
|
1190 { |
|
1191 array_id = r_message_type_query_array; |
|
1192 }; |
|
1193 heading = "Message type"; |
|
1194 }; |
|
1195 } |
|
1196 }; |
|
1197 } |
|
1198 |
|
1199 RESOURCE ARRAY r_message_type_query_array |
|
1200 { |
|
1201 items = |
|
1202 { |
|
1203 LBUF {txt = "SMS"; }, |
|
1204 LBUF {txt = "MMS"; }, |
|
1205 LBUF {txt = "AMS"; }, |
|
1206 LBUF {txt = "Email"; }, |
|
1207 LBUF {txt = "Smart Message"; }, |
|
1208 LBUF {txt = "IR Message"; }, |
|
1209 LBUF {txt = "BT Message"; } |
|
1210 }; |
|
1211 } |
|
1212 |
|
1213 // --------------------------------------------------------- |
|
1214 // |
|
1215 // r_folder_type_query |
|
1216 // Dialog to query a message type |
|
1217 // |
|
1218 // --------------------------------------------------------- |
|
1219 // |
|
1220 |
|
1221 RESOURCE DIALOG r_folder_type_query |
|
1222 { |
|
1223 flags = EGeneralQueryFlags; |
|
1224 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1225 items = |
|
1226 { |
|
1227 AVKON_LIST_QUERY_DLG_LINE |
|
1228 { |
|
1229 control= AVKON_LIST_QUERY_CONTROL |
|
1230 { |
|
1231 listtype = EAknCtSinglePopupMenuListBox; |
|
1232 listbox = AVKON_LIST_QUERY_LIST |
|
1233 { |
|
1234 array_id = r_folder_type_query_array; |
|
1235 }; |
|
1236 heading = "Folder type"; |
|
1237 }; |
|
1238 } |
|
1239 }; |
|
1240 } |
|
1241 |
|
1242 RESOURCE ARRAY r_folder_type_query_array |
|
1243 { |
|
1244 items = |
|
1245 { |
|
1246 LBUF {txt = "Inbox"; }, |
|
1247 LBUF {txt = "Drafts"; }, |
|
1248 LBUF {txt = "Outbox"; }, |
|
1249 LBUF {txt = "Sent"; } |
|
1250 }; |
|
1251 } |
|
1252 |
|
1253 // --------------------------------------------------------- |
|
1254 // |
|
1255 // r_folder_type_with_mailbox_query |
|
1256 // Dialog to query a message type |
|
1257 // |
|
1258 // --------------------------------------------------------- |
|
1259 // |
|
1260 RESOURCE DIALOG r_folder_type_with_mailbox_query |
|
1261 { |
|
1262 flags = EGeneralQueryFlags; |
|
1263 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1264 items = |
|
1265 { |
|
1266 AVKON_LIST_QUERY_DLG_LINE |
|
1267 { |
|
1268 control= AVKON_LIST_QUERY_CONTROL |
|
1269 { |
|
1270 listtype = EAknCtSinglePopupMenuListBox; |
|
1271 listbox = AVKON_LIST_QUERY_LIST |
|
1272 { |
|
1273 array_id = r_folder_type_with_mailbox_query_array; |
|
1274 }; |
|
1275 heading = "Folder type"; |
|
1276 }; |
|
1277 } |
|
1278 }; |
|
1279 } |
|
1280 RESOURCE ARRAY r_folder_type_with_mailbox_query_array |
|
1281 { |
|
1282 items = |
|
1283 { |
|
1284 LBUF {txt = "Inbox"; }, |
|
1285 LBUF {txt = "Drafts"; }, |
|
1286 LBUF {txt = "Outbox"; }, |
|
1287 LBUF {txt = "Sent"; }, |
|
1288 LBUF {txt = "Mailbox..."; } |
|
1289 }; |
|
1290 } |
|
1291 |
|
1292 // --------------------------------------------------------- |
|
1293 // |
|
1294 // r_app_selection_query |
|
1295 // |
|
1296 // |
|
1297 // --------------------------------------------------------- |
|
1298 // |
|
1299 RESOURCE DIALOG r_mailbox_selection_query |
|
1300 { |
|
1301 flags = EGeneralQueryFlags; |
|
1302 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1303 items = |
|
1304 { |
|
1305 AVKON_LIST_QUERY_DLG_LINE |
|
1306 { |
|
1307 control= AVKON_LIST_QUERY_CONTROL |
|
1308 { |
|
1309 listtype = EAknCtSinglePopupMenuListBox; |
|
1310 listbox = AVKON_LIST_QUERY_LIST |
|
1311 { |
|
1312 }; |
|
1313 heading = "Choose mailbox:"; |
|
1314 }; |
|
1315 } |
|
1316 }; |
|
1317 } |
|
1318 |
|
1319 // --------------------------------------------------------- |
|
1320 // |
|
1321 // r_unread_type_query |
|
1322 // Dialog to query whether to create the message unread or not |
|
1323 // |
|
1324 // --------------------------------------------------------- |
|
1325 // |
|
1326 |
|
1327 RESOURCE DIALOG r_unread_query |
|
1328 { |
|
1329 flags = EGeneralQueryFlags; |
|
1330 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1331 items = |
|
1332 { |
|
1333 AVKON_LIST_QUERY_DLG_LINE |
|
1334 { |
|
1335 control= AVKON_LIST_QUERY_CONTROL |
|
1336 { |
|
1337 listtype = EAknCtSinglePopupMenuListBox; |
|
1338 listbox = AVKON_LIST_QUERY_LIST |
|
1339 { |
|
1340 array_id = r_unread_query_array; |
|
1341 }; |
|
1342 heading = "Message status"; |
|
1343 }; |
|
1344 } |
|
1345 }; |
|
1346 } |
|
1347 |
|
1348 RESOURCE ARRAY r_unread_query_array |
|
1349 { |
|
1350 items = |
|
1351 { |
|
1352 LBUF {txt = "Read"; }, |
|
1353 LBUF {txt = "New"; } |
|
1354 }; |
|
1355 } |
|
1356 |
|
1357 // --------------------------------------------------------- |
|
1358 // |
|
1359 // r_attachment_single_selection_query |
|
1360 // r_attachment_multi_selection_query |
|
1361 // Dialogs to query attachments |
|
1362 // |
|
1363 // --------------------------------------------------------- |
|
1364 // |
|
1365 |
|
1366 RESOURCE DIALOG r_attachment_single_selection_query |
|
1367 { |
|
1368 flags = EGeneralQueryFlags; |
|
1369 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1370 items = |
|
1371 { |
|
1372 AVKON_LIST_QUERY_DLG_LINE |
|
1373 { |
|
1374 control= AVKON_LIST_QUERY_CONTROL |
|
1375 { |
|
1376 listtype = EAknCtSinglePopupMenuListBox; |
|
1377 listbox = AVKON_LIST_QUERY_LIST |
|
1378 { |
|
1379 array_id = r_attachment_query_array; |
|
1380 }; |
|
1381 heading = "Choose attachment:"; |
|
1382 }; |
|
1383 } |
|
1384 }; |
|
1385 } |
|
1386 |
|
1387 RESOURCE DIALOG r_ams_attachment_single_selection_query |
|
1388 { |
|
1389 flags = EGeneralQueryFlags; |
|
1390 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1391 items = |
|
1392 { |
|
1393 AVKON_LIST_QUERY_DLG_LINE |
|
1394 { |
|
1395 control= AVKON_LIST_QUERY_CONTROL |
|
1396 { |
|
1397 listtype = EAknCtSinglePopupMenuListBox; |
|
1398 listbox = AVKON_LIST_QUERY_LIST |
|
1399 { |
|
1400 array_id = r_ams_attachment_query_array; |
|
1401 }; |
|
1402 heading = "Choose attachment:"; |
|
1403 }; |
|
1404 } |
|
1405 }; |
|
1406 } |
|
1407 |
|
1408 |
|
1409 RESOURCE DIALOG r_attachment_multi_selection_query |
|
1410 { |
|
1411 flags = EGeneralQueryFlags; |
|
1412 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1413 items = |
|
1414 { |
|
1415 AVKON_MULTISELECTION_LIST_QUERY_DLG_LINE |
|
1416 { |
|
1417 control= AVKON_LIST_QUERY_CONTROL |
|
1418 { |
|
1419 listtype = EAknCtSingleGraphicPopupMenuListBox; |
|
1420 listbox = AVKON_MULTISELECTION_LIST_QUERY_LIST |
|
1421 { |
|
1422 array_id = r_attachment_multiselection_query_array; |
|
1423 }; |
|
1424 heading = "Choose attachments:"; |
|
1425 }; |
|
1426 } |
|
1427 }; |
|
1428 } |
|
1429 |
|
1430 |
|
1431 RESOURCE ARRAY r_attachment_query_array |
|
1432 { |
|
1433 items = |
|
1434 { |
|
1435 LBUF {txt = "JPEG 25kB"; }, |
|
1436 LBUF {txt = "JPEG 300kB"; }, |
|
1437 LBUF {txt = "JPEG 500kB"; }, |
|
1438 LBUF {txt = "PNG 15kB"; }, |
|
1439 LBUF {txt = "GIF 2kB"; }, |
|
1440 LBUF {txt = "RNG 1kB"; }, |
|
1441 LBUF {txt = "MIDI 10kB"; }, |
|
1442 LBUF {txt = "WAVE 20kB"; }, |
|
1443 LBUF {txt = "AMR 20kB"; }, |
|
1444 LBUF {txt = "Excel 15kB"; }, |
|
1445 LBUF {txt = "Word 20kB"; }, |
|
1446 LBUF {txt = "PowerPoint 40kB"; }, |
|
1447 LBUF {txt = "Text 10kB"; }, |
|
1448 LBUF {txt = "Text 70kB"; }, |
|
1449 LBUF {txt = "3GPP 70kB"; }, |
|
1450 LBUF {txt = "MP3 250kB"; }, |
|
1451 LBUF {txt = "AAC 100kB"; }, |
|
1452 LBUF {txt = "RM 95kB"; } |
|
1453 }; |
|
1454 } |
|
1455 |
|
1456 RESOURCE ARRAY r_ams_attachment_query_array |
|
1457 { |
|
1458 items = |
|
1459 { |
|
1460 LBUF {txt = "AMR 20kB"; } |
|
1461 }; |
|
1462 } |
|
1463 |
|
1464 RESOURCE ARRAY r_attachment_multiselection_query_array |
|
1465 { |
|
1466 items = |
|
1467 { |
|
1468 LBUF {txt = "1\tNone"; }, |
|
1469 LBUF {txt = "1\tJPEG 25kB"; }, |
|
1470 LBUF {txt = "1\tJPEG 200kB"; }, |
|
1471 LBUF {txt = "1\tJPEG 500kB"; }, |
|
1472 LBUF {txt = "1\tPNG 15kB"; }, |
|
1473 LBUF {txt = "1\tGIF 2kB"; }, |
|
1474 LBUF {txt = "1\tRNG 1kB"; }, |
|
1475 LBUF {txt = "1\tMIDI 10kB"; }, |
|
1476 LBUF {txt = "1\tWAVE 20kB"; }, |
|
1477 LBUF {txt = "1\tAMR 20kB"; }, |
|
1478 LBUF {txt = "1\tExcel 15kB"; }, |
|
1479 LBUF {txt = "1\tWord 20kB"; }, |
|
1480 LBUF {txt = "1\tPowerPoint 40kB"; }, |
|
1481 LBUF {txt = "1\tText 10kB"; }, |
|
1482 LBUF {txt = "1\tText 70kB"; }, |
|
1483 LBUF {txt = "1\t3GPP 70kB"; }, |
|
1484 LBUF {txt = "1\tMP3 250kB"; }, |
|
1485 LBUF {txt = "1\tAAC 100kB"; }, |
|
1486 LBUF {txt = "1\tRM 95kB"; }, |
|
1487 LBUF {txt = "1\tBMP 25kB"; }, |
|
1488 LBUF {txt = "1\tHTML 20kB"; }, |
|
1489 LBUF {txt = "1\tJAD 1kB"; }, |
|
1490 LBUF {txt = "1\tJAR 10kB"; }, |
|
1491 LBUF {txt = "1\tJP2 65kB"; }, |
|
1492 LBUF {txt = "1\tMP4 200kB"; }, |
|
1493 LBUF {txt = "1\tMXMF 40kB"; }, |
|
1494 LBUF {txt = "1\tRAM 1kB"; }, |
|
1495 LBUF {txt = "1\tSVG 15kB"; }, |
|
1496 LBUF {txt = "1\tSWF 15kB"; }, |
|
1497 LBUF {txt = "1\tTIF 25kB"; }, |
|
1498 LBUF {txt = "1\tVCF 1kB"; }, |
|
1499 LBUF {txt = "1\tVCS 1kB"; }, |
|
1500 LBUF {txt = "1\tSISX 10kB"; } |
|
1501 }; |
|
1502 } |
|
1503 |
|
1504 // --------------------------------------------------------- |
|
1505 // |
|
1506 // r_group_creation_type_query |
|
1507 // Dialog to query a group creation type |
|
1508 // |
|
1509 // --------------------------------------------------------- |
|
1510 // |
|
1511 |
|
1512 RESOURCE DIALOG r_group_creation_type_query |
|
1513 { |
|
1514 flags = EGeneralQueryFlags; |
|
1515 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1516 items = |
|
1517 { |
|
1518 AVKON_LIST_QUERY_DLG_LINE |
|
1519 { |
|
1520 control= AVKON_LIST_QUERY_CONTROL |
|
1521 { |
|
1522 listtype = EAknCtSinglePopupMenuListBox; |
|
1523 listbox = AVKON_LIST_QUERY_LIST |
|
1524 { |
|
1525 array_id = r_group_creation_type_query_array; |
|
1526 }; |
|
1527 heading = "Fields in contact"; |
|
1528 }; |
|
1529 } |
|
1530 }; |
|
1531 } |
|
1532 |
|
1533 RESOURCE ARRAY r_group_creation_type_query_array |
|
1534 { |
|
1535 items = |
|
1536 { |
|
1537 LBUF {txt = "Random"; }, |
|
1538 LBUF {txt = "Define..."; } |
|
1539 }; |
|
1540 } |
|
1541 |
|
1542 // --------------------------------------------------------- |
|
1543 // |
|
1544 // r_directory_query |
|
1545 // Dialog to query the directory from the user |
|
1546 // |
|
1547 // --------------------------------------------------------- |
|
1548 // |
|
1549 |
|
1550 |
|
1551 RESOURCE DIALOG r_directory_query |
|
1552 { |
|
1553 flags = EGeneralQueryFlags; |
|
1554 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
1555 items = |
|
1556 { |
|
1557 DLG_LINE |
|
1558 { |
|
1559 type = EAknCtQuery; |
|
1560 id = EGeneralQuery; |
|
1561 control= AVKON_DATA_QUERY |
|
1562 { |
|
1563 layout = EDataLayout; |
|
1564 label = "Specify the directory"; |
|
1565 control = EDWIN |
|
1566 { |
|
1567 }; |
|
1568 }; |
|
1569 } |
|
1570 }; |
|
1571 } |
|
1572 |
|
1573 |
|
1574 // |
|
1575 // --------------------------------------------------------- |
|
1576 // |
|
1577 |
|
1578 RESOURCE DIALOG r_progress_note |
|
1579 { |
|
1580 flags = EAknProgressNoteFlags; |
|
1581 buttons = R_AVKON_SOFTKEYS_CANCEL; |
|
1582 items= |
|
1583 { |
|
1584 DLG_LINE |
|
1585 { |
|
1586 type = EAknCtNote; |
|
1587 id = EProgressNote; |
|
1588 control= AVKON_NOTE |
|
1589 { |
|
1590 layout = EProgressLayout; |
|
1591 imagefile = AVKON_ICON_FILE; |
|
1592 imageid = EMbmAvkonQgn_note_progress; |
|
1593 imagemask = EMbmAvkonQgn_note_progress_mask; |
|
1594 }; |
|
1595 } |
|
1596 }; |
|
1597 } |
|
1598 |
|
1599 // --------------------------------------------------------- |
|
1600 |
|
1601 RESOURCE ARRAY r_data_firstnames |
|
1602 { |
|
1603 items= |
|
1604 { |
|
1605 LBUF { txt="John"; }, |
|
1606 LBUF { txt="Francis"; }, |
|
1607 LBUF { txt="Andrew"; }, |
|
1608 LBUF { txt="Lawrence"; }, |
|
1609 LBUF { txt="Gregory"; }, |
|
1610 LBUF { txt="Fulke"; }, |
|
1611 LBUF { txt="Thomas"; }, |
|
1612 LBUF { txt="Nicholas"; }, |
|
1613 LBUF { txt="Hakle"; }, |
|
1614 LBUF { txt="Roger"; }, |
|
1615 LBUF { txt="Nathaniel"; }, |
|
1616 LBUF { txt="Luke"; }, |
|
1617 LBUF { txt="William"; }, |
|
1618 LBUF { txt="Ralph"; }, |
|
1619 LBUF { txt="Leonar"; }, |
|
1620 LBUF { txt="Daniel"; }, |
|
1621 LBUF { txt="Aban"; }, |
|
1622 LBUF { txt="Mathias"; }, |
|
1623 LBUF { txt="Robert"; }, |
|
1624 LBUF { txt="Christopher"; }, |
|
1625 LBUF { txt="Martin"; }, |
|
1626 LBUF { txt="Michael"; }, |
|
1627 LBUF { txt="Barnaby"; }, |
|
1628 LBUF { txt="Tobias"; }, |
|
1629 LBUF { txt="Richard"; }, |
|
1630 LBUF { txt="Anthony"; }, |
|
1631 LBUF { txt="Simon"; }, |
|
1632 LBUF { txt="Samuel"; }, |
|
1633 LBUF { txt="Geoffrey"; }, |
|
1634 LBUF { txt="Isaac"; }, |
|
1635 LBUF { txt="Henry"; }, |
|
1636 LBUF { txt="Matthew"; }, |
|
1637 LBUF { txt="Peter"; }, |
|
1638 LBUF { txt="Allen"; }, |
|
1639 LBUF { txt="Reynold"; }, |
|
1640 LBUF { txt="Jerome"; }, |
|
1641 LBUF { txt="Elizabeth"; }, |
|
1642 LBUF { txt="Catherine"; }, |
|
1643 LBUF { txt="Frances"; }, |
|
1644 LBUF { txt="Cecily"; }, |
|
1645 LBUF { txt="Millicent"; }, |
|
1646 LBUF { txt="Audrey"; }, |
|
1647 LBUF { txt="Joan"; }, |
|
1648 LBUF { txt="Elinor"; }, |
|
1649 LBUF { txt="Joyce"; }, |
|
1650 LBUF { txt="Frideswide"; }, |
|
1651 LBUF { txt="Rose"; }, |
|
1652 LBUF { txt="Helen"; }, |
|
1653 LBUF { txt="Margaret"; }, |
|
1654 LBUF { txt="Isabel"; }, |
|
1655 LBUF { txt="Bridget"; }, |
|
1656 LBUF { txt="Grace"; }, |
|
1657 LBUF { txt="Thomasin"; }, |
|
1658 LBUF { txt="Janet"; }, |
|
1659 LBUF { txt="Agnes"; }, |
|
1660 LBUF { txt="Dorothy"; }, |
|
1661 LBUF { txt="Christian"; }, |
|
1662 LBUF { txt="Amy"; }, |
|
1663 LBUF { txt="Fortune"; }, |
|
1664 LBUF { txt="Sybil"; }, |
|
1665 LBUF { txt="Alice"; }, |
|
1666 LBUF { txt="Margery"; }, |
|
1667 LBUF { txt="Edith"; }, |
|
1668 LBUF { txt="Barbara"; }, |
|
1669 LBUF { txt="Gillian"; }, |
|
1670 LBUF { txt="Ursula"; } |
|
1671 }; |
|
1672 } |
|
1673 |
|
1674 RESOURCE ARRAY r_data_surnames |
|
1675 { |
|
1676 items= |
|
1677 { |
|
1678 LBUF { txt="Lux"; }, |
|
1679 LBUF { txt="Mandot"; }, |
|
1680 LBUF { txt="Mansfield"; }, |
|
1681 LBUF { txt="Mayberry"; }, |
|
1682 LBUF { txt="McCarrel"; }, |
|
1683 LBUF { txt="McDaniel"; }, |
|
1684 LBUF { txt="Mefford"; }, |
|
1685 LBUF { txt="Metcalf"; }, |
|
1686 LBUF { txt="Metchell"; }, |
|
1687 LBUF { txt="Moller"; }, |
|
1688 LBUF { txt="Margan"; }, |
|
1689 LBUF { txt="Keaney"; }, |
|
1690 LBUF { txt="Kenyon"; }, |
|
1691 LBUF { txt="Kesler"; }, |
|
1692 LBUF { txt="Kinman"; }, |
|
1693 LBUF { txt="Kreinert"; }, |
|
1694 LBUF { txt="Kummerlin"; }, |
|
1695 LBUF { txt="Lamgley"; }, |
|
1696 LBUF { txt="Leas"; }, |
|
1697 LBUF { txt="Leighton"; }, |
|
1698 LBUF { txt="Lillie"; }, |
|
1699 LBUF { txt="Hilms"; }, |
|
1700 LBUF { txt="Holt"; }, |
|
1701 LBUF { txt="Hosier"; }, |
|
1702 LBUF { txt="Howard"; }, |
|
1703 LBUF { txt="Hypes"; }, |
|
1704 LBUF { txt="Jacmor"; }, |
|
1705 LBUF { txt="Behnson"; }, |
|
1706 LBUF { txt="Kammer"; }, |
|
1707 LBUF { txt="Patts"; }, |
|
1708 LBUF { txt="West"; }, |
|
1709 LBUF { txt="Wilbar"; }, |
|
1710 LBUF { txt="Witsan"; }, |
|
1711 LBUF { txt="Gillams"; }, |
|
1712 LBUF { txt="Good"; }, |
|
1713 LBUF { txt="Wreght"; }, |
|
1714 LBUF { txt="Worthley"; }, |
|
1715 LBUF { txt="Adams"; }, |
|
1716 LBUF { txt="Allen"; }, |
|
1717 LBUF { txt="Ansley"; }, |
|
1718 LBUF { txt="Ayries"; }, |
|
1719 LBUF { txt="Bartlett"; }, |
|
1720 LBUF { txt="Barton"; }, |
|
1721 LBUF { txt="Payne"; }, |
|
1722 LBUF { txt="Pintard"; }, |
|
1723 LBUF { txt="Prence"; }, |
|
1724 LBUF { txt="Richards"; }, |
|
1725 LBUF { txt="Dillman"; }, |
|
1726 LBUF { txt="Dory"; }, |
|
1727 LBUF { txt="Edgards"; }, |
|
1728 LBUF { txt="Engell"; }, |
|
1729 LBUF { txt="Farprington"; }, |
|
1730 LBUF { txt="Fisher"; }, |
|
1731 LBUF { txt="Foed"; }, |
|
1732 LBUF { txt="Burges"; }, |
|
1733 LBUF { txt="Childwall"; }, |
|
1734 LBUF { txt="Smith"; }, |
|
1735 LBUF { txt="Sipon"; }, |
|
1736 LBUF { txt="Simmons"; }, |
|
1737 LBUF { txt="Stewert"; }, |
|
1738 LBUF { txt="Stiles"; }, |
|
1739 LBUF { txt="Stratton"; }, |
|
1740 LBUF { txt="Dennis"; }, |
|
1741 LBUF { txt="Talmot"; } |
|
1742 }; |
|
1743 } |
|
1744 |
|
1745 RESOURCE ARRAY r_data_companies |
|
1746 { |
|
1747 items= |
|
1748 { |
|
1749 LBUF { txt="CDP"; }, |
|
1750 LBUF { txt="Exbox"; }, |
|
1751 LBUF { txt="Munro"; }, |
|
1752 LBUF { txt="Majaka"; }, |
|
1753 LBUF { txt="Bitzumi"; }, |
|
1754 LBUF { txt="Melroy"; }, |
|
1755 LBUF { txt="Matal"; }, |
|
1756 LBUF { txt="Japponi"; }, |
|
1757 LBUF { txt="Siwaka"; }, |
|
1758 LBUF { txt="Keiku"; }, |
|
1759 LBUF { txt="Naamate"; }, |
|
1760 LBUF { txt="Remonti"; }, |
|
1761 LBUF { txt="Melleva"; }, |
|
1762 LBUF { txt="WEX"; }, |
|
1763 LBUF { txt="Chataz"; }, |
|
1764 LBUF { txt="Ponly"; }, |
|
1765 LBUF { txt="Alriva"; }, |
|
1766 LBUF { txt="Giate"; }, |
|
1767 LBUF { txt="Kesso"; }, |
|
1768 LBUF { txt="Nyssa"; }, |
|
1769 LBUF { txt="Peger"; }, |
|
1770 LBUF { txt="Metrio"; }, |
|
1771 LBUF { txt="Mitchitatchi"; }, |
|
1772 LBUF { txt="Neppari"; }, |
|
1773 LBUF { txt="Amcuila"; }, |
|
1774 LBUF { txt="Muipitsu"; }, |
|
1775 LBUF { txt="Redex"; }, |
|
1776 LBUF { txt="Maariz"; }, |
|
1777 LBUF { txt="Swerck"; }, |
|
1778 LBUF { txt="Makiac"; }, |
|
1779 LBUF { txt="Dumpia"; }, |
|
1780 LBUF { txt="Worldmom"; }, |
|
1781 LBUF { txt="Renfaul"; }, |
|
1782 LBUF { txt="Kmartissori"; }, |
|
1783 LBUF { txt="Findo"; }, |
|
1784 LBUF { txt="Samsanc"; }, |
|
1785 LBUF { txt="Dellervo"; }, |
|
1786 LBUF { txt="Manrel"; }, |
|
1787 LBUF { txt="WSMRL"; }, |
|
1788 LBUF { txt="Eripox"; }, |
|
1789 LBUF { txt="Abiturien"; }, |
|
1790 LBUF { txt="Vesus"; }, |
|
1791 LBUF { txt="MI4"; }, |
|
1792 LBUF { txt="Overhiba"; }, |
|
1793 LBUF { txt="Tridune"; }, |
|
1794 LBUF { txt="Kyomcera"; }, |
|
1795 LBUF { txt="Praston"; }, |
|
1796 LBUF { txt="Gapmis"; }, |
|
1797 LBUF { txt="WPPDCD"; } |
|
1798 }; |
|
1799 } |
|
1800 |
|
1801 RESOURCE ARRAY r_data_addresses |
|
1802 { |
|
1803 items= |
|
1804 { |
|
1805 LBUF { txt="Barnes Street"; }, |
|
1806 LBUF { txt="Barnes Place"; }, |
|
1807 LBUF { txt="Eastman Street"; }, |
|
1808 LBUF { txt="West Park"; }, |
|
1809 LBUF { txt="South Park"; }, |
|
1810 LBUF { txt="Park Avenue"; }, |
|
1811 LBUF { txt="Richards Court"; }, |
|
1812 LBUF { txt="Pukershire Avenue"; }, |
|
1813 LBUF { txt="Ellis Avenue"; }, |
|
1814 LBUF { txt="East Mountain"; }, |
|
1815 LBUF { txt="Chestnut Hill"; }, |
|
1816 LBUF { txt="Plains Road"; }, |
|
1817 LBUF { txt="Fremont Street"; }, |
|
1818 LBUF { txt="Heritage Court"; }, |
|
1819 LBUF { txt="Highland Avenue Extension"; }, |
|
1820 LBUF { txt="Maple Heights"; }, |
|
1821 LBUF { txt="McKenzie Avenue"; }, |
|
1822 LBUF { txt="McKenzie Lane"; }, |
|
1823 LBUF { txt="West Terrace Street"; }, |
|
1824 LBUF { txt="Windsor Avenue"; }, |
|
1825 LBUF { txt="Windsor Road"; }, |
|
1826 LBUF { txt="Mechanic Street Extension"; }, |
|
1827 LBUF { txt="Granite Place"; }, |
|
1828 LBUF { txt="Meadow Street"; }, |
|
1829 LBUF { txt="Sugar River"; } |
|
1830 }; |
|
1831 } |
|
1832 |
|
1833 RESOURCE ARRAY r_data_cities |
|
1834 { |
|
1835 items= |
|
1836 { |
|
1837 LBUF { txt="Kuopio"; }, |
|
1838 LBUF { txt="Los Angeles"; }, |
|
1839 LBUF { txt="Lappeenranta"; }, |
|
1840 LBUF { txt="London"; }, |
|
1841 LBUF { txt="Bangkok"; }, |
|
1842 LBUF { txt="St. Michel"; }, |
|
1843 LBUF { txt="St. Petersburg"; }, |
|
1844 LBUF { txt="Tokyo"; }, |
|
1845 LBUF { txt="Helsinki"; }, |
|
1846 LBUF { txt="Trondheim"; }, |
|
1847 LBUF { txt="Nairobi"; }, |
|
1848 LBUF { txt="Havana"; } |
|
1849 }; |
|
1850 } |
|
1851 |
|
1852 RESOURCE ARRAY r_data_countries |
|
1853 { |
|
1854 items= |
|
1855 { |
|
1856 LBUF { txt="Finland"; }, |
|
1857 LBUF { txt="Cuba"; }, |
|
1858 LBUF { txt="United States of America"; }, |
|
1859 LBUF { txt="Thailand"; }, |
|
1860 LBUF { txt="Sweden"; }, |
|
1861 LBUF { txt="Russia"; }, |
|
1862 LBUF { txt="Japan"; }, |
|
1863 LBUF { txt="Norway"; }, |
|
1864 LBUF { txt="Kenya"; } |
|
1865 }; |
|
1866 } |
|
1867 |
|
1868 RESOURCE ARRAY r_data_postcodes |
|
1869 { |
|
1870 items= |
|
1871 { |
|
1872 LBUF { txt="00310"; }, |
|
1873 LBUF { txt="FI-70100"; }, |
|
1874 LBUF { txt="99002"; }, |
|
1875 LBUF { txt="11233"; } |
|
1876 }; |
|
1877 } |
|
1878 |
|
1879 RESOURCE ARRAY r_data_states |
|
1880 { |
|
1881 items= |
|
1882 { |
|
1883 LBUF { txt="California state"; }, |
|
1884 LBUF { txt="Alaska state"; }, |
|
1885 LBUF { txt="Florida state"; } |
|
1886 }; |
|
1887 } |
|
1888 |
|
1889 RESOURCE ARRAY r_data_poboxes |
|
1890 { |
|
1891 items= |
|
1892 { |
|
1893 LBUF { txt="P.O BOX 5532"; }, |
|
1894 LBUF { txt="P.O BOX 701"; }, |
|
1895 LBUF { txt="99"; }, |
|
1896 LBUF { txt="1133"; }, |
|
1897 LBUF { txt="P.O. BOX 113322"; }, |
|
1898 LBUF { txt="112"; } |
|
1899 }; |
|
1900 } |
|
1901 |
|
1902 RESOURCE ARRAY r_data_prefixes |
|
1903 { |
|
1904 items= |
|
1905 { |
|
1906 LBUF { txt="Ms."; }, |
|
1907 LBUF { txt="Mrs."; }, |
|
1908 LBUF { txt="Mr."; }, |
|
1909 LBUF { txt="Dr."; } |
|
1910 |
|
1911 }; |
|
1912 } |
|
1913 |
|
1914 RESOURCE ARRAY r_data_suffixes |
|
1915 { |
|
1916 items= |
|
1917 { |
|
1918 LBUF { txt="Jr."; }, |
|
1919 LBUF { txt="Sr."; } |
|
1920 }; |
|
1921 } |
|
1922 |
|
1923 RESOURCE ARRAY r_data_jobtitles |
|
1924 { |
|
1925 items= |
|
1926 { |
|
1927 LBUF { txt="Doctor"; }, |
|
1928 LBUF { txt="SW Engineer"; }, |
|
1929 LBUF { txt="Administrative Assistant"; }, |
|
1930 LBUF { txt="Bookkeeper"; }, |
|
1931 LBUF { txt="Credit Controller"; }, |
|
1932 LBUF { txt="Data Entry Operator"; }, |
|
1933 LBUF { txt="Payroll Officer"; }, |
|
1934 LBUF { txt="Receptionist"; }, |
|
1935 LBUF { txt="Trainee"; }, |
|
1936 LBUF { txt="Accounts Clerk"; }, |
|
1937 LBUF { txt="Administrator"; }, |
|
1938 LBUF { txt="Taxation Assistant"; }, |
|
1939 LBUF { txt="Financial Director"; }, |
|
1940 LBUF { txt="Bank Manager"; }, |
|
1941 LBUF { txt="Mobile Lending"; }, |
|
1942 LBUF { txt="Overseas Transactions"; }, |
|
1943 LBUF { txt="Restructuring"; }, |
|
1944 LBUF { txt="Business Analyst"; }, |
|
1945 LBUF { txt="Call Centre Manager"; }, |
|
1946 LBUF { txt="Administration"; }, |
|
1947 LBUF { txt="Manager"; }, |
|
1948 LBUF { txt="Student"; }, |
|
1949 LBUF { txt="Mail Sorter"; }, |
|
1950 LBUF { txt="Mayor"; }, |
|
1951 LBUF { txt="Account Servicing"; }, |
|
1952 LBUF { txt="Management"; }, |
|
1953 LBUF { txt="Media Consultant"; }, |
|
1954 LBUF { txt="Newsagent"; }, |
|
1955 LBUF { txt="Librarian"; }, |
|
1956 LBUF { txt="Creative Director"; }, |
|
1957 LBUF { txt="Announcer"; }, |
|
1958 LBUF { txt="Copywriter"; }, |
|
1959 LBUF { txt="Presenter"; }, |
|
1960 LBUF { txt="Promotions Manager"; }, |
|
1961 LBUF { txt="Advertising Sales Representative"; }, |
|
1962 LBUF { txt="Editor"; }, |
|
1963 LBUF { txt="Marketing, Sales & Publicity"; }, |
|
1964 LBUF { txt="Publisher"; }, |
|
1965 LBUF { txt="Gallery Assistant"; }, |
|
1966 LBUF { txt="Photographer"; }, |
|
1967 LBUF { txt="Storyboard Artist"; }, |
|
1968 LBUF { txt="Events Manager"; }, |
|
1969 LBUF { txt="Cameraman"; }, |
|
1970 LBUF { txt="Technician"; }, |
|
1971 LBUF { txt="Producer"; } |
|
1972 }; |
|
1973 } |
|
1974 |
|
1975 RESOURCE ARRAY r_data_phonenumbers |
|
1976 { |
|
1977 items= |
|
1978 { |
|
1979 LBUF { txt="0307834387"; }, |
|
1980 LBUF { txt="0230328732"; }, |
|
1981 LBUF { txt="0430365562"; }, |
|
1982 LBUF { txt="0530328732"; }, |
|
1983 LBUF { txt="0433032865"; }, |
|
1984 LBUF { txt="0542306532"; }, |
|
1985 LBUF { txt="0342303777"; }, |
|
1986 LBUF { txt="0250235603"; }, |
|
1987 LBUF { txt="0492303652"; }, |
|
1988 LBUF { txt="0542303286"; }, |
|
1989 LBUF { txt="0543656546"; }, |
|
1990 LBUF { txt="0545545454"; }, |
|
1991 LBUF { txt="0543444454"; }, |
|
1992 LBUF { txt="0776463255"; }, |
|
1993 LBUF { txt="0432443343"; }, |
|
1994 LBUF { txt="0243334344"; }, |
|
1995 LBUF { txt="0544543443"; }, |
|
1996 LBUF { txt="0231343243"; }, |
|
1997 LBUF { txt="0213443434"; }, |
|
1998 LBUF { txt="0143234476"; }, |
|
1999 LBUF { txt="0785434444"; }, |
|
2000 LBUF { txt="0454445345"; }, |
|
2001 LBUF { txt="0342443433"; }, |
|
2002 LBUF { txt="0432434454"; }, |
|
2003 LBUF { txt="0455454454"; }, |
|
2004 LBUF { txt="0656565655"; }, |
|
2005 LBUF { txt="0343434443"; }, |
|
2006 LBUF { txt="0565645455"; }, |
|
2007 LBUF { txt="0343243243"; }, |
|
2008 LBUF { txt="0565466565"; }, |
|
2009 LBUF { txt="0465565655"; }, |
|
2010 LBUF { txt="0435445454"; }, |
|
2011 LBUF { txt="+35854553456"; }, |
|
2012 LBUF { txt="+35878453486"; }, |
|
2013 LBUF { txt="+35876653456"; }, |
|
2014 LBUF { txt="+35834435486"; }, |
|
2015 LBUF { txt="+35876766466"; }, |
|
2016 LBUF { txt="+4465665456"; }, |
|
2017 LBUF { txt="+4432434334"; }, |
|
2018 LBUF { txt="+4488776776"; }, |
|
2019 LBUF { txt="+4465655656"; }, |
|
2020 LBUF { txt="+4443433434"; }, |
|
2021 LBUF { txt="+4465656565"; }, |
|
2022 LBUF { txt="+4454454354"; } |
|
2023 }; |
|
2024 } |
|
2025 |
|
2026 RESOURCE ARRAY r_data_groupnames |
|
2027 { |
|
2028 items= |
|
2029 { |
|
2030 LBUF { txt="Nice guys"; }, |
|
2031 LBUF { txt="Repairs"; }, |
|
2032 LBUF { txt="Office works"; }, |
|
2033 LBUF { txt="The buddies"; }, |
|
2034 LBUF { txt="Football team"; }, |
|
2035 LBUF { txt="Gold club"; }, |
|
2036 LBUF { txt="Silver club"; }, |
|
2037 LBUF { txt="Bronze club"; }, |
|
2038 LBUF { txt="Best buddies"; }, |
|
2039 LBUF { txt="Rockers"; }, |
|
2040 LBUF { txt="Science group"; } |
|
2041 }; |
|
2042 } |
|
2043 |
|
2044 RESOURCE ARRAY r_data_meetingreasons |
|
2045 { |
|
2046 items= |
|
2047 { |
|
2048 LBUF { txt="Security issues"; }, |
|
2049 LBUF { txt="Team meeting"; }, |
|
2050 LBUF { txt="Discussion about"; }, |
|
2051 LBUF { txt="Work plans"; }, |
|
2052 LBUF { txt="Meeting with the professor"; }, |
|
2053 LBUF { txt="Meeting with the boss"; }, |
|
2054 LBUF { txt="Work issues"; }, |
|
2055 LBUF { txt="New workers"; } |
|
2056 }; |
|
2057 } |
|
2058 |
|
2059 RESOURCE ARRAY r_data_meetingplaces |
|
2060 { |
|
2061 items= |
|
2062 { |
|
2063 LBUF { txt="Room"; }, |
|
2064 LBUF { txt="Home"; }, |
|
2065 LBUF { txt="Auditorium"; }, |
|
2066 LBUF { txt="Company"; } |
|
2067 }; |
|
2068 } |
|
2069 |
|
2070 RESOURCE ARRAY r_data_landmark_names |
|
2071 { |
|
2072 items= |
|
2073 { |
|
2074 LBUF { txt="Good place to fish";}, |
|
2075 LBUF { txt="Uncle over board";}, |
|
2076 LBUF { txt="Best food ever!";}, |
|
2077 LBUF { txt="Nice beach";}, |
|
2078 LBUF { txt="Good hamburgers";}, |
|
2079 LBUF { txt="Nice view";}, |
|
2080 LBUF { txt="John's home";}, |
|
2081 LBUF { txt="Carage";}, |
|
2082 LBUF { txt="Gas station";}, |
|
2083 LBUF { txt="Food store";}, |
|
2084 LBUF { txt="Car wash";}, |
|
2085 LBUF { txt="Summer cottage";}, |
|
2086 LBUF { txt="My home";}, |
|
2087 LBUF { txt="Bank";}, |
|
2088 LBUF { txt="Hospital";}, |
|
2089 LBUF { txt="Ice hall";}, |
|
2090 LBUF { txt="Work place";} |
|
2091 }; |
|
2092 } |
|
2093 |
|
2094 RESOURCE ARRAY r_data_landmark_descriptions |
|
2095 { |
|
2096 items= |
|
2097 { |
|
2098 LBUF { txt="The salmons were really big here!";}, |
|
2099 LBUF { txt="Delicious strawberries sold here. Must visit again sometime!";}, |
|
2100 LBUF { txt="Place looks really nice.";}, |
|
2101 LBUF { txt="This is my favorite place";}, |
|
2102 LBUF { txt="Words are not enough to describe this landmark";}, |
|
2103 LBUF { txt="What a shocking place to visit! Remember to bring camera next time :-)";} |
|
2104 }; |
|
2105 } |
|
2106 |
|
2107 RESOURCE ARRAY r_data_memos |
|
2108 { |
|
2109 items= |
|
2110 { |
|
2111 LBUF { txt="No work today!"; }, |
|
2112 LBUF { txt="Movies tonight"; }, |
|
2113 LBUF { txt="Ship new binaries"; }, |
|
2114 LBUF { txt="New works"; }, |
|
2115 LBUF { txt="Exam"; }, |
|
2116 LBUF { txt="Community service"; }, |
|
2117 LBUF { txt="Volunteer work"; }, |
|
2118 LBUF { txt="Don't forget the dinner at the restaurant"; }, |
|
2119 LBUF { txt="Go the bank"; }, |
|
2120 LBUF { txt="Go to the store"; }, |
|
2121 LBUF { txt="Buy goods"; }, |
|
2122 LBUF { txt="Buy food"; }, |
|
2123 LBUF { txt="Buy new pair of socks"; }, |
|
2124 LBUF { txt="Buy vegetables"; }, |
|
2125 LBUF { txt="Buy fruits"; }, |
|
2126 LBUF { txt="Umbrella"; }, |
|
2127 LBUF { txt="New shoes"; }, |
|
2128 LBUF { txt="New suit"; }, |
|
2129 LBUF { txt="Buy flowers"; }, |
|
2130 LBUF { txt="School day"; } |
|
2131 }; |
|
2132 } |
|
2133 RESOURCE ARRAY r_data_anniversaries |
|
2134 { |
|
2135 items= |
|
2136 { |
|
2137 LBUF { txt="birthday"; }, |
|
2138 LBUF { txt="anniversary"; } |
|
2139 }; |
|
2140 } |
|
2141 |
|
2142 RESOURCE ARRAY r_data_todos |
|
2143 { |
|
2144 items= |
|
2145 { |
|
2146 LBUF { txt="Watch for gum on my shoe"; }, |
|
2147 LBUF { txt="Watch my step in the hall"; }, |
|
2148 LBUF { txt="Always think big"; }, |
|
2149 LBUF { txt="Don't ever think small"; }, |
|
2150 LBUF { txt="Keep pedaling my bike"; }, |
|
2151 LBUF { txt="Watch for bees in my pop"; }, |
|
2152 LBUF { txt="Keep moving forward"; }, |
|
2153 LBUF { txt="Don't ever stop"; }, |
|
2154 LBUF { txt="Keep my sled underneath me"; }, |
|
2155 LBUF { txt="Keep my stick on the ice"; }, |
|
2156 LBUF { txt="Don't swim in a whirlpool"; }, |
|
2157 LBUF { txt="Don't look for a fight"; }, |
|
2158 LBUF { txt="Don't spit in the wind"; }, |
|
2159 LBUF { txt="Just do what is right"; }, |
|
2160 LBUF { txt="Go out in the world"; }, |
|
2161 LBUF { txt="Enjoy a warm rain"; }, |
|
2162 LBUF { txt="Don't worship TV"; }, |
|
2163 LBUF { txt="Keep my oars in the water"; }, |
|
2164 LBUF { txt="Point my boat right downstream"; }, |
|
2165 LBUF { txt="Face head on my problems"; }, |
|
2166 LBUF { txt="Change underwear daily"; }, |
|
2167 LBUF { txt="Believe myself first"; }, |
|
2168 LBUF { txt="Go out and have fun"; }, |
|
2169 LBUF { txt="Turn the cards one by one"; }, |
|
2170 LBUF { txt="Get out and do something"; } |
|
2171 }; |
|
2172 } |
|
2173 |
|
2174 RESOURCE ARRAY r_data_reminders |
|
2175 { |
|
2176 items= |
|
2177 { |
|
2178 LBUF { txt="Remeber to fix car"; }, |
|
2179 LBUF { txt="Remeber to eat vegetables"; }, |
|
2180 LBUF { txt="Remeber to go shopping"; }, |
|
2181 LBUF { txt="Remeber to buy boxes for moving"; }, |
|
2182 LBUF { txt="Remeber to fix bike"; }, |
|
2183 LBUF { txt="Remeber to buy christmast presents"; }, |
|
2184 LBUF { txt="Remeber to send flowers to grandmother"; }, |
|
2185 LBUF { txt="Remeber to talk with son"; }, |
|
2186 LBUF { txt="Remeber to cut hedge"; }, |
|
2187 LBUF { txt="Remeber to bumper potatoes"; }, |
|
2188 LBUF { txt="Remeber to harvest corn field"; }, |
|
2189 LBUF { txt="Remeber to sleep enaugh"; }, |
|
2190 LBUF { txt="Remeber to wash teeths ewery morning"; }, |
|
2191 LBUF { txt="Remeber to get sleep early"; }, |
|
2192 LBUF { txt="Remeber to give some wather to flowers"; }, |
|
2193 LBUF { txt="Remeber to wax snowboard"; }, |
|
2194 LBUF { txt="Remeber to wax skiis"; }, |
|
2195 LBUF { txt="Remeber to wax cross country skiis"; }, |
|
2196 LBUF { txt="Remeber to call mother"; }, |
|
2197 LBUF { txt="Remeber to call father"; }, |
|
2198 LBUF { txt="Remeber to call brother"; }, |
|
2199 LBUF { txt="Remeber to call sister"; }, |
|
2200 LBUF { txt="Remeber to call daughter"; }, |
|
2201 LBUF { txt="Remeber to call son"; }, |
|
2202 LBUF { txt="Remeber to rent villa"; } |
|
2203 }; |
|
2204 } |
|
2205 |
|
2206 RESOURCE ARRAY r_data_messagesubjects |
|
2207 { |
|
2208 items= |
|
2209 { |
|
2210 LBUF { txt="Whaaasssaaap!!??"; }, |
|
2211 LBUF { txt="Hello"; }, |
|
2212 LBUF { txt="How are you doing?"; }, |
|
2213 LBUF { txt="You will win the battle, GUARANTEED!"; }, |
|
2214 LBUF { txt="Why pay more for something if you don't have to?"; }, |
|
2215 LBUF { txt="You can afford health care now"; }, |
|
2216 LBUF { txt="Re: *Buddy* *Lists*!!~ (it's soooo cool)!!~"; }, |
|
2217 LBUF { txt="Weedmon say: call, we be open 7 days, mon"; }, |
|
2218 LBUF { txt="Want her to look better?"; }, |
|
2219 LBUF { txt="Good Morning andyw, how are you?"; }, |
|
2220 LBUF { txt="Happy Assumption"; }, |
|
2221 LBUF { txt="There is NO Risk involved"; }, |
|
2222 LBUF { txt="Free Bottle Offer!"; }, |
|
2223 LBUF { txt="Introduction on MDSL"; }, |
|
2224 LBUF { txt="Theres Help out there for you"; }, |
|
2225 LBUF { txt="hello there - check this out"; }, |
|
2226 LBUF { txt="Darling"; }, |
|
2227 LBUF { txt="It doesn't have to be that way"; }, |
|
2228 LBUF { txt="Webmaster, Free health insurance quotes!"; }, |
|
2229 LBUF { txt="Join us at the OSGi 2003 World Congress"; }, |
|
2230 LBUF { txt="Put your subject line here"; }, |
|
2231 LBUF { txt="You are not protected"; }, |
|
2232 LBUF { txt="Please try again"; }, |
|
2233 LBUF { txt="you didn't reply my email ? why ? ???"; }, |
|
2234 LBUF { txt="A very funny game"; }, |
|
2235 LBUF { txt="Meeting notice"; }, |
|
2236 LBUF { txt="Opportunities"; } |
|
2237 }; |
|
2238 } |
|
2239 |
|
2240 RESOURCE ARRAY r_data_messagetexts |
|
2241 { |
|
2242 items= |
|
2243 { |
|
2244 LBUF { txt="The contents of these pages are copyrighted. Any rights not expressly granted herein are reserved. The use of this site is permitted to private use."; }, |
|
2245 LBUF { txt="Reproduction, transfer, distribution or storage of part or all of the contents in any form without the prior written permission is prohibited."; }, |
|
2246 LBUF { txt="We consents to you browsing the pages on your computer or printing copies of extracts from these pages for your personal use only."; }, |
|
2247 LBUF { txt="If you place an order for a product, request a service or submit content to this site, we may need to contact you for additional information."; }, |
|
2248 LBUF { txt="The use of press releases and other documents classified as public is permitted in public communications if the source for the information has been stated."; }, |
|
2249 LBUF { txt="For your easy accessibility we may include links to sites on the Internet that are owned or operated by third parties."; }, |
|
2250 LBUF { txt="You also agree that we have no control over the content of that site and cannot assume any responsibility for material by such third-party sites."; }, |
|
2251 LBUF { txt="In addition, a link to a such site does not imply that we endorses the site or the products or services referenced in such third party site."; }, |
|
2252 LBUF { txt="In order to respond to your questions or manage interactive customer programs, it may be necessary to ask for personal information."; }, |
|
2253 LBUF { txt="We may use this information to respond to your requests, or to contact you via mail, e-mail or phone to inform you of new products."; }, |
|
2254 LBUF { txt="If you place an order for a product, request a service or submit content to this site, we may need to contact you for additional information."; } |
|
2255 }; |
|
2256 } |
|
2257 |
|
2258 |
|
2259 // --------------------------------------------------------- |
|
2260 // |
|
2261 // New framework: |
|
2262 // Secure platform and scalable UI changes |
|
2263 // |
|
2264 // --------------------------------------------------------- |
|
2265 // |
|
2266 RESOURCE LOCALISABLE_APP_INFO r_creator_localisable_app_info |
|
2267 { |
|
2268 short_caption = "Creator"; |
|
2269 caption_and_icon = |
|
2270 CAPTION_AND_ICON_INFO |
|
2271 { |
|
2272 caption = "Creator"; |
|
2273 |
|
2274 number_of_icons = 1; |
|
2275 |
|
2276 // Note for ROM-based apps it is recommended to add the drive letter |
|
2277 // icon_file = "z:"APP_BITMAP_DIR"\\myapp_aif.mif"; |
|
2278 icon_file = APP_BITMAP_DIR"\\creator_aif.mif"; |
|
2279 }; |
|
2280 } |
|
2281 |
|
2282 RESOURCE DIALOG r_yes_no_dialog |
|
2283 { |
|
2284 flags = EGeneralQueryFlags; |
|
2285 buttons = R_AVKON_SOFTKEYS_YES_NO; |
|
2286 items = |
|
2287 { |
|
2288 DLG_LINE |
|
2289 { |
|
2290 type = EAknCtQuery; |
|
2291 id = EGeneralQuery; |
|
2292 control = AVKON_CONFIRMATION_QUERY |
|
2293 { |
|
2294 layout = EConfirmationQueryLayout; |
|
2295 animation = R_QGN_NOTE_QUERY_ANIM; |
|
2296 }; |
|
2297 } |
|
2298 }; |
|
2299 } |
|
2300 |
|
2301 RESOURCE DIALOG r_encryption_dialog |
|
2302 { |
|
2303 flags = EGeneralQueryFlags; |
|
2304 buttons = R_AVKON_SOFTKEYS_OK_CANCEL; |
|
2305 items = |
|
2306 { |
|
2307 DLG_LINE |
|
2308 { |
|
2309 type = EAknCtListQueryControl; |
|
2310 id = EListQueryControl; |
|
2311 control = AVKON_LIST_QUERY_CONTROL |
|
2312 { |
|
2313 listtype = EAknCtSinglePopupMenuListBox; |
|
2314 listbox = LISTBOX |
|
2315 { |
|
2316 flags = EAknListBoxSelectionList; |
|
2317 height = 3; |
|
2318 width = 3; |
|
2319 }; |
|
2320 heading = "Encryption"; |
|
2321 }; |
|
2322 } |
|
2323 }; |
|
2324 } |