-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathUFormView.dfm
4268 lines (4268 loc) · 240 KB
/
UFormView.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 FormViewUV: TFormViewUV
Left = 308
Top = 173
Width = 912
Height = 492
Caption = 'Universal Viewer'
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
Icon.Data = {
0000010002001010100001000400280100002600000010100000010008006805
00004E0100002800000010000000200000000100040000000000C00000000000
0000000000001000000000000000000000000000800000800000008080008000
00008000800080800000C0C0C000808080000000FF0000FF000000FFFF00FF00
0000FF00FF00FFFF0000FFFFFF000000000000000000087777777777700008FF
FFFFFFFF700008F77777777F700008FFFFFFFFFF700008F77777777F700008FF
FFFFFFFF700008F77777777F700008FFFFFFFFFF700008F77777777F700008FF
FFFFFFFF700008F777777700000008FFFFFFFF7F800008FFFFFFFF7800000888
88888880000000000000000000008003101480030000800300008003C0C08003
C0C08003C0C08003FFFF8003C0C0800300008003FFFF8003FFFF8003FFFF8007
FFFF800FC0C0801F0000FFFFC0C0280000001000000020000000010008000000
0000400100000000000000000000000100000000000000000000000080000080
000000808000800000008000800080800000C0C0C000808080000000FF0000FF
000000FFFF00FF000000FF00FF00FFFF0000FFFFFF0009090900121212001F1F
1F002C2C2C003939390045454500525252005F5F5F006C6C6C00787878008585
8500929292009F9F9F00ABABAB00B8B8B800C5C5C500D2D2D200DEDEDE00EBEB
EB00F8F8F800F0FBFF00A4A0A000C0DCC000F0CAA60000003E0000005D000000
7C0000009B000000BA000000D9000000F0002424FF004848FF006C6CFF009090
FF00B4B4FF0000143E00001E5D0000287C0000329B00003CBA000046D9000055
F000246DFF004885FF006C9DFF0090B5FF00B4CDFF00002A3E00003F5D000054
7C0000699B00007EBA000093D90000AAF00024B6FF0048C2FF006CCEFF0090DA
FF00B4E6FF00003E3E00005D5D00007C7C00009B9B0000BABA0000D9D90000F0
F00024FFFF0048FFFF006CFFFF0090FFFF00B4FFFF00003E2A00005D3F00007C
5400009B690000BA7E0000D9930000F0AA0024FFB60048FFC2006CFFCE0090FF
DA00B4FFE600003E1400005D1E00007C2800009B320000BA3C0000D9460000F0
550024FF6D0048FF85006CFF9D0090FFB500B4FFCD00003E0000005D0000007C
0000009B000000BA000000D9000000F0000024FF240048FF48006CFF6C0090FF
9000B4FFB400143E00001E5D0000287C0000329B00003CBA000046D9000055F0
00006DFF240085FF48009DFF6C00B5FF9000CDFFB4002A3E00003F5D0000547C
0000699B00007EBA000093D90000AAF00000B6FF2400C2FF4800CEFF6C00DAFF
9000E6FFB4003E3E00005D5D00007C7C00009B9B0000BABA0000D9D90000F0F0
0000FFFF2400FFFF4800FFFF6C00FFFF9000FFFFB4003E2A00005D3F00007C54
00009B690000BA7E0000D9930000F0AA0000FFB62400FFC24800FFCE6C00FFDA
9000FFE6B4003E1400005D1E00007C2800009B320000BA3C0000D9460000F055
0000FF6D2400FF854800FF9D6C00FFB59000FFCDB4003E0000005D0000007C00
00009B000000BA000000D9000000F0000000FF242400FF484800FF6C6C00FF90
9000FFB4B4003E0014005D001E007C0028009B003200BA003C00D9004600F000
5500FF246D00FF488500FF6C9D00FF90B500FFB4CD003E002A005D003F007C00
54009B006900BA007E00D9009300F000AA00FF24B600FF48C200FF6CCE00FF90
DA00FFB4E6003E003E005D005D007C007C009B009B00FCFCFC00F9F9F900F6F6
F600A3A3A300F2F2F200FDFDFD00D6A6A600D2A3A3006B6B6B0041414100F3F3
F300F0F0F000CECECE0033333300FAFAFA00D4A5A500D2A2A200ECECEC00F5F5
F500EFEFEF00D3A3A300D0A0A000E9E9E900CE9F9F00E6E6E600F1F1F100EEEE
EE00E8E8E800E5E5E500D0A1A100CE9E9E00E2E2E2000008EDEDEDEDEDEDEDED
EDEDEDED00000008ECECECECECECECECECECECED00000008FAFA2222FBFBFCFC
FFFFECED00000008F3FDFDFDFDFEFEFEFEFFECED00000008F9F9FAFA2222FBFB
FCFCECED00000008EAF0F0F0F0F0F7F7F7F8ECED00000008F2F2E4E4F3F3F1F1
F6F6ECED00000008E2F4F4F4F4F4F5F5F5F6ECED000000082323F2F2E4E4F3F3
F1F1ECED00000008EEEFEFEFEFF0F0F0F0F1ECED00000008E0E0E1E1E2E2EAEA
EBEBECED00000008E5E6E6E6E6E6E7E7E8E9E908000000080F0FE0E0E1E1E2E2
E3E40800000000080F0F0FE0E0E1E1E2E3080000000000080808080808080808
080000000000000000000000000000000000000000008003FFFF8003FFFF8003
FFFF8003FFFF8003FFFF8003FFFF8003FFFF8003FFFF8003FFFF8003FFFF8003
FFFF8003FFFF8007FFFF800FFFFF801FFFFFFFFFFFFF}
KeyPreview = True
Menu = MainMenu1
OldCreateOrder = False
WindowState = wsMaximized
OnClose = TntFormClose
OnCloseQuery = TntFormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnResize = TntFormResize
OnShow = FormShow
PixelsPerInch = 96
TextHeight = 13
object Toolbar: TToolBar
Left = 0
Top = 0
Width = 904
Height = 26
AutoSize = True
Caption = 'Toolbar'
Images = ImageList1
ParentShowHint = False
PopupMenu = MenuToolbar
ShowHint = True
TabOrder = 0
object ToolButton4: TToolButton
Left = 0
Top = 2
Caption = 'ToolButton4'
ImageIndex = 0
Visible = False
end
end
object ViewerPanel: TPanel
Left = 0
Top = 26
Width = 522
Height = 420
Align = alClient
BevelOuter = bvNone
TabOrder = 1
object Viewer: TATViewer
Left = 0
Top = 0
Width = 522
Height = 420
Align = alClient
BevelOuter = bvNone
Caption = 'No file loaded'
TabOrder = 0
TextFont.Charset = DEFAULT_CHARSET
TextFont.Color = clWindowText
TextFont.Height = -13
TextFont.Name = 'Courier New'
TextFont.Style = []
TextFontOEM.Charset = OEM_CHARSET
TextFontOEM.Color = clWindowText
TextFontOEM.Height = -12
TextFontOEM.Name = 'Terminal'
TextFontOEM.Style = []
TextFontFooter.Charset = DEFAULT_CHARSET
TextFontFooter.Color = clBlack
TextFontFooter.Height = -12
TextFontFooter.Name = 'Arial'
TextFontFooter.Style = []
TextFontGutter.Charset = DEFAULT_CHARSET
TextFontGutter.Color = clBlack
TextFontGutter.Height = -12
TextFontGutter.Name = 'Courier New'
TextFontGutter.Style = []
MediaLoop = False
MediaShowControls = True
MediaShowTracker = True
OnTextFileReload = ViewerTextFileReload
IsFocused = True
OnMediaPlaybackEnd = ViewerMediaPlaybackEnd
OnFileUnload = ViewerFileUnload
object StatusBar1: TStatusBar
Left = 0
Top = 401
Width = 522
Height = 19
Panels = <
item
Alignment = taCenter
Width = 80
end
item
Alignment = taCenter
Width = 140
end
item
Alignment = taCenter
Width = 320
end
item
Alignment = taCenter
Width = 150
end
item
Width = 120
end>
OnClick = StatusBar1Click
end
end
end
object Panel1: TPanel
Left = 522
Top = 26
Width = 382
Height = 420
Align = alRight
TabOrder = 2
object GroupBox1: TGroupBox
Left = 1
Top = 1
Width = 380
Height = 56
Align = alTop
Caption = 'Seleccione el tipo de archivo:'
TabOrder = 0
object cboTipoArchivo: TComboBox
Left = 5
Top = 16
Width = 220
Height = 21
Style = csDropDownList
ItemHeight = 13
TabOrder = 0
OnChange = cboTipoArchivoChange
Items.Strings = (
'Carpeta_Empleado'
'Documentos_Fecha'
'Electronico')
end
object Button2: TButton
Left = 296
Top = 12
Width = 81
Height = 25
Caption = 'Subir Archivos'
TabOrder = 1
OnClick = Button2Click
end
object Button1: TButton
Left = 228
Top = 12
Width = 63
Height = 25
Caption = 'Refrescar'
TabOrder = 2
OnClick = Button1Click
end
end
object valEditor: TValueListEditor
Left = 1
Top = 57
Width = 380
Height = 15
Align = alClient
Options = [goFixedVertLine, goFixedHorzLine, goVertLine, goHorzLine, goDrawFocusSelected, goColSizing, goEditing, goThumbTracking]
TabOrder = 1
TitleCaptions.Strings = (
'Campo'
'Valor')
OnKeyPress = valEditorKeyPress
ColWidths = (
169
205)
end
object Panel2: TPanel
Left = 1
Top = 72
Width = 380
Height = 347
Align = alBottom
TabOrder = 2
object Memo1: TMemo
Left = 1
Top = 1
Width = 378
Height = 329
Align = alClient
BorderStyle = bsNone
Font.Charset = ANSI_CHARSET
Font.Color = clWindowText
Font.Height = -9
Font.Name = 'Lucida Console'
Font.Style = []
ParentFont = False
TabOrder = 0
end
object pbProgress: TProgressBar
Left = 1
Top = 330
Width = 378
Height = 16
Align = alBottom
TabOrder = 1
end
end
end
object MainMenu1: TMainMenu
Images = ImageList1
Left = 328
Top = 208
object mnuFile: TMenuItem
Caption = '&File'
object mnuFileOpen: TMenuItem
Caption = 'Open...'
ImageIndex = 0
ShortCut = 16463
OnClick = mnuFileOpenClick
end
object mnuFileOpenRecent: TMenuItem
Caption = 'Recent'
SubMenuImages = ImageList1
object mnuRecent0: TMenuItem
Caption = '0'
Visible = False
OnClick = mnuRecent0Click
OnDrawItem = mnuRecent0DrawItem
OnMeasureItem = mnuRecent0MeasureItem
end
object mnuRecent1: TMenuItem
Caption = '1'
Visible = False
OnClick = mnuRecent0Click
OnDrawItem = mnuRecent0DrawItem
OnMeasureItem = mnuRecent0MeasureItem
end
object mnuRecent2: TMenuItem
Caption = '2'
Visible = False
OnClick = mnuRecent0Click
OnDrawItem = mnuRecent0DrawItem
OnMeasureItem = mnuRecent0MeasureItem
end
object mnuRecent3: TMenuItem
Caption = '3'
Visible = False
OnClick = mnuRecent0Click
OnDrawItem = mnuRecent0DrawItem
OnMeasureItem = mnuRecent0MeasureItem
end
object mnuRecent4: TMenuItem
Caption = '4'
Visible = False
OnClick = mnuRecent0Click
OnDrawItem = mnuRecent0DrawItem
OnMeasureItem = mnuRecent0MeasureItem
end
object mnuRecent5: TMenuItem
Caption = '5'
Visible = False
OnClick = mnuRecent0Click
OnDrawItem = mnuRecent0DrawItem
OnMeasureItem = mnuRecent0MeasureItem
end
object mnuRecent6: TMenuItem
Caption = '6'
Visible = False
OnClick = mnuRecent0Click
OnDrawItem = mnuRecent0DrawItem
OnMeasureItem = mnuRecent0MeasureItem
end
object mnuRecent7: TMenuItem
Caption = '7'
Visible = False
OnClick = mnuRecent0Click
OnDrawItem = mnuRecent0DrawItem
OnMeasureItem = mnuRecent0MeasureItem
end
object mnuRecent8: TMenuItem
Caption = '8'
Visible = False
OnClick = mnuRecent0Click
OnDrawItem = mnuRecent0DrawItem
OnMeasureItem = mnuRecent0MeasureItem
end
object mnuRecent9: TMenuItem
Caption = '9'
Visible = False
OnClick = mnuRecent0Click
OnDrawItem = mnuRecent0DrawItem
OnMeasureItem = mnuRecent0MeasureItem
end
object N9: TMenuItem
Caption = '-'
end
object mnuRecentClear: TMenuItem
Caption = 'Clear list'
ShortCut = 24622
OnClick = mnuRecentClearClick
end
end
object mnuFileReload: TMenuItem
Caption = 'Reload'
ImageIndex = 9
ShortCut = 16466
OnClick = mnuFileReloadClick
end
object mnuFileSaveAs: TMenuItem
Caption = 'Save as...'
ImageIndex = 1
ShortCut = 16467
OnClick = mnuFileSaveAsClick
end
object mnuFileClose: TMenuItem
Caption = 'Close'
ImageIndex = 10
ShortCut = 16471
OnClick = mnuFileCloseClick
end
object mnuSep: TMenuItem
Caption = '-'
end
object mnuFilePrint: TMenuItem
Caption = 'Print...'
ImageIndex = 6
ShortCut = 16464
OnClick = mnuFilePrintClick
end
object mnuFilePrintPreview: TMenuItem
Caption = 'Print preview...'
ImageIndex = 7
OnClick = mnuFilePrintPreviewClick
end
object mnuFilePrintSetup: TMenuItem
Caption = 'Page setup...'
ImageIndex = 8
OnClick = mnuFilePrintSetupClick
end
object N5: TMenuItem
Caption = '-'
end
object mnuFilePrev: TMenuItem
Caption = 'Previous file'
ImageIndex = 2
ShortCut = 16417
OnClick = mnuFilePrevClick
end
object mnuFileNext: TMenuItem
Caption = 'Next file'
ImageIndex = 3
ShortCut = 16418
OnClick = mnuFileNextClick
end
object N14: TMenuItem
Caption = '-'
end
object mnuFileRename: TMenuItem
Caption = 'Rename...'
ImageIndex = 4
ShortCut = 113
OnClick = mnuFileRenameClick
end
object mnuFileCopy: TMenuItem
Caption = 'Copy to folder...'
ImageIndex = 11
ShortCut = 116
OnClick = mnuFileCopyClick
end
object mnuFileMove: TMenuItem
Caption = 'Move to folder...'
ImageIndex = 12
ShortCut = 117
OnClick = mnuFileMoveClick
end
object mnuFileDelete: TMenuItem
Caption = 'Delete...'
ImageIndex = 5
ShortCut = 46
OnClick = mnuFileDeleteClick
end
object mnuFileProp: TMenuItem
Caption = 'Properties...'
ImageIndex = 13
ShortCut = 32781
OnClick = mnuFilePropClick
end
object mnuFileCopyFN: TMenuItem
Caption = 'Copy filename'
ImageIndex = 15
ShortCut = 16452
OnClick = mnuFileCopyFNClick
end
object mnuFileEmail: TMenuItem
Caption = 'Email...'
ImageIndex = 85
ShortCut = 16453
OnClick = mnuFileEmailClick
end
object N8: TMenuItem
Caption = '-'
end
object mnuFileExit: TMenuItem
Caption = 'Exit'
ImageIndex = 14
ShortCut = 27
OnClick = mnuFileExitClick
end
end
object mnuEdit: TMenuItem
Caption = '&Edit'
object mnuEditCopy: TMenuItem
Caption = 'Copy'
ImageIndex = 15
ShortCut = 16451
OnClick = mnuEditCopyClick
end
object mnuEditCopyHex: TMenuItem
Caption = 'Copy hex'
ImageIndex = 16
OnClick = mnuEditCopyHexClick
end
object mnuEditCopyToFile: TMenuItem
Caption = 'Copy to file...'
ImageIndex = 17
OnClick = mnuEditCopyToFileClick
end
object N22: TMenuItem
Caption = '-'
end
object mnuEditPaste: TMenuItem
Caption = 'Paste'
ImageIndex = 83
ShortCut = 16470
OnClick = mnuEditPasteClick
end
object mnuEditSelectAll: TMenuItem
Caption = 'Select all'
ImageIndex = 18
ShortCut = 16449
OnClick = mnuEditSelectAllClick
end
object N4: TMenuItem
Caption = '-'
end
object mnuEditFind: TMenuItem
Caption = 'Find...'
ImageIndex = 19
ShortCut = 16454
OnClick = mnuEditFindClick
end
object mnuEditFindNext: TMenuItem
Caption = 'Find next'
ImageIndex = 20
ShortCut = 114
OnClick = mnuEditFindNextClick
end
object mnuEditFindPrev: TMenuItem
Caption = 'Find previous'
ImageIndex = 21
ShortCut = 16498
OnClick = mnuEditFindPrevClick
end
object N7: TMenuItem
Caption = '-'
end
object mnuEditGoto: TMenuItem
Caption = 'Go to...'
ImageIndex = 22
ShortCut = 16455
OnClick = mnuEditGotoClick
end
end
object mnuView: TMenuItem
Caption = '&View'
object mnuViewModeMenu: TMenuItem
Caption = 'Modes (menu)'
GroupIndex = 1
ImageIndex = 23
Visible = False
OnClick = mnuViewModeMenuClick
end
object mnuViewMode1: TMenuItem
Caption = '&1 Text'
Checked = True
GroupIndex = 1
ImageIndex = 23
RadioItem = True
ShortCut = 49
OnClick = mnuViewMode1Click
end
object mnuViewMode2: TMenuItem
Caption = '&2 Binary (fixed line length)'
GroupIndex = 1
ImageIndex = 24
RadioItem = True
ShortCut = 50
OnClick = mnuViewMode2Click
end
object mnuViewMode3: TMenuItem
Caption = '&3 Hex'
GroupIndex = 1
ImageIndex = 25
RadioItem = True
ShortCut = 51
OnClick = mnuViewMode3Click
end
object mnuViewMode4: TMenuItem
Caption = '&4 Image/Multimedia'
GroupIndex = 1
ImageIndex = 26
RadioItem = True
ShortCut = 52
OnClick = mnuViewMode4Click
end
object mnuViewMode5: TMenuItem
Caption = '&5 Internet/Office'
GroupIndex = 1
ImageIndex = 27
RadioItem = True
ShortCut = 53
OnClick = mnuViewMode5Click
end
object mnuViewMode6: TMenuItem
Caption = '&6 Unicode'
GroupIndex = 1
ImageIndex = 28
RadioItem = True
ShortCut = 54
OnClick = mnuViewMode6Click
end
object mnuViewMode7: TMenuItem
Caption = '&7 Plugins'
GroupIndex = 1
ImageIndex = 29
RadioItem = True
ShortCut = 55
OnClick = mnuViewMode7Click
end
object mnuViewMode8: TMenuItem
Caption = '&8 RTF/UTF-8'
GroupIndex = 1
ImageIndex = 30
RadioItem = True
ShortCut = 56
OnClick = mnuViewMode8Click
end
object N2: TMenuItem
Caption = '-'
GroupIndex = 1
end
object mnuViewTextMenu: TMenuItem
Caption = 'Text'
GroupIndex = 3
object mnuViewTextWrap: TMenuItem
Caption = 'Word wrap'
Checked = True
GroupIndex = 3
ImageIndex = 77
ShortCut = 87
OnClick = mnuViewTextWrapClick
end
object mnuViewTextEncSubmenu: TMenuItem
Caption = 'Encoding'
GroupIndex = 3
object mnuViewTextANSI: TMenuItem
Caption = '&ANSI'
Checked = True
GroupIndex = 3
ImageIndex = 68
RadioItem = True
ShortCut = 65
OnClick = mnuViewTextANSIClick
end
object mnuViewTextOEM: TMenuItem
Caption = '&OEM'
GroupIndex = 3
ImageIndex = 69
RadioItem = True
ShortCut = 83
OnClick = mnuViewTextOEMClick
end
object mnuViewTextEBCDIC: TMenuItem
Caption = '&EBCDIC'
GroupIndex = 3
ImageIndex = 71
RadioItem = True
ShortCut = 69
OnClick = mnuViewTextEBCDICClick
end
object mnuViewTextKOI8: TMenuItem
Caption = '&KOI8'
GroupIndex = 3
ImageIndex = 70
RadioItem = True
ShortCut = 75
OnClick = mnuViewTextKOI8Click
end
object mnuViewTextISO: TMenuItem
Caption = '&ISO'
GroupIndex = 3
ImageIndex = 73
RadioItem = True
ShortCut = 79
OnClick = mnuViewTextISOClick
end
object mnuViewTextMac: TMenuItem
Caption = '&Mac'
GroupIndex = 3
ImageIndex = 72
RadioItem = True
ShortCut = 77
OnClick = mnuViewTextMacClick
end
object N19: TMenuItem
Caption = '-'
GroupIndex = 3
end
object mnuViewTextEncPrev: TMenuItem
Caption = 'Previous encoding'
GroupIndex = 3
ImageIndex = 74
ShortCut = 16502
OnClick = mnuViewTextEncPrevClick
end
object mnuViewTextEncNext: TMenuItem
Caption = 'Next encoding'
GroupIndex = 3
ImageIndex = 75
ShortCut = 16503
OnClick = mnuViewTextEncNextClick
end
object N21: TMenuItem
Caption = '-'
GroupIndex = 3
end
object mnuViewTextEncMenu: TMenuItem
Caption = 'Encodings &menu...'
GroupIndex = 3
ImageIndex = 76
ShortCut = 119
OnClick = mnuViewTextEncMenuClick
end
end
object mnuViewTextNonPrint: TMenuItem
Caption = 'Non-printable'
Checked = True
GroupIndex = 3
ImageIndex = 78
ShortCut = 78
OnClick = mnuViewTextNonPrintClick
end
object mnuViewTextTail: TMenuItem
Caption = 'Follow tail'
Checked = True
GroupIndex = 3
ImageIndex = 79
OnClick = mnuViewTextTailClick
end
end
object mnuViewImageMenu: TMenuItem
Caption = 'Multimedia'
GroupIndex = 3
object mnuViewImageFit: TMenuItem
Caption = '&Fit image to window'
Checked = True
GroupIndex = 3
ImageIndex = 38
ShortCut = 70
OnClick = mnuViewImageFitClick
end
object mnuViewImageFitOnlyBig: TMenuItem
Caption = 'Fit only big images'
Checked = True
GroupIndex = 3
ImageIndex = 39
ShortCut = 76
OnClick = mnuViewImageFitOnlyBigClick
end
object mnuViewImageCenter: TMenuItem
Caption = 'Center image'
Checked = True
GroupIndex = 3
ImageIndex = 40
ShortCut = 67
OnClick = mnuViewImageCenterClick
end
object mnuViewImageFitWindow: TMenuItem
Caption = 'Fit window to image'
Checked = True
GroupIndex = 3
ImageIndex = 41
ShortCut = 71
OnClick = mnuViewImageFitWindowClick
end
object N15: TMenuItem
Caption = '-'
GroupIndex = 3
end
object mnuViewImageShowEXIF: TMenuItem
Caption = 'Show EXIF...'
GroupIndex = 3
ImageIndex = 82
ShortCut = 88
OnClick = mnuViewImageShowEXIFClick
end
object mnuViewImageShowLabel: TMenuItem
Caption = 'Show info label'
Checked = True
GroupIndex = 3
ImageIndex = 48
ShortCut = 73
OnClick = mnuViewImageShowLabelClick
end
object N3: TMenuItem
Caption = '-'
GroupIndex = 3
end
object mnuViewMediaEffect: TMenuItem
Caption = 'Image effect'
GroupIndex = 3
object mnuViewImageRotateRight: TMenuItem
Caption = 'Rotate to the right'
GroupIndex = 3
ImageIndex = 49
OnClick = btnImageRotate90Click
end
object mnuViewImageRotateLeft: TMenuItem
Caption = 'Rotate to the left'
GroupIndex = 3
ImageIndex = 50
OnClick = btnImageRotate270Click
end
object mnuViewImageFlipVert: TMenuItem
Caption = 'Flip vertically'
GroupIndex = 3
ImageIndex = 51
OnClick = mnuViewImageFlipVertClick
end
object mnuViewImageFlipHorz: TMenuItem
Caption = 'Flip horizontally'
GroupIndex = 3
ImageIndex = 52
OnClick = mnuViewImageFlipHorzClick
end
object mnuViewImageGrayscale: TMenuItem
Caption = 'Convert to grayscale'
GroupIndex = 3
ImageIndex = 53
OnClick = mnuViewImageGrayscaleClick
end
object mnuViewImageNegative: TMenuItem
Caption = 'Convert to negative'
GroupIndex = 3
ImageIndex = 54
OnClick = mnuViewImageNegativeClick
end
end
object mnuViewMediaPlayback: TMenuItem
Caption = 'Playback'
GroupIndex = 3
object mnuViewMediaPlayPause: TMenuItem
Caption = 'Play/Pause'
GroupIndex = 3
ImageIndex = 64
OnClick = mnuViewMediaPlayPauseClick
end
object mnuViewMediaLoop: TMenuItem
Caption = 'Loop'
Checked = True
GroupIndex = 3
ImageIndex = 84
OnClick = mnuViewMediaLoopClick
end
object N11: TMenuItem
Caption = '-'
GroupIndex = 3
end
object mnuViewMediaVolumeUp: TMenuItem
Caption = 'Vol up'
GroupIndex = 3
ImageIndex = 65
OnClick = mnuViewMediaVolumeUpClick
end
object mnuViewMediaVolumeDown: TMenuItem
Caption = 'Vol down'
GroupIndex = 3
ImageIndex = 66
OnClick = mnuViewMediaVolumeDownClick
end
object mnuViewMediaVolumeMute: TMenuItem
Caption = 'Mute'
Checked = True
GroupIndex = 3
ImageIndex = 67
ShortCut = 16461
OnClick = mnuViewMediaVolumeMuteClick
end
end
end
object mnuViewWebMenu: TMenuItem
Caption = 'Internet'
GroupIndex = 3
object mnuViewWebGoBack: TMenuItem
Caption = 'Go back'
GroupIndex = 3
ImageIndex = 55
OnClick = mnuViewWebGoBackClick
end
object mnuViewWebGoForward: TMenuItem
Caption = 'Go forward'
GroupIndex = 3
ImageIndex = 56
OnClick = mnuViewWebGoForwardClick
end
object N12: TMenuItem
Caption = '-'
GroupIndex = 3
end
object mnuViewWebOffline: TMenuItem
Caption = 'Offline'
Checked = True
GroupIndex = 3
ImageIndex = 57
OnClick = mnuViewWebOfflineClick
end
end
object N6: TMenuItem
Caption = '-'
GroupIndex = 3
end
object mnuViewInterfaceMenu: TMenuItem
Caption = 'Interface'
GroupIndex = 3
object mnuViewShowNav: TMenuItem
Caption = 'Navigation panel'
Checked = True
ImageIndex = 58
ShortCut = 115
OnClick = mnuViewShowNavClick
end
object mnuViewShowMenu: TMenuItem
Caption = 'Menu bar'
Checked = True
ImageIndex = 42
ShortCut = 41037
OnClick = mnuViewShowMenuClick
end
object mnuViewShowToolbar: TMenuItem
Caption = 'Toolbar'
Checked = True
ImageIndex = 43
ShortCut = 41044
OnClick = mnuViewShowToolbarClick
end
object mnuViewShowStatusbar: TMenuItem
Caption = 'Status bar'
Checked = True
ImageIndex = 44
ShortCut = 41043
OnClick = mnuViewShowStatusbarClick
end
end
object mnuViewZoomMenu: TMenuItem
Caption = 'Zoom'
GroupIndex = 3
object mnuViewZoomIn: TMenuItem
Caption = 'Zoom in'
GroupIndex = 3
ImageIndex = 45
ShortCut = 107
OnClick = mnuViewZoomInClick
end
object mnuViewZoomOut: TMenuItem
Caption = 'Zoom out'
GroupIndex = 3
ImageIndex = 46
ShortCut = 109
OnClick = mnuViewZoomOutClick
end
object mnuViewZoomOriginal: TMenuItem
Caption = 'Original size'
GroupIndex = 3
ImageIndex = 47
ShortCut = 106
OnClick = mnuViewZoomOriginalClick
end
end
object mnuViewAlwaysOnTop: TMenuItem
Caption = 'Always on top'
Checked = True
GroupIndex = 3
ImageIndex = 37
OnClick = mnuViewAlwaysOnTopClick
end
object mnuViewFullScreen: TMenuItem
Caption = 'Full screen'
Checked = True
GroupIndex = 3
ImageIndex = 36
ShortCut = 122
OnClick = mnuViewFullScreenClick
end
end
object mnuOptions: TMenuItem
Caption = '&Options'
object mnuOptionsConfigure: TMenuItem
Caption = '&Configure...'
ImageIndex = 31
ShortCut = 120
OnClick = mnuOptionsConfigureClick
end
object mnuOptionsPlugins: TMenuItem
Caption = 'Configure &plugins...'
ImageIndex = 32
ShortCut = 121
OnClick = mnuOptionsPluginsClick
end
object N1: TMenuItem
Caption = '-'
end
object mnuOptionsToolbar: TMenuItem
Caption = 'Customize toolbar...'
ImageIndex = 43
OnClick = mnuToolbarCustomizeClick
end
object mnuOptionsUserTools: TMenuItem
Caption = 'Configure user tools...'
ImageIndex = 33
OnClick = mnuOptionsUserToolsClick
end
object N16: TMenuItem
Caption = '-'
end
object mnuOptionsAdvanced: TMenuItem
Caption = 'Advanced'
object mnuOptionsEditIni: TMenuItem
Caption = 'Manually edit configuration file'
ImageIndex = 35
OnClick = mnuOptionsEditIniClick