-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsman.chs
More file actions
3363 lines (3190 loc) · 92.5 KB
/
Copy pathsman.chs
File metadata and controls
3363 lines (3190 loc) · 92.5 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#include <eikon.rh>
#include <uikon.hrh>
#include <eikon.rsg>
#include <qikon.rh>
#include "sman.hrh"
#include <quartz.mbg>
//#define __DEBUG_BUILD__
NAME sman
CHARACTER_SET UTF8
RESOURCE RSS_SIGNATURE { }
RESOURCE TBUF { buf=""; }
RESOURCE EIK_APP_INFO
{
menubar=r_memory_menubar;
}
RESOURCE MENU_PANE r_options_autostart_menu
{
items=
{
MENU_ITEM { command=cmdAutostartSMan; txt="SMan"; flags=EEikMenuItemCheckBox; },
MENU_ITEM { command=cmdAutostartOthers; txt="其它程序"; flags = EEikMenuItemSeparatorAfter; },
MENU_ITEM { command=cmdAutostartActive; txt="启用"; }
};
}
RESOURCE MENU_PANE r_options_bluejack_menu
{
items=
{
MENU_ITEM { command=cmdNoDevicePause; txt="时限设置"; },
MENU_ITEM { command=cmdLogFlags; txt="扫描记录设置"; },
MENU_ITEM { command=cmdBluejackSysMsg; txt="通知方式设置";},
MENU_ITEM { command=cmdBluejackMsg; txt="信息设置"; },
MENU_ITEM { command=cmdBluejackExcludeList; txt="忽略清单设置"; flags=EEikMenuItemSeparatorAfter; },
MENU_ITEM { command=cmdResolveName; txt="解析设备名称"; flags=EEikMenuItemCheckBox; },
MENU_ITEM { command=cmdBluejackOnce; txt="单次扫描"; flags=EEikMenuItemCheckBox; },
MENU_ITEM { command=cmdBluejackAutoSave; txt="记录到磁盘"; flags=EEikMenuItemCheckBox | EEikMenuItemSeparatorAfter; },
MENU_ITEM { command=cmdZoom; txt = "缩放"; }
};
}
RESOURCE MENU_PANE r_runapplist_menu
{
items=
{
};
}
RESOURCE MENU_PANE r_shortcuts_menu
{
items=
{
MENU_ITEM { cascade=r_runapplist_menu; txt="运行"; },
MENU_ITEM { command=cmdShortcuts; txt="设置开始快捷方式"; flags = EEikMenuItemSeparatorAfter; },
MENU_ITEM { command=cmdShort1; txt="<未指定>"; flags = EEikMenuItemDimmed; },
MENU_ITEM { command=cmdShort2; txt="<未指定>"; flags = EEikMenuItemDimmed; },
MENU_ITEM { command=cmdShort3; txt="<未指定>"; flags = EEikMenuItemDimmed; },
MENU_ITEM { command=cmdShort4; txt="<未指定>"; flags = EEikMenuItemDimmed; },
MENU_ITEM { command=cmdShort5; txt="<未指定>"; flags = EEikMenuItemDimmed; },
MENU_ITEM { command=cmdShort6; txt="<未指定>"; flags = EEikMenuItemDimmed; },
MENU_ITEM { command=cmdShort7; txt="<未指定>"; flags = EEikMenuItemDimmed; }
};
}
RESOURCE ARRAY r_fn_array
{
items=
{
LBUF { txt="任务管理"; },
LBUF { txt="文件管理"; },
LBUF { txt="蓝牙接口"; },
LBUF { txt="信息存储"; },
LBUF { txt="系统信息"; },
LBUF { txt="今日视图"; },
LBUF { txt="DTMF 拨号器"; },
LBUF { txt="网络信息"; }
};
}
RESOURCE DIALOG r_dialog_fn_options
{
title = "功能设置";
buttons = R_EIK_BUTTONS_CANCEL_OK;
flags = EEikDialogFlagWait;
items =
{
DLG_LINE
{
prompt = "使用模组:";
type = EEikCtListBox;
id = cFnModuleList;
control = LISTBOX
{
flags = EEikListBoxMultipleSelection | EEikListBoxNoExtendedSelection;
array_id = r_fn_array;
};
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "开始模组:";
id = cFnStartupView;
control = CHOICELIST { array_id = r_fn_array; };
}
};
}
RESOURCE MENU_PANE r_modules_menu
{
items =
{
MENU_ITEM { command=cmdSwitchMemory; txt="任务管理"; },
MENU_ITEM { command=cmdSwitchFile; txt="文件管理"; },
MENU_ITEM { command=cmdSwitchSysInfo; txt="系统信息"; },
MENU_ITEM { command=cmdSwitchBJack; txt="蓝牙接口"; },
MENU_ITEM { command=cmdSwitchDB; txt="信息存储"; },
MENU_ITEM { command=cmdSwitchAgenda; txt="今日视图"; },
MENU_ITEM { command=cmdSwitchDTMFDialer; txt="DTMF 拨号器"; },
MENU_ITEM { command=cmdSwitchCellArea; txt="网络信息"; }
};
}
RESOURCE MENU_PANE r_generic_fn
{
items =
{
MENU_ITEM { cascade=r_shortcuts_menu; txt="开始"; },
MENU_ITEM { cascade=r_modules_menu; txt="模组"; },
MENU_ITEM { cascade=r_fn_utilities_menu; txt="工具"; },
MENU_ITEM { cascade=r_controlpanel_menu; txt="控制面板"; flags=EEikMenuItemSeparatorAfter; },
MENU_ITEM { cascade=r_fn_options_menu; txt="选项"; },
MENU_ITEM { command=cmdAbout; txt="关于"; },
MENU_ITEM { command=cmdQuit; txt="离开"; }
};
}
RESOURCE MENU_PANE r_fn_options_menu
{
items =
{
MENU_ITEM { command=cmdSwitchOptions; txt="设置模组"; flags=EEikMenuItemSeparatorAfter; },
MENU_ITEM { command=cmdHotkey; txt="热键"; },
MENU_ITEM { command=cmdNoHotkey; txt="关闭热键"; flags=EEikMenuItemCheckBox; },
MENU_ITEM { command=cmdPersist; txt="忽略 \"自杀要求\""; flags=EEikMenuItemCheckBox; }
};
}
RESOURCE MENU_PANE r_sysinfo_options
{
items=
{
MENU_ITEM { command=cmdSysInfoRefresh; txt="刷新"; },
MENU_ITEM { command=cmdZoom; txt="缩放"; }
};
}
RESOURCE MENU_PANE r_controlpanel_menu
{
items =
{
MENU_ITEM { command=cmdCPBluetooth; txt="蓝牙"; },
MENU_ITEM { command=cmdCPIrda; txt="红外线"; },
MENU_ITEM { command=cmdCPPhone; txt="电话"; },
MENU_ITEM { command=cmdControlPanel; txt="其它"; }
};
}
RESOURCE MENU_PANE r_bluejacklog_menu
{
items=
{
MENU_ITEM { command=cmdBluejackClearLog; txt="清除内存记录"; },
MENU_ITEM { cascade=r_bluejack_filelog_menu; txt="文件记录"; }
};
}
RESOURCE MENU_PANE r_bluejack_filelog_menu
{
items =
{
MENU_ITEM { command=cmdBluejackViewFileLog; txt="查看"; },
MENU_ITEM { command=cmdBluejackDelFileLog; txt="删除"; }
};
}
RESOURCE MENU_PANE r_extras_menu
{
items=
{
MENU_ITEM { command=cmdFlipFlush; txt="合盖退出程序"; flags=EEikMenuItemCheckBox; },
MENU_ITEM { command=cmdForceEndTask; txt="强制结束任务"; flags=EEikMenuItemCheckBox; },
MENU_ITEM { command=cmdFlushExclude; txt = "忽略清除内存"; flags=EEikMenuItemCheckBox; },
MENU_ITEM { command=cmdShowHiddenTask; txt="显示隐藏任务"; flags=EEikMenuItemCheckBox; },
MENU_ITEM { command=cmdZoom; txt = "缩放"; }
};
}
RESOURCE MENU_BAR r_db_menubar
{
titles=
{
MENU_TITLE { menu_pane=r_db_options; txt="数据选项"; },
MENU_TITLE { menu_pane=r_edit; txt="编辑"; },
MENU_TITLE { menu_pane=r_db_data; txt="资料"; },
MENU_TITLE { menu_pane=r_generic_fn; txt="功能"; flags = EEikMenuTitleRightAlign; }
};
}
RESOURCE MENU_BAR r_sysinfo_menubar
{
titles=
{
MENU_TITLE { menu_pane=r_sysinfo_options; txt="选项"; },
MENU_TITLE { menu_pane=r_generic_fn; txt="功能"; flags = EEikMenuTitleRightAlign; }
};
}
RESOURCE MENU_PANE r_edit
{
items=
{
MENU_ITEM { command=cmdEditCut; txt="剪切"; flags=EEikMenuItemDimmed; },
MENU_ITEM { command=cmdEditCopy; txt="复制"; flags=EEikMenuItemDimmed; },
MENU_ITEM { command=cmdEditPaste; txt="粘贴"; flags=EEikMenuItemDimmed; }
};
}
RESOURCE MENU_PANE r_db_options
{
items=
{
MENU_ITEM { command=cmdDBReadDB; txt="打开数据库"; },
MENU_ITEM { command=cmdDBCloseDB; txt="关闭数据库"; flags=EEikMenuItemSeparatorAfter; },
MENU_ITEM { command=cmdDBChangePassword; txt="修改密码"; },
MENU_ITEM { command=cmdDBReInit; txt="重建数据库"; },
MENU_ITEM { command=cmdDBUpdateStats; txt="更新统计信息"; },
MENU_ITEM { command=cmdDBCompact; txt="压缩"; flags=EEikMenuItemSeparatorAfter; },
MENU_ITEM { command=cmdDBSortAsc; txt = "升序排序"; flags = EEikMenuItemRadioStart; },
MENU_ITEM { command=cmdDBSortDes; txt = "降序排序"; flags = EEikMenuItemRadioEnd | EEikMenuItemSeparatorAfter; },
MENU_ITEM { command=cmdZoom; txt="缩放"; }
};
}
RESOURCE MENU_PANE r_db_data
{
items=
{
MENU_ITEM { command=cmdDBExportDB; txt="导出数据库"; },
MENU_ITEM { command=cmdDBImportDB; txt="导入数据库"; }
};
}
RESOURCE MENU_PANE r_fc_bluejack_menu
{
items=
{
MENU_ITEM { cascade=r_fc_moduleswitch_menu; command=cmdFCSwitchMenu; txt="模组"; },
MENU_ITEM { command=cmdFlushOut; txt="退出程序"; },
MENU_ITEM { command=cmdUtilsFixApplist; txt="修复程序列表"; flags=EEikMenuItemSeparatorAfter; },
MENU_ITEM { command=cmdBluejack; txt="开始扫描"; },
MENU_ITEM { command=cmdBluejackClearLog; txt="清除内存记录"; }
};
}
RESOURCE MENU_BAR r_bluejack_menubar
{
titles=
{
MENU_TITLE { menu_pane=r_options_bluejack_menu; txt="选项"; },
MENU_TITLE { menu_pane=r_bluejacklog_menu; txt="记录"; },
MENU_TITLE { menu_pane=r_generic_fn; txt="功能"; flags = EEikMenuTitleRightAlign; }
};
}
RESOURCE MENU_BAR r_memory_menubar
{
titles=
{
MENU_TITLE { menu_pane=r_extras_menu; txt="选项"; },
MENU_TITLE { menu_pane=r_generic_fn; txt="功能"; flags = EEikMenuTitleRightAlign; }
};
}
RESOURCE DIALOG r_dialog_autostart
{
title = "自动启动设置";
buttons = R_EIK_BUTTONS_CANCEL_OK;
flags = EEikDialogFlagWait;
items =
{
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "程序 1:";
id = cAutoStart1;
control = CHOICELIST { };
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "程序 2:";
id = cAutoStart2;
control = CHOICELIST { };
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "程序 3:";
id = cAutoStart3;
control = CHOICELIST { };
}
};
}
RESOURCE DLG_BUTTONS r_buttons_nodevicepause
{
buttons =
{
DLG_BUTTON { id = EEikBidYes; button = CMBUT { txt = "默认"; }; },
DLG_BUTTON { id = EEikBidCancel; button = CMBUT { txt = "取消"; }; },
DLG_BUTTON { id = EEikBidOk; button = CMBUT { txt = "确定"; }; flags=EEikLabeledButtonIsDefault; }
};
}
RESOURCE DIALOG r_dialog_loglevels
{
title = "扫描记录设置";
buttons = R_EIK_BUTTONS_CANCEL_OK;
flags = EEikDialogFlagWait | EEikDialogFlagButtonsRight;
items=
{
DLG_LINE
{
type = EEikCtCheckBox;
prompt = "蓝牙接口记录:";
id = cLogBluejack;
},
DLG_LINE
{
type = EEikCtCheckBox;
prompt = "OBEX 记录:";
id = cLogOBEX;
},
DLG_LINE
{
type = EEikCtCheckBox;
prompt = "扫描记录:";
id = cLogScanning;
},
DLG_LINE
{
type = EEikCtCheckBox;
prompt = "衰减记录:";
id = cLogDecays;
}
};
}
RESOURCE ARRAY r_array_audionotify
{
items=
{
LBUF { txt="<无>"; },
LBUF { txt="选择文件"; }
};
}
RESOURCE DIALOG r_dialog_notification
{
title = "蓝牙接口通知";
buttons = R_EIK_BUTTONS_CANCEL_OK;
flags = EEikDialogFlagWait;
items=
{
DLG_LINE
{
type = EEikCtCheckBox;
prompt = "信息:";
id = cSystemMsgNotify;
},
DLG_LINE
{
type = EEikCtCheckBox;
prompt = "震动提示:";
id = cVibraNotify;
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "声响:";
id = cAudioFileName;
control = CHOICELIST { };
}
};
}
RESOURCE DIALOG r_dialog_nodevicepause
{
title = "蓝牙接口时限";
buttons = r_buttons_nodevicepause;
flags = EEikDialogFlagWait;
items=
{
DLG_LINE
{
type = EQikCtNumberEditor;
prompt = "OBEX 超时 (秒):";
id = cOBEXTimeout;
control = QIK_NUMBER_EDITOR { min = 10; max = 30; };
},
DLG_LINE
{
type = EQikCtNumberEditor;
prompt = "衰减 (秒):";
id = cDecayTime;
control = QIK_NUMBER_EDITOR { min = 5; max = 1800; };
},
DLG_LINE
{
type = EQikCtNumberEditor;
prompt = "平静 (秒):";
id = cNoDevicePause;
control = QIK_NUMBER_EDITOR { min = 1; max = 1800; };
},
DLG_LINE
{
type = EQikCtNumberEditor;
prompt = "失败重试:";
id = cNoDeviceAttempts;
control = QIK_NUMBER_EDITOR { min = 1; max = 10; };
}
};
}
RESOURCE DIALOG r_dialog_shortcut
{
title = "开始";
buttons = R_EIK_BUTTONS_CANCEL_OK;
flags = EEikDialogFlagWait | EEikDialogFlagButtonsRight;
items=
{
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "1:";
id = cShortcut1;
control = CHOICELIST { };
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "2:";
id = cShortcut2;
control = CHOICELIST { };
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "3:";
id = cShortcut3;
control = CHOICELIST { };
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "4:";
id = cShortcut4;
control = CHOICELIST { };
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "5:";
id = cShortcut5;
control = CHOICELIST { };
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "6:";
id = cShortcut6;
control = CHOICELIST { };
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "7:";
id = cShortcut7;
control = CHOICELIST { };
}
};
}
RESOURCE ARRAY r_hotkey_array_p800_p900
{
items=
{
LBUF { txt="<关闭>"; },
LBUF { txt="摄像头键"; },
LBUF { txt="互联网键"; },
LBUF { txt="开盖"; }
};
}
RESOURCE ARRAY r_hotkey_array_a920_a925
{
items=
{
LBUF { txt="<关闭>"; },
LBUF { txt="快捷方式"; },
LBUF { txt="互联网键"; },
LBUF { txt="<未使用>"; }
};
}
// The number after the semi-colon is the shortcut number that is stored in sman's config file
// By doing it this way, we can insert any arbitrary item in the middle and have it sorted in
// alphabetical order for the user to easily locate whatever he / she wants and still not worry
// about the value stored in the config file being wrong
RESOURCE ARRAY r_hotkey_choices_fo
{
items =
{
LBUF { txt = "<关闭>;0"; },
LBUF { txt = "自动运行 -- 其它;1"; },
LBUF { txt = "自动运行 -- SMan 开关;2"; },
LBUF { txt = "自动运行 -- 开关;3"; },
LBUF { txt = "控制面板 -- 蓝牙;4"; },
LBUF { txt = "控制面板 -- 红外线;5"; },
LBUF { txt = "控制面板 -- 控制面板;6"; },
LBUF { txt = "控制面板 -- 电话;7"; },
LBUF { txt = "其它 -- 退出程序;8"; },
LBUF { txt = "其它 -- 展开选单;9"; },
LBUF { txt = "工具 -- 压缩联系人;10"; },
LBUF { txt = "工具 -- 修复程序列表;11"; },
LBUF { txt = "工具 -- 修复同步时区;12"; },
LBUF { txt = "工具 -- 设置系统字体;13"; },
LBUF { txt = "查看 -- 蓝牙接口;14"; },
LBUF { txt = "查看 -- DTMF 拨号器;15"; },
LBUF { txt = "查看 -- 文件管理;16"; },
LBUF { txt = "查看 -- 数据管理;17"; },
LBUF { txt = "查看 -- 网络信息;18"; },
LBUF { txt = "查看 -- 系统信息;19"; },
LBUF { txt = "查看 -- 任务管理;20"; },
LBUF { txt = "查看 -- 今日视图;21"; }
};
}
// Note: These numbers MUST match the flip open counterpart. Only if there is specific
// functionality to either FO or FC mode will there be differences; in that event, the numbers
// MUST be UNIQUE across the FO + FC modes
RESOURCE ARRAY r_hotkey_choices_fc
{
items =
{
LBUF { txt = "<关闭>;0"; },
LBUF { txt = "自动启动 -- SMan 开关;2"; },
LBUF { txt = "自动启动 -- 开关;3"; },
LBUF { txt = "其它 -- 退出程序;8"; },
LBUF { txt = "其它 -- 导航;9"; },
LBUF { txt = "工具 -- 压缩联系人;10"; },
LBUF { txt = "工具 -- 修复程序列表;11"; },
LBUF { txt = "查看 -- 蓝牙接口;14"; },
LBUF { txt = "查看 -- 网络信息;18"; }
};
}
RESOURCE ARRAY r_dialog_hotkey_pages_key
{
items =
{
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "热键:";
id = cHotkeyControl;
control = CHOICELIST
{
array_id = r_hotkey_array_p800_p900;
};
}
};
}
RESOURCE ARRAY r_dialog_hotkey_pages_fo
{
items =
{
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "前景 (短按):";
id = cHotkeyInFocusShortFO;
control = CHOICELIST {};
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "前景 (长按):";
id = cHotkeyInFocusLongFO;
control = CHOICELIST {};
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "背景 (短按):";
id = cHotkeyExFocusShortFO;
control = CHOICELIST {};
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "背景 (长按):";
id = cHotkeyExFocusLongFO;
control = CHOICELIST {};
}
};
}
RESOURCE ARRAY r_dialog_hotkey_pages_fc
{
items =
{
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "前景 (短按):";
id = cHotkeyInFocusShortFC;
control = CHOICELIST {};
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "前景 (长按):";
id = cHotkeyInFocusLongFC;
control = CHOICELIST {};
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "背景 (短按):";
id = cHotkeyExFocusShortFC;
control = CHOICELIST {};
},
DLG_LINE
{
type = EEikCtChoiceList;
prompt = "背景 (长按):";
id = cHotkeyExFocusLongFC;
control = CHOICELIST {};
}
};
}
RESOURCE ARRAY r_dialog_hotkey_pages
{
items =
{
PAGE
{
id = idHotkeyPage_Hotkey;
text = "热键";
lines = r_dialog_hotkey_pages_key;
},
PAGE
{
id = idHotkeyPage_FO;
text = "开盖";
lines = r_dialog_hotkey_pages_fo;
},
PAGE
{
id = idHotkeyPage_FC;
text = "合盖";
lines = r_dialog_hotkey_pages_fc;
}
};
}
RESOURCE DIALOG r_dialog_hotkey
{
title = "热键设置";
flags = EEikDialogFlagWait;
pages = r_dialog_hotkey_pages;
buttons = R_EIK_BUTTONS_CANCEL_OK;
}
RESOURCE DLG_BUTTONS r_buttons_continue_credits
{
buttons =
{
#ifdef __DEBUG_BUILD__
DLG_BUTTON { id = EEikBidOk; button = CMBUT { txt = "除错"; }; },
#endif
DLG_BUTTON { id = EEikBidYes; button = CMBUT { txt = "信用"; }; },
DLG_BUTTON { id = EEikBidCancel; button = CMBUT { txt = "继续"; }; flags=EEikLabeledButtonIsDefault; }
};
}
RESOURCE DIALOG r_dialog_about
{
title = "About";
buttons = r_buttons_continue_credits;
flags = EEikDialogFlagWait;
items =
{
DLG_LINE
{
type = EEikCtLabel;
control = LABEL
{
txt="The S Manager (c) 2003,2004";
horiz_align=EEikLabelAlignHLeft;
};
},
DLG_LINE
{
type = EEikCtLabel;
control = LABEL
{
txt="v1.3c, Build 202";
horiz_align=EEikLabelAlignHLeft;
};
},
DLG_LINE
{
type = EEikCtLabel;
control = LABEL
{
txt="程序制作:Yip Je Sum / droll";
horiz_align=EEikLabelAlignHLeft;
};
},
DLG_LINE
{
type = EEikCtLabel;
control = LABEL
{
txt="程序设计:Adrian Chiang / ajack";
horiz_align=EEikLabelAlignHLeft;
};
},
DLG_LINE
{
type = EEikCtLabel;
control = LABEL
{
txt="http://renegade.w3xs.com";
horiz_align=EEikLabelAlignHLeft;
};
}
};
}
RESOURCE DIALOG r_dialog_snapshotconfirm
{
title = "确认快照";
buttons = R_EIK_BUTTONS_NO_YES;
flags = EEikDialogFlagWait;
items =
{
DLG_LINE
{
type = EEikCtLabel;
control = LABEL
{
txt = "你确定要为系统拍摄快照?";
};
}
};
}
RESOURCE DLG_BUTTONS r_buttons_bluebeamlog
{
buttons =
{
DLG_BUTTON { id = EEikBidOk; button = CMBUT { txt = "取消"; }; },
DLG_BUTTON { id = EEikBidYes; button = CMBUT { txt = "确定"; }; flags=EEikLabeledButtonIsDefault; }
};
}
RESOURCE DIALOG r_dialog_bluebeamlog
{
title = "文件传送记录";
buttons = r_buttons_bluebeamlog;
items=
{
DLG_LINE
{
type = EEikCtRichTextEditor;
id = cBluebeamLog;
control = RTXTED
{
width = 150; height = 170; numlines = 10; flags = EEikEdwinReadOnly | EEikEdwinNoAutoSelection | EEikEdwinJustAutoCurEnd | EEikEdwinDisplayOnly;
};
}
};
}
RESOURCE DIALOG r_dialog_bluejacklog
{
title = "蓝牙接口记录";
buttons = R_EIK_BUTTONS_OK;
flags=EEikDialogFlagWait;
items=
{
DLG_LINE
{
type = EEikCtRichTextEditor;
id = cBluejackLog;
control = RTXTED
{
width = 150; height = 170; numlines = 10; flags = EEikEdwinReadOnly | EEikEdwinNoAutoSelection | EEikEdwinJustAutoCurEnd | EEikEdwinDisplayOnly;
};
}
};
}
RESOURCE DLG_BUTTONS r_buttons_filemanprogress
{
buttons =
{
DLG_BUTTON { id = EEikBidOverwrite; button = CMBUT { txt = "覆盖"; }; },
DLG_BUTTON { id = EEikBidOverwriteAll; button = CMBUT { txt = "全部覆盖"; }; },
DLG_BUTTON { id = EEikBidSkip; button = CMBUT { txt = "忽略"; }; flags=EEikLabeledButtonIsDefault; },
DLG_BUTTON { id = EEikBidSkipAll; button = CMBUT { txt = "全部忽略"; }; },
DLG_BUTTON { id = EEikBidAbort; button = CMBUT { txt = "放弃"; }; }
};
}
RESOURCE DIALOG r_dialog_filemanprogress_nowait
{
title = "文件管理";
buttons = r_buttons_filemanprogress;
flags = EEikDialogFlagNoDrag;
items=
{
DLG_LINE
{
type = EEikCtRichTextEditor;
id = cFileManProgressText;
control = RTXTED
{
width = 150; height = 100; numlines = 10; flags = EEikEdwinReadOnly | EEikEdwinNoAutoSelection | EEikEdwinJustAutoCurEnd | EEikEdwinDisplayOnly;
};
},
DLG_LINE
{
prompt = "当前 ";
type = EEikCtProgInfo;
id = cFileManProgressBar;
control = PROGRESSINFO
{
text_type = EEikProgressTextPercentage;
};
}
};
}
RESOURCE DIALOG r_dialog_filemanprogress_wait
{
title = "文件管理";
buttons = r_buttons_filemanprogress;
flags = EEikDialogFlagWait | EEikDialogFlagNoDrag;
items =
{
DLG_LINE
{
type = EEikCtRichTextEditor;
id = cFileManProgressText;
control = RTXTED
{
width = 150; height = 100; numlines = 10; flags = EEikEdwinReadOnly | EEikEdwinNoAutoSelection | EEikEdwinJustAutoCurEnd | EEikEdwinDisplayOnly;
};
},
DLG_LINE
{
prompt = "当前 ";
type = EEikCtProgInfo;
id = cFileManProgressBar;
control = PROGRESSINFO
{
text_type = EEikProgressTextPercentage;
};
}
};
}
RESOURCE DLG_BUTTONS r_buttons_filemanrename
{
buttons =
{
DLG_BUTTON { id = EEikBidAbort; button = CMBUT { txt = "取消"; }; },
DLG_BUTTON { id = EEikBidSkip; button = CMBUT { txt = "忽略"; }; },
DLG_BUTTON { id = EEikBidOk; button = CMBUT { txt = "确定"; }; flags=EEikLabeledButtonIsDefault; }
};
}
RESOURCE DIALOG r_dialog_filemanrename
{
title = "重命名";
buttons = r_buttons_filemanrename;
flags = EEikDialogFlagWait;
items =
{
DLG_LINE
{
type = EEikCtGlobalTextEditor;
id = cFileManNewName;
control = GTXTED
{
height = 22; width = 21; numlines = 1; flags = EEikEdwinJustAutoCurEnd; textlimit = 256;
};
}
};
}
RESOURCE DIALOG r_dialog_filemannewfolder
{
title = "新建文件夹";
buttons = R_EIK_BUTTONS_CANCEL_OK;
flags = EEikDialogFlagWait;
items =
{
DLG_LINE
{
type = EEikCtGlobalTextEditor;
id = cFileManNewName;
control = GTXTED
{
height = 22; width = 21; numlines = 1; flags = EEikEdwinJustAutoCurEnd;
};
}
};
}
RESOURCE DIALOG r_bluejack_vcard
{
title = "蓝牙接口信息";
buttons = R_EIK_BUTTONS_CANCEL_OK;
flags = EEikDialogFlagWait;
items =
{
DLG_LINE
{
type = EEikCtGlobalTextEditor;
id = cBluejackMessage;
control = GTXTED
{
textlimit = 20; height = 22; width = 21; numlines = 1; flags = EEikEdwinJustAutoCurEnd;
};
}
};
}
RESOURCE DIALOG r_dialog_filemanatt
{
title = "文件属性";
buttons = R_EIK_BUTTONS_CANCEL_OK;
flags = EEikDialogFlagWait;
items =
{
DLG_LINE
{
type = EEikCtGlobalTextEditor;
id = cFileAttName;
control = GTXTED
{
height = 70; width = 150; numlines = 10; flags = EEikEdwinReadOnly | EEikEdwinNoAutoSelection | EEikEdwinDisplayOnly;
};
},
DLG_LINE
{
type = EEikCtCheckBox;
prompt = "只读:";
id = cFileAttReadOnly;
},
DLG_LINE
{
type = EEikCtCheckBox;
prompt = "保存:";
id = cFileAttArchive;
},
DLG_LINE
{
type = EEikCtCheckBox;
prompt = "系统:";
id = cFileAttSystem;
},
DLG_LINE
{
type = EEikCtCheckBox;