-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUFormViewOptions.dfm
1064 lines (1064 loc) · 24.7 KB
/
UFormViewOptions.dfm
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
object FormViewOptions: TFormViewOptions
Left = 253
Top = 152
BorderStyle = bsDialog
Caption = 'Universal Viewer settings'
ClientHeight = 395
ClientWidth = 569
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poScreenCenter
ShowHint = True
OnCreate = FormCreate
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object btnOk: TButton
Left = 392
Top = 364
Width = 81
Height = 23
Caption = 'OK'
Default = True
ModalResult = 1
TabOrder = 1
end
object btnCancel: TButton
Left = 480
Top = 364
Width = 81
Height = 23
Cancel = True
Caption = 'Cancel'
ModalResult = 2
TabOrder = 2
end
object PageControl1: TPageControl
Left = 8
Top = 8
Width = 553
Height = 349
ActivePage = tabIntf
TabOrder = 0
object tabIntf: TTabSheet
Caption = 'Interface'
object boxIntf: TGroupBox
Left = 8
Top = 4
Width = 449
Height = 237
Caption = 'Interface'
TabOrder = 0
object labLang: TLabel
Left = 8
Top = 20
Width = 51
Height = 13
Caption = 'Language:'
FocusControl = edLang
end
object labIcon: TLabel
Left = 8
Top = 44
Width = 30
Height = 13
Caption = 'Icons:'
FocusControl = edIcon
end
object edLang: TComboBox
Left = 88
Top = 16
Width = 153
Height = 21
Style = csDropDownList
DropDownCount = 10
ItemHeight = 13
TabOrder = 0
OnChange = edLangChange
end
object chkShell: TCheckBox
Left = 8
Top = 172
Width = 400
Height = 17
Caption = 'Explorer context menu item'
TabOrder = 8
end
object chkToolbar: TCheckBox
Left = 8
Top = 116
Width = 400
Height = 17
Caption = 'Show toolbar'
TabOrder = 5
end
object chkBorder: TCheckBox
Left = 8
Top = 132
Width = 400
Height = 17
Caption = 'Show border'
TabOrder = 6
end
object chkSingleInst: TCheckBox
Left = 8
Top = 188
Width = 400
Height = 17
Caption = 'Run single instance only'
TabOrder = 9
end
object chkMenu: TCheckBox
Left = 8
Top = 84
Width = 400
Height = 17
Caption = 'Show menu'
TabOrder = 3
end
object chkStatusBar: TCheckBox
Left = 8
Top = 148
Width = 400
Height = 17
Caption = 'Show status bar'
TabOrder = 7
end
object chkNav: TCheckBox
Left = 8
Top = 68
Width = 400
Height = 17
Caption = 'Show navigation panel'
TabOrder = 2
end
object chkMenuIcons: TCheckBox
Left = 8
Top = 100
Width = 400
Height = 17
Caption = 'Show icons in menu'
TabOrder = 4
end
object edIcon: TComboBox
Left = 88
Top = 40
Width = 153
Height = 21
Style = csDropDownList
DropDownCount = 10
ItemHeight = 13
TabOrder = 1
OnChange = edIconChange
end
object Panel1: TPanel
Left = 248
Top = 32
Width = 129
Height = 33
TabOrder = 11
Visible = False
object Image1: TImage
Left = 1
Top = 1
Width = 127
Height = 31
Align = alClient
end
end
object chkShowCfm: TCheckBox
Left = 8
Top = 212
Width = 433
Height = 17
Caption = 'Show confirmation before opening files of undetected types'
TabOrder = 10
end
end
end
object tabFile: TTabSheet
Caption = 'File types'
ImageIndex = 5
object boxExt: TGroupBox
Left = 8
Top = 4
Width = 345
Height = 141
Caption = 'File extensions'
TabOrder = 0
object labText: TLabel
Left = 8
Top = 20
Width = 26
Height = 13
Caption = 'Text:'
FocusControl = edText
end
object labImages: TLabel
Left = 8
Top = 44
Width = 39
Height = 13
Caption = 'Images:'
FocusControl = edImages
end
object labMedia: TLabel
Left = 8
Top = 68
Width = 32
Height = 13
Caption = 'Media:'
FocusControl = edMedia
end
object labInternet: TLabel
Left = 8
Top = 92
Width = 44
Height = 13
Caption = 'Internet:'
FocusControl = edInternet
end
object labRTF: TLabel
Left = 8
Top = 116
Width = 23
Height = 13
Caption = 'RTF:'
FocusControl = edRTF
end
object edText: TEdit
Left = 96
Top = 16
Width = 233
Height = 21
TabOrder = 0
end
object edImages: TEdit
Left = 96
Top = 40
Width = 233
Height = 21
TabOrder = 1
end
object edMedia: TEdit
Left = 96
Top = 64
Width = 233
Height = 21
TabOrder = 2
end
object edInternet: TEdit
Left = 96
Top = 88
Width = 233
Height = 21
TabOrder = 3
end
object edRTF: TEdit
Left = 96
Top = 112
Width = 233
Height = 21
TabOrder = 4
end
end
object btnTextOptions: TButton
Left = 8
Top = 152
Width = 161
Height = 21
Caption = 'Auto-detection...'
TabOrder = 1
OnClick = btnTextOptionsClick
end
object btnImageOptions: TButton
Left = 8
Top = 178
Width = 161
Height = 21
Caption = 'Libraries...'
TabOrder = 2
OnClick = btnImageOptionsClick
end
end
object tabText: TTabSheet
Caption = 'Text'
ImageIndex = 3
object boxText: TGroupBox
Left = 276
Top = 4
Width = 262
Height = 197
Caption = 'Text'
TabOrder = 1
object labTextFixedWidth: TLabel
Left = 48
Top = 126
Width = 115
Height = 13
Caption = 'Binary mode fixed width'
FocusControl = edTextWidth
end
object labTabSize: TLabel
Left = 48
Top = 170
Width = 39
Height = 13
Caption = 'Tab size'
FocusControl = edTextTabSize
end
object labTextLength: TLabel
Left = 48
Top = 148
Width = 90
Height = 13
Caption = 'Maximal line length'
FocusControl = edTextLength
end
object edTextWidth: TEdit
Left = 8
Top = 124
Width = 33
Height = 19
AutoSize = False
TabOrder = 6
end
object chkTextWidthFit: TCheckBox
Left = 8
Top = 104
Width = 250
Height = 17
Caption = 'Binary mode fit width'
TabOrder = 5
OnClick = chkTextWidthFitClick
end
object chkTextAutoCopy: TCheckBox
Left = 8
Top = 88
Width = 250
Height = 17
Caption = 'Auto-copy to clipboard'
TabOrder = 4
end
object edTextTabSize: TEdit
Left = 8
Top = 168
Width = 33
Height = 19
AutoSize = False
TabOrder = 8
end
object edTextLength: TEdit
Left = 8
Top = 146
Width = 33
Height = 19
AutoSize = False
TabOrder = 7
end
object chkTextWrap: TCheckBox
Left = 8
Top = 40
Width = 250
Height = 17
Caption = 'Wrap'
TabOrder = 1
end
object chkTextNonPrint: TCheckBox
Left = 8
Top = 72
Width = 250
Height = 17
Caption = 'Non-print'
TabOrder = 3
end
object btnGutterOptions: TButton
Left = 8
Top = 16
Width = 201
Height = 21
Caption = 'Gutter && line numbers'
TabOrder = 0
OnClick = btnGutterOptionsClick
end
object chkTextURLs: TCheckBox
Left = 8
Top = 56
Width = 249
Height = 17
Caption = 'Hilight URLs'
TabOrder = 2
end
end
object boxTextFont: TGroupBox
Left = 8
Top = 4
Width = 262
Height = 105
Caption = 'Font'
TabOrder = 0
object labTextFont1: TLabel
Left = 8
Top = 19
Width = 26
Height = 13
Caption = 'Font:'
FocusControl = btnTextFont
end
object labTextFontShow: TLabel
Left = 104
Top = 19
Width = 22
Height = 13
Caption = 'Font'
end
object labTextColors: TLabel
Left = 8
Top = 40
Width = 34
Height = 13
Caption = 'Colors:'
FocusControl = btnTextColor
end
object labTextFontShowOEM: TLabel
Left = 104
Top = 81
Width = 22
Height = 13
Caption = 'Font'
end
object btnTextFont: TButton
Left = 64
Top = 16
Width = 33
Height = 21
Caption = '...'
TabOrder = 0
OnClick = btnTextFontClick
end
object btnTextColor: TButton
Left = 64
Top = 38
Width = 33
Height = 21
Caption = '...'
TabOrder = 1
OnClick = btnTextColorClick
end
object btnTextColorHexBack: TButton
Left = 96
Top = 38
Width = 33
Height = 21
Caption = '...'
TabOrder = 2
OnClick = btnTextColorHexBackClick
end
object btnTextColorHex1: TButton
Left = 128
Top = 38
Width = 33
Height = 21
Caption = '...'
TabOrder = 3
OnClick = btnTextColorHex1Click
end
object btnTextColorHex2: TButton
Left = 160
Top = 38
Width = 33
Height = 21
Caption = '...'
TabOrder = 4
OnClick = btnTextColorHex2Click
end
object btnTextColorGutter: TButton
Left = 192
Top = 38
Width = 33
Height = 21
Caption = '...'
TabOrder = 5
OnClick = btnTextColorGutterClick
end
object chkTextOemSpecial: TCheckBox
Left = 8
Top = 60
Width = 241
Height = 17
Caption = 'Use special OEM font'
TabOrder = 7
OnClick = chkTextOemSpecialClick
end
object btnTextFontOEM: TButton
Left = 64
Top = 78
Width = 33
Height = 21
Caption = '...'
TabOrder = 8
OnClick = btnTextFontOEMClick
end
object btnTextColorURL: TButton
Left = 224
Top = 38
Width = 33
Height = 21
Hint = 'URL'
Caption = '...'
TabOrder = 6
OnClick = btnTextColorURLClick
end
end
object boxTextSearch: TGroupBox
Left = 8
Top = 188
Width = 262
Height = 81
Caption = 'Search'
TabOrder = 3
object labSearchIndent: TLabel
Left = 48
Top = 54
Width = 135
Height = 13
Caption = 'Search result: lines from top'
FocusControl = edSearchIndent
end
object edSearchIndent: TEdit
Left = 8
Top = 52
Width = 33
Height = 19
AutoSize = False
TabOrder = 2
end
object chkSearchSel: TCheckBox
Left = 8
Top = 16
Width = 250
Height = 17
Caption = 'Suggest selection'
TabOrder = 0
end
object chkSearchNoMsg: TCheckBox
Left = 8
Top = 32
Width = 250
Height = 17
Caption = 'No error msg'
TabOrder = 1
end
end
object boxTextReload: TGroupBox
Left = 8
Top = 112
Width = 262
Height = 73
Caption = 'Auto-reload'
TabOrder = 2
object chkTextReload: TCheckBox
Left = 8
Top = 16
Width = 250
Height = 17
Caption = 'Auto-reload'
TabOrder = 0
OnClick = chkTextReloadClick
end
object chkTextReloadBeep: TCheckBox
Left = 8
Top = 32
Width = 250
Height = 17
Caption = 'Beep'
TabOrder = 1
end
object chkTextReloadTail: TCheckBox
Left = 8
Top = 48
Width = 250
Height = 17
Caption = 'Follow tail'
TabOrder = 2
end
end
end
object tabMedia: TTabSheet
Caption = 'Multimedia'
ImageIndex = 4
object boxMedia: TGroupBox
Left = 280
Top = 4
Width = 257
Height = 101
Caption = 'Media'
TabOrder = 1
object labMediaPlayCount: TLabel
Left = 40
Top = 76
Width = 50
Height = 13
Caption = 'Play count'
FocusControl = edMediaPlayCount
end
object labMediaMode: TLabel
Left = 8
Top = 20
Width = 49
Height = 13
Caption = 'Interface:'
FocusControl = edMediaMode
end
object chkMediaStart: TCheckBox
Left = 8
Top = 40
Width = 246
Height = 17
Caption = 'Auto-start playback'
TabOrder = 1
end
object edMediaPlayCount: TEdit
Left = 8
Top = 74
Width = 25
Height = 19
AutoSize = False
TabOrder = 3
end
object edMediaMode: TComboBox
Left = 80
Top = 16
Width = 161
Height = 21
Style = csDropDownList
ItemHeight = 13
TabOrder = 0
OnChange = edMediaModeChange
end
object chkMediaLoop: TCheckBox
Left = 8
Top = 56
Width = 246
Height = 17
Caption = 'Loop playback'
TabOrder = 2
end
end
object boxImage: TGroupBox
Left = 8
Top = 4
Width = 265
Height = 169
Caption = 'Image'
TabOrder = 0
object labColorImage: TLabel
Left = 8
Top = 20
Width = 34
Height = 13
Caption = 'Colors:'
FocusControl = btnMediaColor
end
object chkImageResample: TCheckBox
Left = 8
Top = 128
Width = 254
Height = 17
Caption = 'Resample image'
TabOrder = 8
end
object chkImageTransp: TCheckBox
Left = 8
Top = 144
Width = 254
Height = 17
Caption = 'Show transparency'
TabOrder = 9
end
object btnMediaColor: TButton
Left = 80
Top = 17
Width = 33
Height = 21
Caption = '...'
TabOrder = 0
OnClick = btnMediaColorClick
end
object btnMediaColorLabel: TButton
Left = 112
Top = 17
Width = 33
Height = 21
Caption = '...'
TabOrder = 1
OnClick = btnMediaColorLabelClick
end
object btnMediaColorLabelErr: TButton
Left = 144
Top = 17
Width = 33
Height = 21
Caption = '...'
TabOrder = 2
OnClick = btnMediaColorLabelErrClick
end
object chkImageFit: TCheckBox
Left = 8
Top = 40
Width = 254
Height = 17
Caption = 'Fit image'
TabOrder = 3
end
object chkImageFitBig: TCheckBox
Left = 8
Top = 56
Width = 254
Height = 17
Caption = 'Fit only big'
TabOrder = 4
end
object chkImageCenter: TCheckBox
Left = 8
Top = 72
Width = 254
Height = 17
Caption = 'Center'
TabOrder = 5
end
object chkImageFitWindow: TCheckBox
Left = 8
Top = 88
Width = 254
Height = 17
Caption = 'Fit window'
TabOrder = 6
end
object chkImageLabel: TCheckBox
Left = 8
Top = 108
Width = 254
Height = 17
Caption = 'Show info line'
TabOrder = 7
end
end
object boxInternet: TGroupBox
Left = 280
Top = 108
Width = 257
Height = 65
Caption = 'Internet'
TabOrder = 2
object chkWebAcceptAll: TCheckBox
Left = 8
Top = 20
Width = 246
Height = 17
Caption = 'Try to open unknown file types'
TabOrder = 0
end
object chkWebOffline: TCheckBox
Left = 8
Top = 36
Width = 246
Height = 17
Caption = 'Offline mode'
TabOrder = 1
end
end
end
object tabShortcuts: TTabSheet
Caption = 'Shortcuts'
ImageIndex = 1
object labShortcut: TLabel
Left = 328
Top = 8
Width = 45
Height = 13
Caption = 'Shortcut:'
FocusControl = HotKey1
end
object ListKeys: TListView
Left = 8
Top = 8
Width = 305
Height = 261
Columns = <
item
Caption = 'Command'
Width = 165
end
item
Caption = 'Shortcut'
Width = 115
end>
ColumnClick = False
GridLines = True
HideSelection = False
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnSelectItem = ListKeysSelectItem
end
object HotKey1: THotKey
Left = 328
Top = 24
Width = 113
Height = 19
Enabled = False
HotKey = 0
Modifiers = []
TabOrder = 1
end
object btnKeyOk: TButton
Left = 328
Top = 48
Width = 81
Height = 21
Caption = 'OK'
Enabled = False
TabOrder = 2
OnClick = btnKeyOkClick
end
end
object tabHistory: TTabSheet
Caption = 'History'
ImageIndex = 6
object boxHistory: TGroupBox
Left = 8
Top = 4
Width = 305
Height = 136
Caption = 'History'
TabOrder = 0
object chkSaveFolder: TCheckBox
Left = 8
Top = 112
Width = 270
Height = 17
Caption = 'Save last working folder'
TabOrder = 5
end
object chkSavePosition: TCheckBox
Left = 8
Top = 96
Width = 270
Height = 17
Caption = 'Save window position'
TabOrder = 4
end
object chkSaveRecents: TCheckBox
Left = 8
Top = 16
Width = 209
Height = 17
Caption = 'Save recent files list'
TabOrder = 0
end
object chkSaveSearch: TCheckBox
Left = 8
Top = 56
Width = 209
Height = 17
Caption = 'Save search history'
TabOrder = 2
end
object btnClearRecent: TButton
Left = 24
Top = 34
Width = 89
Height = 21
Caption = 'Clear'
TabOrder = 1
OnClick = btnClearRecentClick
end
object btnClearSearch: TButton
Left = 24
Top = 73
Width = 89
Height = 21
Caption = 'Clear'
TabOrder = 3
OnClick = btnClearSearchClick
end
end
end
object tabMisc: TTabSheet
Caption = 'Misc'
ImageIndex = 2
object boxMisc: TGroupBox
Left = 8
Top = 4
Width = 305
Height = 125
Caption = 'Misc'
TabOrder = 0
object labViewerTitle: TLabel
Left = 8
Top = 44
Width = 63
Height = 13
Caption = 'Window title:'
FocusControl = edViewerTitle
end
object labViewerMode: TLabel
Left = 8
Top = 20
Width = 65
Height = 13
Caption = 'Startup view:'
FocusControl = edViewerMode
end
object labFileSort: TLabel
Left = 8
Top = 68
Width = 47
Height = 13
Caption = 'Files sort:'
FocusControl = edFileSort
end
object chkResolveLinks: TCheckBox
Left = 8
Top = 104
Width = 289
Height = 17
Caption = 'Resolve .lnk files targets'
TabOrder = 4
end
object chkShowHidden: TCheckBox
Left = 8
Top = 88
Width = 289
Height = 17
Caption = 'Show hidden files'
TabOrder = 3
end
object edViewerTitle: TComboBox
Left = 144
Top = 40
Width = 153
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
ItemIndex = 0
TabOrder = 1
Text = 'Display full pathname'
Items.Strings = (
'Display full pathname'
'Display filename only')
end
object edViewerMode: TComboBox
Left = 144
Top = 16
Width = 153
Height = 22
Style = csOwnerDrawFixed
DropDownCount = 10
ItemHeight = 16
ItemIndex = 0
TabOrder = 0
Text = 'Auto detect'
Items.Strings = (
'Auto detect'
'Text'
'Binary'
'Hex'
'Image/Multimedia'
'Internet'
'Unicode'
'Plugins'
'RTF/UTF-8')
end
object edFileSort: TComboBox
Left = 144
Top = 64
Width = 153
Height = 22
Style = csOwnerDrawFixed
ItemHeight = 16
ItemIndex = 0
TabOrder = 2
Text = 'File name'
Items.Strings = (
'File name'
'File name (desc.)'
'Extension'
'Extension (desc.)')
end
end
object boxPrint: TGroupBox
Left = 8
Top = 136
Width = 305