-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMainUnit.dfm
1545 lines (1545 loc) · 63.6 KB
/
MainUnit.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 Form1: TForm1
Left = 195
Top = 121
AlphaBlend = True
AutoScroll = False
Caption = 'File-browser'
ClientHeight = 429
ClientWidth = 628
Color = clBtnFace
Constraints.MinHeight = 447
Constraints.MinWidth = 635
DockSite = True
Font.Charset = RUSSIAN_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Microsoft Sans Serif'
Font.Style = []
Icon.Data = {
0000010002002020100000000000E80200002600000010101000000000002801
00000E0300002800000020000000400000000100040000000000800200000000
0000000000000000000000000000000000000000800000800000008080008000
0000800080008080000080808000C0C0C0000000FF0000FF000000FFFF00FF00
0000FF00FF00FFFF0000FFFFFF00000000000000000000000000000000000000
00000000000000000004CEC0000000000000000000000000004CEEC000000000
000000000000000004CEECC00000000000000000000000004CEECC0000000000
0000000000000004CEECC00000007333333333333333334CEECC033333307FB8
B8B8B8B8B8B8B4CEECC038B8B8307F8B8B8B8B8B8B8B7CEECC038B8B8B307FB8
B8B8B8B8B8B78FECC038B8B8B8307F8B8B8B80000078F87C038B8B8B8B307FB8
B8B006666600877038B8B8B8B8307F8B8B768E8E8E6607038B8B8B8B8B307FB8
B768E8E8E8E66038B8B8B8B8B8307F8B878EFE8E8E8E60788B8B8B8B8B307FB8
78EFE8E8E8E8E607B8B8B8B8B8307F8B7EFEFE8E8E8E86038B8B8B8B8B307FB8
78EFF8E8E8E8E607B8B8B8B8B8307F8B7EFEFF8E8E8E86038B8B8B8B8B307FB8
78EFFFE8E8E8E607B8B8B8B8B8307F8B87FEFFFE8E8E80388B8B8B8B8B307FB8
B78FEFEFE8E86038B8B8B8B8B8307F8B8B78FEFEFE86078B8B8B8B8B8B307FB8
B8B778E8E70078B8B8B8B8B8B8307F8B8B8B877770338B8B8B8B8B8B8B307FB8
B8B8B8B8B8B8B8B8B8B8B8B8B8307FFFFFFFFFFFFFFFFFFFFFFFFFFFFF007888
888888888888777777777777770007FB8B8B8B8B8B870000000000000000007F
B8B8B8B8B87000000000000000000007FFFFFFFFF70000000000000000000000
7777777770000000000000000000FFFFFF1FFFFFFE0FFFFFFC0FFFFFF80FFFFF
F01F800000010000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000001000000038000
FFFFC001FFFFE003FFFFF007FFFF280000001000000020000000010004000000
0000C00000000000000000000000000000000000000000000000000080000080
00000080800080000000800080008080000080808000C0C0C0000000FF0000FF
000000FFFF00FF000000FF00FF00FFFF0000FFFFFF0000000000000000000000
00000004EC0000000000004ECC000000000004ECC000733333334ECC33007FB8
70078CC3B3007F878E80733B83007F7FE8E803B8B3007F7EFE8E038B83007F7F
EFE807B8B3007F87FEF07B8B83007FB87707B8B8B3007FFFFFFFFFFFF30078B8
B8B877777700078B8B87000000000077777000000000FFF30000FFE10000FFC1
0000800300000001000000010000000100000001000000010000000100000001
000000010000000100000003000080FF0000C1FF0000}
KeyPreview = True
Menu = MainMenu1
OldCreateOrder = False
Position = poScreenCenter
ScreenSnap = True
ShowHint = True
Visible = True
OnClose = FormClose
OnCreate = FormCreate
OnKeyDown = FormKeyDown
OnResize = FormResize
PixelsPerInch = 96
TextHeight = 16
object PageControl1: TPageControl
Left = 0
Top = 0
Width = 628
Height = 429
ActivePage = PageMan
Align = alClient
TabOrder = 0
TabWidth = 130
OnChange = PageControl1Change
object PageMan: TTabSheet
Caption = 'File manager'
DesignSize = (
620
398)
object Drive: TDriveComboBox
Left = 8
Top = 8
Width = 313
Height = 22
TabOrder = 0
TextCase = tcUpperCase
OnChange = DriveChange
end
object FileList: TFileListBox
Left = 328
Top = 32
Width = 289
Height = 321
FileType = [ftReadOnly, ftHidden, ftSystem, ftArchive, ftNormal]
ItemHeight = 16
MultiSelect = True
PopupMenu = PopupMenu1
ShowGlyphs = True
TabOrder = 3
OnChange = FileListChange
OnDblClick = FileListDblClick
OnDragDrop = FileListDragDrop
OnEndDrag = FileListEndDrag
OnMouseDown = FileListMouseDown
end
object StatusBar: TStatusBar
Left = 0
Top = 360
Width = 620
Height = 38
AutoHint = True
Anchors = [akLeft, akTop, akRight, akBottom]
Panels = <
item
Text = 'File:'
Width = 400
end
item
Text = 'Size:'
Width = 300
end>
end
object Filter: TFilterComboBox
Left = 328
Top = 8
Width = 298
Height = 24
Anchors = [akLeft, akTop, akRight, akBottom]
FileList = FileList
Filter =
'All files(*.*)|*.*|Media|*.mp3;*.ogg;*.wav;*.mid;*.midi;*.ac3;*.' +
'aif;*.aifc;*.aiff;*.au;*.it;*.kar;*.mka;*.mod;*.mpa;*.wma;*.xm;*' +
'.3gp;*.asf;*.avi;*.divx;*.m1v;*.m2v;*.mkv;*.mov;*.mp4;*.mpe;*.mp' +
'eg;*.mpg;*.wm;*.wmv|Image|*.jpg;*.jpeg;*.gif;*.png;*.ico;*.bmp|T' +
'ext|*.txt;*.htm;*.html;*.xml;*.rtf;*.log;*.ini;*.inf;*.vbp;*.frm' +
';*.dpr;*.pas|Executable|*.exe;*.bat;*.com;*.lnk'
TabOrder = 2
end
object DirLine: TDirectoryOutline
Left = 8
Top = 32
Width = 313
Height = 321
Ctl3D = True
Font.Charset = RUSSIAN_CHARSET
Font.Color = clBlack
Font.Height = -13
Font.Name = 'Microsoft Sans Serif'
Font.Style = []
ItemHeight = 16
Options = []
ParentCtl3D = False
ParentFont = False
PictureLeaf.Data = {
46030000424D460300000000000036000000280000000E0000000E0000000100
2000000000001003000000000000000000000000000000000000800080008000
8000800080008000800080008000800080008000800080008000800080008000
8000800080008000800080008000800080008000800080008000800080008000
8000800080008000800080008000800080008000800080008000800080008000
8000800080008000800080008000800080008000800080008000800080008000
8000800080008000800080008000800080008000800080008000800080008000
8000800080000000000000000000000000000000000000000000000000000000
00000000000000000000000000008000800080008000800080000000000000FF
FF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FF
FF000000000080008000800080008000800000000000FFFFFF0000FFFF00FFFF
FF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF00000000008000
800080008000800080000000000000FFFF00FFFFFF0000FFFF00FFFFFF0000FF
FF00FFFFFF0000FFFF00FFFFFF0000FFFF000000000080008000800080008000
800000000000FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFF
FF0000FFFF00FFFFFF00000000008000800080008000800080000000000000FF
FF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FF
FF000000000080008000800080008000800000000000FFFFFF0000FFFF00FFFF
FF0000FFFF00FFFFFF0000FFFF00FFFFFF0000FFFF00FFFFFF00000000008000
8000800080008000800000000000000000000000000000000000000000000000
0000000000000000000000000000000000008000800080008000800080008000
80008000800000000000FFFFFF0000FFFF00FFFFFF0000FFFF00000000008000
8000800080008000800080008000800080008000800080008000800080008080
8000000000000000000000000000000000008080800080008000800080008000
8000800080008000800080008000800080008000800080008000800080008000
8000800080008000800080008000800080008000800080008000800080008000
80008000800080008000}
TabOrder = 1
TextCase = tcAsIs
OnChange = DirLineChange
OnDragDrop = DirLineDragDrop
OnEndDrag = DirLineEndDrag
Data = {10}
end
end
object PageMedia: TTabSheet
Caption = 'Media-player'
ImageIndex = 1
object Anim: TAnimate
Left = 0
Top = 0
Width = 620
Height = 249
AutoSize = False
StartFrame = 0
Timers = True
Transparent = False
end
object MGP: TGroupBox
Left = 0
Top = 256
Width = 609
Height = 41
Caption = 'Seek'
TabOrder = 0
object Pos: TScrollBar
Left = 2
Top = 18
Width = 605
Height = 21
Align = alClient
LargeChange = 5
PageSize = 0
TabOrder = 0
OnChange = PosChange
end
end
object btnPlay: TButton
Left = 96
Top = 352
Width = 81
Height = 25
Caption = 'Play'
TabOrder = 1
OnClick = btnPlayClick
end
object btnPause: TButton
Left = 184
Top = 352
Width = 81
Height = 25
Caption = 'Pause'
TabOrder = 2
OnClick = btnPauseClick
end
object btnStop: TButton
Left = 272
Top = 352
Width = 81
Height = 25
Caption = 'Stop'
TabOrder = 3
OnClick = btnStopClick
end
object btnPrev: TButton
Left = 8
Top = 352
Width = 81
Height = 25
Caption = 'Begining'
TabOrder = 4
OnClick = btnPrevClick
end
object btnNext: TButton
Left = 360
Top = 352
Width = 81
Height = 25
Caption = 'Ending'
TabOrder = 5
OnClick = btnNextClick
end
end
object PageImage: TTabSheet
Caption = 'Image Viewer'
ImageIndex = 2
object ImageP: TImage
Left = 0
Top = 0
Width = 620
Height = 398
Align = alClient
Center = True
IncrementalDisplay = True
Proportional = True
Transparent = True
end
end
object PageText: TTabSheet
Caption = 'Notepad'
ImageIndex = 3
object Wraper: TCheckBox
Left = 0
Top = 0
Width = 89
Height = 17
HelpType = htKeyword
HelpKeyword = 'Words wraped?'
Caption = 'Word wrap'
TabOrder = 0
OnClick = WraperClick
end
object Memo: TRichEdit
Left = 0
Top = 16
Width = 620
Height = 382
Align = alBottom
Font.Charset = RUSSIAN_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Microsoft Sans Serif'
Font.Style = []
HideSelection = False
HideScrollBars = False
ParentFont = False
PopupMenu = PopupMenu2
ScrollBars = ssBoth
TabOrder = 1
WantTabs = True
WordWrap = False
end
end
object PageCalc: TTabSheet
Caption = 'Calculator'
ImageIndex = 6
object Label1: TLabel
Left = 16
Top = 8
Width = 118
Height = 16
Caption = 'First number(also a)'
end
object Label2: TLabel
Left = 0
Top = 40
Width = 140
Height = 16
Caption = 'Second number(also b)'
end
object Label3: TLabel
Left = 96
Top = 72
Width = 41
Height = 16
Caption = 'Result:'
end
object CEA: TEdit
Left = 144
Top = 8
Width = 473
Height = 21
AutoSelect = False
AutoSize = False
TabOrder = 0
end
object CEB: TEdit
Left = 144
Top = 40
Width = 473
Height = 21
AutoSelect = False
AutoSize = False
TabOrder = 1
end
object CER: TEdit
Left = 144
Top = 72
Width = 473
Height = 21
AutoSelect = False
AutoSize = False
ReadOnly = True
TabOrder = 2
Text = 'Null'
end
object Group1: TGroupBox
Left = 16
Top = 104
Width = 305
Height = 281
Caption = 'Arithmetics'
TabOrder = 3
object Button1: TButton
Left = 16
Top = 24
Width = 137
Height = 33
Caption = 'Addition (a+b)'
TabOrder = 0
WordWrap = True
OnClick = Button1Click
end
object Button2: TButton
Left = 160
Top = 24
Width = 137
Height = 33
Caption = 'Subtract (a-b)'
TabOrder = 1
WordWrap = True
OnClick = Button2Click
end
object Button3: TButton
Left = 16
Top = 64
Width = 137
Height = 33
Caption = 'Multiplication (a*b)'
TabOrder = 2
WordWrap = True
OnClick = Button3Click
end
object Button4: TButton
Left = 160
Top = 64
Width = 137
Height = 33
Caption = 'Division (a/b)'
TabOrder = 3
WordWrap = True
OnClick = Button4Click
end
object Button5: TButton
Left = 16
Top = 104
Width = 281
Height = 17
Caption = 'Whole division (a\b)'
TabOrder = 4
WordWrap = True
OnClick = Button5Click
end
object Button6: TButton
Left = 16
Top = 128
Width = 137
Height = 33
Caption = 'Power (a^b)'
TabOrder = 5
WordWrap = True
OnClick = Button6Click
end
object Button7: TButton
Left = 160
Top = 128
Width = 137
Height = 33
Caption = 'Root(b \/- a)'
TabOrder = 6
WordWrap = True
OnClick = Button7Click
end
object Button8: TButton
Left = 16
Top = 168
Width = 89
Height = 41
Caption = 'Logarithm [log(b)a]'
TabOrder = 7
WordWrap = True
OnClick = Button8Click
end
object Button9: TButton
Left = 112
Top = 168
Width = 89
Height = 41
Caption = 'Clear(C)'
TabOrder = 8
WordWrap = True
OnClick = Button9Click
end
object Button10: TButton
Left = 208
Top = 168
Width = 91
Height = 41
Caption = 'In memory (M+)'
TabOrder = 9
WordWrap = True
OnClick = Button10Click
end
object Button11: TButton
Left = 16
Top = 216
Width = 137
Height = 49
Caption = 'From memory (MR)'
TabOrder = 10
WordWrap = True
OnClick = Button11Click
end
object Button12: TButton
Left = 160
Top = 216
Width = 137
Height = 49
Caption = 'Clear memory(MC)'
TabOrder = 11
WordWrap = True
OnClick = Button12Click
end
end
object Group2: TGroupBox
Left = 336
Top = 104
Width = 281
Height = 281
Caption = 'Trigonometrics'
TabOrder = 4
object Button13: TButton
Left = 16
Top = 24
Width = 57
Height = 33
Caption = 'Sin'
TabOrder = 0
OnClick = Button13Click
end
object Button14: TButton
Left = 16
Top = 64
Width = 57
Height = 33
Caption = 'Cosin'
TabOrder = 1
OnClick = Button14Click
end
object Button15: TButton
Left = 16
Top = 104
Width = 57
Height = 33
Caption = 'Tg'
TabOrder = 2
OnClick = Button15Click
end
object Button16: TButton
Left = 16
Top = 144
Width = 57
Height = 33
Caption = 'Ctg'
TabOrder = 3
OnClick = Button16Click
end
object Button17: TButton
Left = 80
Top = 24
Width = 81
Height = 33
Caption = 'Arcsin'
TabOrder = 4
OnClick = Button17Click
end
object Button18: TButton
Left = 80
Top = 64
Width = 81
Height = 33
Caption = 'Arccos'
TabOrder = 5
OnClick = Button18Click
end
object Button19: TButton
Left = 80
Top = 104
Width = 81
Height = 33
Caption = 'Arctg'
TabOrder = 6
OnClick = Button19Click
end
object Button20: TButton
Left = 80
Top = 144
Width = 81
Height = 33
Caption = 'Arcctg'
TabOrder = 7
OnClick = Button20Click
end
end
end
object PageKeyGen: TTabSheet
Caption = 'Key generator'
ImageIndex = 5
object Lbl1: TLabel
Left = 488
Top = 8
Width = 34
Height = 16
Caption = 'Rows'
end
object Lbl2: TLabel
Left = 488
Top = 64
Width = 52
Height = 16
Caption = 'Columns'
end
object MemoKeys: TMemo
Left = 0
Top = 0
Width = 481
Height = 398
Align = alLeft
HideSelection = False
Lines.Strings = (
'Ready!')
ReadOnly = True
ScrollBars = ssBoth
TabOrder = 0
WordWrap = False
end
object BtnGen: TButton
Left = 488
Top = 264
Width = 121
Height = 33
Caption = 'Generate!'
Font.Charset = RUSSIAN_CHARSET
Font.Color = clBlack
Font.Height = -16
Font.Name = 'Microsoft Sans Serif'
Font.Style = [fsBold]
ParentFont = False
TabOrder = 1
OnClick = BtnGenClick
end
object Spin1: TSpinEdit
Left = 488
Top = 32
Width = 121
Height = 26
AutoSelect = False
AutoSize = False
MaxValue = 0
MinValue = 0
TabOrder = 2
Value = 1
end
object Spin2: TSpinEdit
Left = 488
Top = 88
Width = 121
Height = 26
AutoSelect = False
AutoSize = False
MaxValue = 0
MinValue = 0
TabOrder = 3
Value = 8
end
object Group: TGroupBox
Left = 488
Top = 120
Width = 121
Height = 137
Caption = 'Symbols'
TabOrder = 4
object Radio1: TRadioButton
Left = 8
Top = 16
Width = 105
Height = 17
Caption = 'Numbers'
TabOrder = 0
end
object Radio2: TRadioButton
Left = 8
Top = 32
Width = 105
Height = 41
Caption = 'Numbers with capital latins'
TabOrder = 1
WordWrap = True
end
object Radio3: TRadioButton
Left = 8
Top = 72
Width = 105
Height = 41
Caption = 'numbers with small latins'
TabOrder = 2
WordWrap = True
end
object Radio4: TRadioButton
Left = 8
Top = 112
Width = 105
Height = 17
Caption = 'Any symbol'
Checked = True
TabOrder = 3
TabStop = True
end
end
end
object PageWeb: TTabSheet
HelpType = htKeyword
Caption = 'Web-browser'
ImageIndex = 4
object Tabs: TTabControl
Left = 0
Top = 0
Width = 620
Height = 398
Align = alClient
RaggedRight = True
TabHeight = 16
TabOrder = 0
Tabs.Strings = (
'New1'
'New2')
TabIndex = 0
OnChange = TabsChange
object Progress1: TGauge
Left = 4
Top = 379
Width = 612
Height = 15
Align = alBottom
BackColor = clBtnFace
Progress = 0
end
object Web: TWebBrowser
Left = 4
Top = 48
Width = 612
Height = 308
Align = alCustom
TabOrder = 0
OnProgressChange = WebProgressChange
OnNavigateComplete2 = WebNavigateComplete2
ControlData = {
4C000000413F0000D51F00000000000000000000000000000000000000000000
000000004C000000000000000000000001000000E0D057007335CF11AE690800
2B2E12620C000000000000004C0000000114020000000000C000000000000046
8000000000000000000000000000000000000000000000000000000000000000
00000000000000000100000000000000000000000000000000000000}
end
object WebAddress: TComboBox
Left = 0
Top = 24
Width = 505
Height = 24
ItemHeight = 16
TabOrder = 1
Text = 'about:Tabs'
OnKeyDown = WebAddressKeyDown
Items.Strings = (
'about:Tabs')
end
object StopBtn: TBitBtn
Left = 592
Top = 24
Width = 25
Height = 25
Hint = 'Stop'
HelpType = htKeyword
HelpKeyword = 'Stop button'
ModalResult = 3
TabOrder = 2
OnClick = StopBtnClick
Glyph.Data = {
DE010000424DDE01000000000000760000002800000024000000120000000100
0400000000006801000000000000000000001000000000000000000000000000
80000080000000808000800000008000800080800000C0C0C000808080000000
FF0000FF000000FFFF00FF000000FF00FF00FFFF0000FFFFFF00333333333333
333333333333333333333333000033338833333333333333333F333333333333
0000333911833333983333333388F333333F3333000033391118333911833333
38F38F333F88F33300003339111183911118333338F338F3F8338F3300003333
911118111118333338F3338F833338F3000033333911111111833333338F3338
3333F8330000333333911111183333333338F333333F83330000333333311111
8333333333338F3333383333000033333339111183333333333338F333833333
00003333339111118333333333333833338F3333000033333911181118333333
33338333338F333300003333911183911183333333383338F338F33300003333
9118333911183333338F33838F338F33000033333913333391113333338FF833
38F338F300003333333333333919333333388333338FFF830000333333333333
3333333333333333333888330000333333333333333333333333333333333333
0000}
Layout = blGlyphTop
NumGlyphs = 2
Style = bsNew
end
object Status: TStatusBar
Left = 4
Top = 356
Width = 612
Height = 23
Panels = <
item
Text = 'Webpage-address:'
Width = 104
end
item
Width = 500
end>
end
object ReloadBtn: TBitBtn
Left = 560
Top = 24
Width = 25
Height = 25
Hint = 'Reload'
HelpType = htKeyword
HelpKeyword = 'Reload button'
TabOrder = 4
OnClick = ReloadBtnClick
Glyph.Data = {
36030000424D3603000000000000360000002800000010000000100000000100
1800000000000003000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
5F00002A00000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000D771335B6510030000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
640044CD6753E27C08390C000000000000000000000000000000000000000000
003E0000000000000000000000000000410034B75162FB9546CF690020000000
0000000000000000000000000000000011872105390900000000000000000000
4E0047D6705CF58F62FB9515701E000000000000000000000000000000000000
1A99332BBA54044808000000000C001F903252EB8557F08A5CF58F30B04A0000
0000000000000000000000000000000017972E33CC652BBA54044E080D6F1742
D8724CE57F51EA8457F08A2DAC46000000000000000000000000000000000000
1594292DC65A33CC652BBA5433C66041DA7446DF794CE57F51EA84269F3D0000
0000000000000000000000000000000012912427C04E2DC65A33CC6535CE683A
D36D41DA7446DF7947DD7706560A000000000000000000000000000000000000
0F8E1D21BA4327C04E2DC65A33CC6535CE683AD36D40D9731F97360012000000
000000000000000000000000000000000B8B171BB43721BA4227C04D2CC55832
CB6335CE6828B14B001900000000000000000000000000000000000000000000
08870F15AE291AB33520B94026BF4C2CC55732CB6331C7610C5C160000000000
0000000000000000000000000000000005850A0FA81D15AE291AB33520B94026
BF4C2CC55732CB6331C6600C5E16000000000000000000000000000000000000
02820509A2120FA81D15AE291AB33520B94026BF4C2CC55732CB6331C6600E6D
1A00000000000000000000000000000000660000620000620000620000620000
6200006200006200006200006200006200000000000000000000}
Layout = blGlyphTop
Style = bsNew
end
object LoadBtn: TBitBtn
Left = 528
Top = 24
Width = 25
Height = 25
Hint = 'Go to'
HelpType = htKeyword
HelpKeyword = 'Load button'
TabOrder = 5
OnClick = LoadBtnClick
Glyph.Data = {
36030000424D3603000000000000360000002800000010000000100000000100
1800000000000003000000000000000000000000000000000000000000000000
006600282B0A2D230C2D260A2727082B2B000040000000000000000000000000
000000000000000000000000000000000066000066001743062B260A2C230C28
280B28280D2B2B00000000000000000000000000000000000000000000000000
0066000D901A026F040B5603252F092B260B2A26082E24093333000055000000
0000000000000000000000000000000000660014A02716AB2B07840F0362011E
39082A270B2D260D2D260D303010333300000000000000000000000000000000
00660019A5321CB53617B02D0C9517016A020D5203282A0A2A250D2924092929
0A1C1C000000000000000000000000000066001FAB3D22BB441CB53617B02D0F
A51E037906055E012036082A270B29260A2D26082B2B15000000000000000000
00660023B04629C25222BB441CB53617B02D0FA91F05880B016A01134A052A26
0B2D240C29290E2E2E0000000000000000660026B34D30C96029C25222BB441C
B53617B02D0FA91F089B10027103085B02243009272A0A24310C000000000000
00660027B34D33CC6630C96029C25222BB441CB53617B02D0EA41D037D060362
01262E0B26290A232E0C0000000000000066002DB95335CE6833CC6630C96029
C25222BB4415A128036F050B560329290A2A250B2C250C2B2B00000000000000
00660032BE583CD56F35CE6833CC6630C9601494280362011842062B270A2D24
0C2C250C24241240400000000000000000660036C25C43DC763CD56F2BBB550A
7913085A0222330929270A29260B2828082E2E00000000000000000000000000
0066003DC96349E27C25A842046D071646052B260B2D240B2A2A0A23230C2020
000000000000000000000000000000000066003CC55F158721055E0120360829
270B2A260A262608272714404000000000000000000000000000000000000000
006600006600104F04272C0A2C250A2A250929290A2020000000000000000000
000000000000000000000000000000000066001C3D082A280B2A270B2A2A061E
2D0F333300000000000000000000000000000000000000000000}
Layout = blGlyphTop
Style = bsNew
end
end
end
end
object MainMenu1: TMainMenu
AutoHotkeys = maManual
object File1: TMenuItem
Caption = '&File'
object Openas1: TMenuItem
Caption = '&Open as'
Enabled = False
ShortCut = 115
object exec1: TMenuItem
Caption = 'Program associated'
ShortCut = 115
OnClick = exec1Click
end
object Mmedia1: TMenuItem
Caption = 'Media'
OnClick = Mmedia1Click
end
object Picture1: TMenuItem
Caption = 'Image'
OnClick = Picture1Click
end
object Text1: TMenuItem
Caption = 'Text'
ShortCut = 114
OnClick = Text1Click
end
end
object Copy1: TMenuItem
Caption = '&Copy'
Enabled = False
ShortCut = 116
OnClick = FileChange
end
object Move1: TMenuItem
Caption = '&Move'
Enabled = False
ShortCut = 117
OnClick = FileChange
end
object Rename1: TMenuItem
Caption = '&Rename'
Enabled = False
ShortCut = 118
OnClick = FileChange
end
object Delete1: TMenuItem
Caption = '&Delete'
Enabled = False
ShortCut = 119
OnClick = Delete1Click
end
object Properties1: TMenuItem
Caption = '&Properties'
Enabled = False
ShortCut = 16464
OnClick = Properties1Click
end
object N1: TMenuItem
Caption = '-'
end
object About1: TMenuItem
Caption = '&About'
ShortCut = 16496
OnClick = About1Click
end
object Exit1: TMenuItem
Caption = '&Quit'
ShortCut = 16465
OnClick = Exit1Click
end
end
object Edit1: TMenuItem
Caption = '&Edit'
Enabled = False
object Open1: TMenuItem
Caption = '&Open'
ImageIndex = 3
ShortCut = 16463
OnClick = Open1Click
end
object Save1: TMenuItem
Caption = '&Save'
ImageIndex = 5
ShortCut = 16467
OnClick = Save1Click
end
object Close1: TMenuItem
Caption = '&Close'
ImageIndex = 2
ShortCut = 16471
OnClick = Close1Click
end
object N2: TMenuItem
Caption = '-'
end
object Cut1: TMenuItem
Caption = '&Cut'
ImageIndex = 1
ShortCut = 16472
OnClick = Cut1Click
end
object Copy3: TMenuItem
Caption = '&Copy'
ImageIndex = 0
ShortCut = 16451
OnClick = Copy3Click
end
object Paste1: TMenuItem
Caption = '&Paste'
ImageIndex = 4
ShortCut = 16470
OnClick = Paste1Click
end
end
object Font1: TMenuItem
Caption = '&Font'
Enabled = False
OnClick = Font1Click
end
end
object PopupMenu1: TPopupMenu