-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.dfm
1605 lines (1605 loc) · 52.3 KB
/
main.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 = 243
Top = 55
Caption = 'Network Disk'
ClientHeight = 605
ClientWidth = 1019
Color = clGradientInactiveCaption
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
Position = poDesigned
OnClose = FormClose
OnPaint = FormPaint
DesignSize = (
1019
605)
PixelsPerInch = 96
TextHeight = 13
object headptr: TLabel
Left = 64
Top = 554
Width = 52
Height = 13
AutoSize = False
Caption = 'y'
Color = clGradientInactiveCaption
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindow
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = [fsUnderline]
ParentColor = False
ParentFont = False
end
object Label1: TLabel
Left = 2
Top = 12
Width = 36
Height = 13
Caption = #1095#1090#1077#1085#1080#1081
end
object Label2: TLabel
Left = 2
Top = 28
Width = 40
Height = 13
Caption = #1079#1072#1087#1080#1089#1077#1081
end
object Label3: TLabel
Left = 2
Top = 44
Width = 29
Height = 26
Caption = #1086#1096#1073#1082' '#1095#1090#1077#1085'.'
WordWrap = True
end
object Label4: TLabel
Left = 2
Top = 67
Width = 29
Height = 26
Caption = #1086#1096#1073#1082' '#1079#1072#1087#1089'.'
WordWrap = True
end
object Label5: TLabel
Left = 2
Top = 96
Width = 48
Height = 13
Caption = #1086#1087#1077#1088#1072#1094#1080#1103
end
object pb1: TPaintBox
Left = 2
Top = 575
Width = 1013
Height = 14
ParentShowHint = False
ShowHint = True
OnClick = pb1Click
OnMouseEnter = pb1MouseEnter
OnMouseLeave = pb1MouseLeave
OnMouseMove = pb1MouseMove
end
object Label6: TLabel
Left = 2
Top = 119
Width = 20
Height = 13
Caption = #1082#1077#1096
end
object diskptr: TLabel
Left = 192
Top = 250
Width = 3
Height = 13
end
object Label7: TLabel
Left = 2
Top = 143
Width = 23
Height = 13
Caption = #1089#1077#1090#1100
end
object Label8: TLabel
Left = 2
Top = 536
Width = 24
Height = 13
Caption = #1076#1080#1089#1082
end
object imgpaging: TImage
Left = 28
Top = 536
Width = 12
Height = 15
Picture.Data = {
0954506E67496D61676589504E470D0A1A0A0000000D494844520000000A0000
000D08060000009037FF050000000774494D4507D70306150B00583D1B6B0000
00097048597300001EC200001EC2016ED0753E0000000467414D410000B18F0B
FC6105000000544944415478DA63648080FF0D0D0D0CD800549C91912C85E88A
91C4100AC1C4FFFF280A19E1D21085288A4092C81A608A19216A5025407C640D
20365685E8CEC0A9109B5B31DC880E90DD48B4AF490B47AA452100BCEB4909BF
6822130000000049454E44AE426082}
Stretch = True
Visible = False
end
object cacheimg: TImage
Left = 28
Top = 121
Width = 16
Height = 13
Picture.Data = {
0954506E67496D61676589504E470D0A1A0A0000000D49484452000000100000
001008060000001FF3FF610000028A4944415478DA8DD25B4814511807F0FF99
CBEEAAEB6616A5522B5444B4E8225A81E42D2F2026B6BB965458EB6AA4747F30
578B7C0822A5174348AC4C49C94C2D21B08B2BE516FA106E370DDFDC2E1495D1
45DD1D7766A7334BF8229B9E879973663E7EDFFFCC1C82FF8C8234B58EDEFC7D
4F85E9603524D88B1A9B2E3BD774A2CFE713C481FB4D39175A7E8F2C19C8DCCA
93B2E25C57E181734665DDD16C1FB2560EA42D19B05BC34DC7AA1A7A5745AD0D
AC3F4C4EA0B9A13AF362EB9FC14501A57BE9FEEDAE5D456546F7C729104210BB
66053ADB2E0F959C1E495B14B05BB5E6A3A74EF684E922106BAC854EABC1D870
0DBE7FF98CAB579A688AE9C1A040E616DA7D6F9CCBB227CF382BCC2136A19102
2A8C3D3F0C35C7E356FB5D6749F5DBD4A0409535CC7CA46267CFEAE80878041F
F4899D0160DC69819AE7F07EF21BAEB53CCCAA6B9D712C0094EEB6DDFA976653
7C3CAB02660511FA240705388C0FA543C3B110E780CEAE51A7EDAC3B75015075
30D45261DBDC1D15AD01CB2B808475C963D0857378FD7813343C03D1079A6206
2D1D1359756DB38E79604712ED6E897865CA5B19C7A9014601BC7EA417FD4058
28417F5B24342A028902A217B87DEFEBB3D2DAA99479A0B238A4B07C9FF64E54
0C0B8EC6673860EA1783074FBC6068457E8E1A5A8D0CBF480181A6704BB8D13D
9D5D7FD333403212395252C0BFC9CF20062E040180B040BF530553F94F7A0E80
177DCB61582FC02F0112FD0E3E0FD0FB481E2E3BEF492639DBF89833A5F227C3
06094A7C65FF0A3047E33A4638442E234832F8C0D267F23F404931FA8E932FB5
431BD842FD714DD746BD54C872200C430166E1F196958B1F8114A20879C2CD5E
B7377A0FCDFF8594044E4BF72B6309C34FAB9C2E714699FF05DE4AE39E9EFB5D
440000000049454E44AE426082}
Stretch = True
Transparent = True
Visible = False
end
object delays: TLabel
Left = 96
Top = 51
Width = 31
Height = 13
Caption = 'delays'
end
object imgptr: TLabel
Left = 1
Top = 554
Width = 6
Height = 13
Caption = 'x'
end
object Label9: TLabel
Left = 3
Top = 167
Width = 22
Height = 13
Caption = 'RAM'
end
object Label13: TLabel
Left = 746
Top = 590
Width = 268
Height = 13
Hint = 'disksize/max'
Alignment = taRightJustify
AutoSize = False
Caption = '-'
ParentShowHint = False
ShowHint = True
end
object diskhint: TLabel
Left = 1
Top = 590
Width = 309
Height = 13
AutoSize = False
end
object currentadd: TLabel
Left = 166
Top = 96
Width = 87
Height = 13
AutoSize = False
Caption = 'cd'
end
object maxquadl: TLabel
Left = 714
Top = 561
Width = 301
Height = 13
Alignment = taRightJustify
AutoSize = False
Caption = 'maxquadl'
Font.Charset = DEFAULT_CHARSET
Font.Color = clBtnText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
end
object ftpl: TLabel
Left = 2
Top = 186
Width = 18
Height = 13
Caption = 'FTP'
end
object ftpimg: TImage
Left = 29
Top = 187
Width = 15
Height = 13
Picture.Data = {
0954506E67496D61676589504E470D0A1A0A0000000D49484452000000100000
000B080600000076E20D390000000774494D4507D60111103A22319970350000
00097048597300000B1200000B1201D2DD7EFC0000000467414D410000B18F0B
FC61050000007B4944415478DA9D91DB0DC0200845613FDCC8A49AB0910EE156
36A6F159A8A6F7C720722E20421367008B7A2C0BFB634D168948CCC718F1C3F1
894B7108E1556C8C5901B22A00BD6F77F9BA56C03842E9A2C744090E01B5703E
0F00D56D765E01BF76C0CC39A574F28DFA029D736ABEE4B600A9FD718C2D0036
BA01CCA1599860D2BEBA0000000049454E44AE426082}
end
object reads: TEdit
Left = 50
Top = 10
Width = 40
Height = 19
TabStop = False
Alignment = taCenter
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 0
Text = 'reads'
end
object writes: TEdit
Left = 50
Top = 26
Width = 40
Height = 19
TabStop = False
Alignment = taCenter
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 1
Text = 'writes'
end
object rfails: TEdit
Left = 50
Top = 51
Width = 40
Height = 19
TabStop = False
Alignment = taCenter
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 2
Text = 'rfails'
end
object wfails: TEdit
Left = 50
Top = 71
Width = 40
Height = 19
TabStop = False
Alignment = taCenter
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 3
Text = 'wfails'
end
object current: TEdit
Left = 50
Top = 94
Width = 110
Height = 19
TabStop = False
Alignment = taCenter
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 4
Text = 'current'
end
object readb: TEdit
Left = 91
Top = 10
Width = 150
Height = 16
TabStop = False
Alignment = taCenter
AutoSize = False
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 5
Text = 'readb'
end
object ptr: TEdit
Left = 41
Top = 538
Width = 262
Height = 13
Margins.Left = 19
AutoSize = False
BevelInner = bvNone
BevelOuter = bvNone
BorderStyle = bsNone
Color = clBtnFace
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -13
Font.Name = 'Lucida Console'
Font.Style = []
ParentDoubleBuffered = False
ParentFont = False
ParentShowHint = False
ReadOnly = True
ShowHint = False
TabOrder = 6
Text = '<'#1053#1045' '#1055#1054#1044#1050#1051#1070#1063#1045#1053'>'
end
object cached: TEdit
Left = 50
Top = 117
Width = 110
Height = 19
TabStop = False
Alignment = taCenter
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 7
Text = 'cached'
end
object cacheblocks: TEdit
Left = 166
Top = 117
Width = 152
Height = 19
TabStop = False
Alignment = taCenter
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 8
Text = 'cacheblocks'
OnDblClick = cacheblocksDblClick
end
object net: TEdit
Left = 50
Top = 140
Width = 110
Height = 19
TabStop = False
Alignment = taCenter
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 9
Text = 'net'
end
object spd: TEdit
Left = 166
Top = 140
Width = 152
Height = 19
TabStop = False
Alignment = taCenter
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 10
Text = 'spd'
end
object imgptrcheck: TCheckBox
Left = 289
Top = 538
Width = 14
Height = 14
Caption = 'imgptrcheck'
Checked = True
State = cbChecked
TabOrder = 11
end
object ramsize: TEdit
Left = 50
Top = 167
Width = 268
Height = 13
TabStop = False
Alignment = taCenter
AutoSize = False
BevelInner = bvNone
BevelOuter = bvNone
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 12
Text = 'ramsize'
end
object ftpe: TEdit
Left = 50
Top = 186
Width = 267
Height = 18
TabStop = False
Alignment = taCenter
AutoSize = False
BevelKind = bkSoft
BorderStyle = bsNone
Color = clCream
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
ParentFont = False
ReadOnly = True
TabOrder = 13
Text = '-'
end
object pg1: TPageControl
Left = 1
Top = 205
Width = 322
Height = 327
ActivePage = TabSheet3
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Tahoma'
Font.Style = []
MultiLine = True
ParentFont = False
TabOrder = 14
object TabSheet2: TTabSheet
Caption = 'FAT32'
ImageIndex = 1
object Button12: TButton
Left = 84
Top = 45
Width = 75
Height = 25
Caption = #1076#1072#1084#1087
TabOrder = 0
OnClick = Button12Click
end
object Button7: TButton
Left = 3
Top = 14
Width = 75
Height = 25
Caption = #1079#1072#1087#1080#1089#1072#1090#1100
TabOrder = 1
OnClick = makefatdisk
end
object Button9: TButton
Left = 84
Top = 14
Width = 75
Height = 25
Caption = #1087#1088#1086#1095#1077#1089#1090#1100
TabOrder = 2
OnClick = Button9Click
end
object Button5: TButton
Left = 3
Top = 45
Width = 75
Height = 25
Caption = 'CRC'
Enabled = False
TabOrder = 3
OnClick = Button5Click
end
object Button13: TButton
Left = 3
Top = 76
Width = 75
Height = 25
Caption = 'NetFAT'
TabOrder = 4
OnClick = Button13Click
end
end
object TabSheet3: TTabSheet
Caption = 'debug'
ImageIndex = 2
object debcheck: TCheckBox
Left = 10
Top = 10
Width = 53
Height = 17
Caption = 'events'
TabOrder = 0
end
object netdebug: TCheckBox
Left = 90
Top = 55
Width = 72
Height = 17
Caption = 'net debug'
TabOrder = 1
end
object debcheck2: TCheckBox
Left = 10
Top = 56
Width = 81
Height = 17
Caption = 'deb()'
Checked = True
State = cbChecked
TabOrder = 2
end
object unkdeb: TCheckBox
Left = 10
Top = 33
Width = 53
Height = 17
Caption = 'unknwn deb'
TabOrder = 3
end
object Button6: TButton
Left = 10
Top = 84
Width = 75
Height = 25
Caption = #1089#1090#1072#1090#1080#1089#1090#1080#1082#1072
Enabled = False
TabOrder = 4
OnClick = Button6Click
end
object Button16: TButton
Left = 10
Top = 123
Width = 75
Height = 25
Caption = 'heap'
TabOrder = 5
OnClick = Button16Click
end
end
object TabSheet4: TTabSheet
Caption = 'utils'
ImageIndex = 3
object find: TEdit
Left = 16
Top = 15
Width = 102
Height = 21
TabOrder = 0
Text = 'MZ'
end
object Button15: TButton
Left = 124
Top = 13
Width = 36
Height = 25
Caption = 'find'
TabOrder = 1
OnClick = Button15Click
end
end
object TabSheet5: TTabSheet
Caption = 'RAM'
ImageIndex = 4
object Label11: TLabel
Left = 10
Top = 18
Width = 23
Height = 13
Caption = #1084#1072#1082#1089
end
object Edit1: TEdit
Left = 40
Top = 16
Width = 67
Height = 17
AutoSize = False
NumbersOnly = True
TabOrder = 0
Text = '333 '#1052#1073
end
end
object TabSheet6: TTabSheet
Caption = 'FTP'
ImageIndex = 5
object diskcap: TLabel
Left = 8
Top = 32
Width = 26
Height = 13
Caption = 'USER'
end
object Label10: TLabel
Left = 8
Top = 13
Width = 10
Height = 13
Caption = 'IP'
end
object Label12: TLabel
Left = 8
Top = 51
Width = 25
Height = 13
Caption = 'PASS'
end
object Label16: TLabel
Left = 8
Top = 111
Width = 22
Height = 13
Caption = 'level'
end
object Label17: TLabel
Left = -1
Top = 70
Width = 52
Height = 13
Caption = #1084#1072#1082#1089' '#1092#1072#1081#1083
end
object Label18: TLabel
Left = 3
Top = 82
Width = 47
Height = 23
Caption = #1074#1089#1077#1075#1086' '#1084#1072#1082#1089' '#1084#1073
WordWrap = True
end
object anonymous: TCheckBox
Left = 183
Top = 46
Width = 97
Height = 17
Caption = 'anonymous'
Checked = True
State = cbChecked
TabOrder = 0
end
object Button14: TButton
Left = 183
Top = 12
Width = 121
Height = 28
Caption = #1087#1086#1076#1082#1083#1102#1095#1080#1090#1100
TabOrder = 1
WordWrap = True
OnClick = Button14Click
end
object ftpip: TEdit
Left = 56
Top = 10
Width = 121
Height = 16
AutoSize = False
TabOrder = 2
Text = 'ftp.rz.tu-bs.de'
end
object ftppass: TEdit
Left = 56
Top = 48
Width = 121
Height = 16
AutoSize = False
TabOrder = 3
Text = 'xyu'
end
object ftpuser: TEdit
Left = 56
Top = 29
Width = 121
Height = 16
AutoSize = False
TabOrder = 4
Text = 'xyu'
end
object dirlevel: TEdit
Left = 56
Top = 109
Width = 24
Height = 17
AutoSize = False
TabOrder = 5
Text = '3'
end
object ftpmaxfilesize: TEdit
Left = 56
Top = 68
Width = 121
Height = 16
AutoSize = False
TabOrder = 6
Text = '50000'
end
object ftpmaxds: TEdit
Left = 56
Top = 89
Width = 121
Height = 14
AutoSize = False
TabOrder = 7
Text = '41111'
end
end
object TabSheet7: TTabSheet
Caption = #1044#1080#1089#1082
ImageIndex = 6
object Label14: TLabel
Left = 25
Top = 66
Width = 68
Height = 13
Caption = #1054#1073#1088#1072#1079' '#1076#1080#1089#1082#1072':'
end
object Label15: TLabel
Left = 41
Top = 12
Width = 52
Height = 13
Caption = #1053#1086#1089#1080#1090#1077#1083#1100':'
end
object ramonly: TCheckBox
Left = 14
Top = 189
Width = 97
Height = 17
Hint = #1085#1077' '#1080#1089#1087#1086#1083#1100#1079#1086#1074#1072#1090#1100' '#1089#1077#1090#1100', '#1093#1088#1072#1085#1080#1090#1100' '#1074' '#1087#1072#1084#1103#1090#1080
Caption = #1090#1086#1083#1100#1082#1086' RAM'
Checked = True
Ctl3D = True
ParentCtl3D = False
ParentShowHint = False
ShowHint = True
State = cbChecked
TabOrder = 0
OnExit = ramonlyExit
end
object Button1: TButton
Left = 108
Top = 7
Width = 78
Height = 25
Caption = #1087#1086#1076#1082#1083#1102#1095#1080#1090#1100
Enabled = False
TabOrder = 1
OnClick = Button1Click
end
object Button2: TButton
Left = 199
Top = 7
Width = 78
Height = 25
Caption = #1086#1090#1082#1083#1102#1095#1080#1090#1100
Enabled = False
TabOrder = 2
OnClick = Button2Click
end
object Button4: TButton
Left = 108
Top = 89
Width = 78
Height = 25
Caption = #1089#1086#1093#1088#1072#1085#1080#1090#1100
Enabled = False
TabOrder = 3
OnClick = Button4Click
end
object Button8: TButton
Left = 199
Top = 45
Width = 78
Height = 31
Caption = #1079#1072#1075#1088#1091#1079#1080#1090#1100' dump.dmp'
TabOrder = 4
WordWrap = True
OnClick = Button8Click
end
object Button10: TButton
Left = 199
Top = 89
Width = 78
Height = 25
Caption = #1079#1072#1075#1088#1091#1079#1080#1090#1100
TabOrder = 5
OnClick = Button10Click
end
object Button11: TButton
Left = 108
Top = 45
Width = 78
Height = 31
Caption = #1089#1086#1093#1088#1072#1085#1080#1090#1100' dump.dmp'
TabOrder = 6
WordWrap = True
OnClick = Button11Click
end
object Button3: TButton
Left = 225
Top = 299
Width = 86
Height = 25
Caption = #1092#1086#1088#1084#1072#1090#1080#1088#1086#1074#1072#1090#1100
Enabled = False
TabOrder = 7
OnClick = Button3Click
end
end
end
object pg2: TPageControl
Left = 325
Top = 2
Width = 690
Height = 560
ActivePage = TabSheet1
Anchors = []
Style = tsFlatButtons
TabOrder = 15
object TabSheet1: TTabSheet
Caption = 'log'
object deblog: TListView
Left = 0
Top = -1
Width = 679
Height = 535
BevelOuter = bvNone
BorderStyle = bsNone
Color = clBtnHighlight
Columns = <
item
Caption = #1083#1086#1075
Width = 435
end
item
Caption = 'thread'
Width = 4
end>
DoubleBuffered = True
Font.Charset = DEFAULT_CHARSET
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Lucida Console'
Font.Pitch = fpVariable
Font.Style = []
FlatScrollBars = True
ReadOnly = True
RowSelect = True
ParentDoubleBuffered = False
ParentFont = False
TabOrder = 0
ViewStyle = vsReport
OnCustomDrawSubItem = deblogCustomDrawSubItem
OnDblClick = deblogDblClick
OnKeyPress = deblogKeyPress
end
end
object TabSheet8: TTabSheet
Caption = 'stats'
ImageIndex = 1
object knotts: TChart
Left = 0
Top = 3
Width = 679
Height = 526
Cursor = crDrag
AllowPanning = pmNone
BackWall.AutoHide = True
Border.Color = 33023
Border.Style = psDashDotDot
Border.Visible = True
Foot.Font.Name = 'Tahoma'
Gradient.EndColor = 4162
Gradient.MidColor = 10999983
Gradient.StartColor = 12081670
Gradient.SubGradient.EndColor = 33023
Gradient.SubGradient.Visible = True
Legend.Alignment = laBottom
Legend.BevelWidth = 1
Legend.Brush.Color = clGray
Legend.Brush.Style = bsCross
Legend.CheckBoxes = True
Legend.Color = 16711808
Legend.ColorWidth = 100
Legend.Font.Charset = RUSSIAN_CHARSET
Legend.Font.Color = 4210816
Legend.Font.Name = 'Consolas'
Legend.Font.Style = [fsBold]
Legend.Font.Shadow.Color = 13355979
Legend.Font.Shadow.HorizSize = 9
Legend.Font.Shadow.Transparency = 11
Legend.Font.Shadow.VertSize = 6
Legend.Font.Shadow.Visible = False
Legend.FontSeriesColor = True