-
Notifications
You must be signed in to change notification settings - Fork 281
/
main.lfm
10714 lines (10714 loc) · 639 KB
/
main.lfm
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
inherited MainForm: TMainForm
Left = 1468
Height = 702
Top = 126
Width = 984
HorzScrollBar.Page = 740
VertScrollBar.Page = 420
VertScrollBar.Range = 24
ActiveControl = panTop
AllowDropFiles = True
Caption = ' '
ClientHeight = 682
ClientWidth = 984
Constraints.MinHeight = 300
Constraints.MinWidth = 300
KeyPreview = True
Menu = MainMenu
OnActivate = FormActivate
OnClose = FormClose
OnCreate = FormCreate
OnDestroy = FormDestroy
OnDropFiles = FormDropFiles
OnKeyDown = FormKeyDown
OnResize = FormResize
OnShow = FormShow
OnWindowStateChange = FormWindowStateChange
object panTop: TPanel[0]
Left = 0
Height = 301
Top = 27
Width = 984
Align = alClient
BevelOuter = bvNone
ClientHeight = 301
ClientWidth = 984
Constraints.MinHeight = 80
TabOrder = 0
object HSplitter: TSplitter
Left = 130
Height = 301
Top = 0
Width = 5
AutoSnap = False
MinSize = 50
OnChangeBounds = HSplitterChangeBounds
end
object panFilter: TPanel
Left = 0
Height = 301
Top = 0
Width = 130
Align = alLeft
BevelOuter = bvNone
ClientHeight = 301
ClientWidth = 130
TabOrder = 2
object lvFilter: TVarGrid
Left = 0
Height = 301
Top = 0
Width = 130
Align = alClient
Columns = <
item
Title.Caption = ' '
Width = 10
end>
Constraints.MinWidth = 50
FixedCols = 0
FixedRows = 0
Options = [goColSizing, goColMoving, goRowSelect, goThumbTracking, goDblClickAutoSize]
PopupMenu = pmFilter
RowCount = 1
ScrollBars = ssAutoVertical
TabOrder = 0
OnClick = lvFilterClick
OnResize = lvFilterResize
Images = ImageList16
OnCellAttributes = lvFilterCellAttributes
OnDrawCell = lvFilterDrawCell
end
end
object gTorrents: TVarGrid
Left = 135
Height = 301
Top = 0
Width = 849
Align = alClient
Columns = <
item
Title.Caption = 'Name'
Width = 200
end
item
Alignment = taRightJustify
Title.Caption = 'Size'
Width = 60
end
item
Alignment = taCenter
Title.Caption = 'Done'
end
item
Title.Caption = 'Status'
Width = 70
end
item
Alignment = taRightJustify
Title.Caption = 'Seeds'
Width = 55
end
item
Alignment = taRightJustify
Title.Caption = 'Peers'
Width = 55
end
item
Alignment = taRightJustify
Title.Caption = 'Down speed'
Width = 75
end
item
Alignment = taRightJustify
Title.Caption = 'Up speed'
Width = 75
end
item
Alignment = taRightJustify
Title.Caption = 'ETA'
Width = 80
end
item
Alignment = taRightJustify
Title.Caption = 'Ratio'
end
item
Alignment = taRightJustify
Title.Caption = 'Downloaded'
Width = 0
Visible = False
end
item
Alignment = taRightJustify
Title.Caption = 'Uploaded'
Width = 0
Visible = False
end
item
Title.Caption = 'Tracker'
Width = 0
Visible = False
end
item
Title.Caption = 'Tracker status'
Width = 0
Visible = False
end
item
Alignment = taCenter
Title.Caption = 'Added on'
Width = 0
Visible = False
end
item
Alignment = taCenter
Title.Caption = 'Completed on'
Width = 0
Visible = False
end
item
Alignment = taCenter
Title.Caption = 'Last active'
Width = 0
Visible = False
end
item
Title.Caption = 'Path'
Width = 0
Visible = False
end
item
Title.Caption = 'Priority'
Width = 0
Visible = False
end
item
Alignment = taRightJustify
Title.Caption = 'Size to download'
Width = 0
Visible = False
end
item
Alignment = taRightJustify
Title.Caption = 'ID'
Width = 0
Visible = False
end
item
Alignment = taRightJustify
Title.Caption = 'Queue position'
Width = 0
Visible = False
end
item
Alignment = taRightJustify
SizePriority = 0
Title.Caption = 'Seeding time'
Width = 0
Visible = False
end
item
Alignment = taRightJustify
Title.Caption = 'Size left'
Width = 0
Visible = False
end
item
Alignment = taRightJustify
Title.Caption = 'Private'
Width = 0
Visible = False
end
item
Title.Caption = 'Labels'
end>
FixedCols = 0
Options = [goFixedVertLine, goFixedHorzLine, goColSizing, goColMoving, goRowSelect, goThumbTracking, goDblClickAutoSize, goHeaderHotTracking, goHeaderPushedLook]
PopupMenu = pmTorrents
RowCount = 1
TabOrder = 0
OnClick = gTorrentsClick
OnDblClick = gTorrentsDblClick
OnMouseMove = gTorrentsMouseMove
OnMouseUp = gTorrentsMouseUp
OnResize = gTorrentsResize
OnSetEditText = gTorrentsSetEditText
Images = ImageList16
MultiSelect = True
SortColumn = 0
OnCellAttributes = gTorrentsCellAttributes
OnDrawCell = gTorrentsDrawCell
OnSortColumn = gTorrentsSortColumn
OnQuickSearch = gTorrentsQuickSearch
OnEditorShow = gTorrentsEditorShow
OnEditorHide = gTorrentsEditorHide
end
end
object StatusBar: TStatusBar[1]
Left = 0
Height = 23
Top = 659
Width = 984
Panels = <
item
Width = 300
end
item
Width = 140
end
item
Width = 140
end
item
Width = 120
end
item
Width = 120
end
item
Width = 120
end
item
Width = 120
end
item
Width = 120
end>
SimplePanel = False
OnMouseDown = StatusBarMouseDown
end
object PageInfo: TPageControl[2]
Left = 0
Height = 326
Top = 333
Width = 984
ActivePage = tabGeneral
Align = alBottom
Constraints.MinHeight = 50
Images = ImageList16
TabIndex = 0
TabOrder = 1
OnChange = PageInfoChange
OnResize = PageInfoResize
object tabGeneral: TTabSheet
Caption = 'General'
ClientHeight = 298
ClientWidth = 976
ImageIndex = 4
object sbGenInfo: TScrollBox
Left = 0
Height = 272
Top = 26
Width = 976
HorzScrollBar.Page = 721
VertScrollBar.Page = 268
Align = alClient
ClientHeight = 268
ClientWidth = 955
TabOrder = 0
object panGeneralInfo: TPanel
Left = 0
Height = 120
Top = 153
Width = 955
Align = alTop
BevelOuter = bvNone
ChildSizing.LeftRightSpacing = 4
ChildSizing.TopBottomSpacing = 4
ChildSizing.HorizontalSpacing = 16
ChildSizing.VerticalSpacing = 4
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.ControlsPerLine = 4
ClientHeight = 120
ClientWidth = 955
ParentShowHint = False
ShowHint = True
TabOrder = 0
object txTorrentNameLabel: TLabel
Left = 4
Height = 15
Top = 4
Width = 35
Caption = 'Name:'
ParentColor = False
end
object txTorrentName: TLabel
Left = 181
Height = 15
Top = 4
Width = 79
Caption = 'txTorrentName'
ParentColor = False
ShowAccelChar = False
end
object txCreatedLabel: TLabel
Left = 381
Height = 15
Top = 4
Width = 61
Caption = 'Created on:'
ParentColor = False
end
object txCreated: TLabel
Left = 578
Height = 15
Top = 4
Width = 50
Caption = 'txCreated'
ParentColor = False
end
object txTotalSizeLabel: TLabel
Left = 4
Height = 15
Top = 22
Width = 51
Caption = 'Total size:'
ParentColor = False
end
object txTotalSize: TLabel
Left = 181
Height = 15
Top = 22
Width = 55
Caption = 'txTotalSize'
ParentColor = False
end
object txPiecesLabel: TLabel
Left = 381
Height = 15
Top = 22
Width = 36
Caption = 'Pieces:'
ParentColor = False
end
object txPieces: TLabel
Left = 578
Height = 15
Top = 22
Width = 42
Caption = 'txPieces'
ParentColor = False
end
object txHashLabel: TLabel
Left = 4
Height = 15
Top = 40
Width = 30
Caption = 'Hash:'
ParentColor = False
end
object txHash: TLabel
Left = 181
Height = 15
Top = 40
Width = 36
Caption = 'txHash'
ParentColor = False
ShowAccelChar = False
end
object txCommentLabel: TLabel
Left = 381
Height = 14
Top = 40
Width = 181
AutoSize = False
Caption = 'Comment:'
ParentColor = False
end
object txComment: TLabel
Left = 578
Height = 15
Top = 40
Width = 63
Caption = 'txComment'
ParentColor = False
ShowAccelChar = False
end
object txAddedOnLabel: TLabel
Left = 4
Height = 15
Top = 58
Width = 55
Caption = 'Added on:'
ParentColor = False
end
object txAddedOn: TLabel
Left = 181
Height = 15
Top = 58
Width = 60
Caption = 'txAddedOn'
ParentColor = False
end
object txCompletedOnLabel: TLabel
Left = 381
Height = 15
Top = 58
Width = 79
Caption = 'Completed on:'
ParentColor = False
end
object txCompletedOn: TLabel
Left = 578
Height = 15
Top = 58
Width = 84
Caption = 'txCompletedOn'
ParentColor = False
end
object txMagLabel: TLabel
Left = 4
Height = 15
Top = 86
Width = 69
Caption = 'Magnet Link:'
ParentColor = False
end
object txMagnetLink: TEdit
Left = 179
Height = 23
Top = 80
Width = 195
AutoSize = False
AutoSelect = False
BorderStyle = bsNone
ReadOnly = True
TabOrder = 0
end
object txLabelsLabel: TLabel
Left = 381
Height = 15
Top = 86
Width = 36
Caption = 'Labels:'
ParentColor = False
end
object txLabels: TLabel
Left = 578
Height = 15
Top = 86
Width = 42
Caption = 'txLabels'
ParentColor = False
end
end
object panTransfer: TPanel
Left = 0
Height = 111
Top = 21
Width = 955
Align = alTop
BevelOuter = bvNone
ChildSizing.LeftRightSpacing = 4
ChildSizing.TopBottomSpacing = 4
ChildSizing.HorizontalSpacing = 16
ChildSizing.VerticalSpacing = 4
ChildSizing.EnlargeHorizontal = crsHomogenousChildResize
ChildSizing.ControlsPerLine = 6
ClientHeight = 111
ClientWidth = 955
ParentShowHint = False
ShowHint = True
TabOrder = 1
object txStatusLabel: TLabel
Left = 4
Height = 15
Top = 4
Width = 35
Caption = 'Status:'
ParentColor = False
end
object txStatus: TLabel
Left = 140
Height = 15
Top = 4
Width = 41
Caption = 'txStatus'
ParentColor = False
end
object txErrorLabel: TLabel
Left = 262
Height = 15
Top = 4
Width = 28
Caption = 'Error:'
ParentColor = False
end
object txError: TLabel
Left = 407
Height = 15
Top = 4
Width = 34
Caption = 'txError'
ParentColor = False
end
object txRemainingLabel: TLabel
Left = 541
Height = 15
Top = 4
Width = 60
Caption = 'Remaining:'
ParentColor = False
end
object txRemaining: TLabel
Left = 651
Height = 15
Top = 4
Width = 66
Caption = 'txRemaining'
ParentColor = False
end
object txDownloadedLabel: TLabel
Left = 4
Height = 15
Top = 22
Width = 70
Caption = 'Downloaded:'
ParentColor = False
end
object txDownloaded: TLabel
Left = 140
Height = 15
Top = 22
Width = 76
Caption = 'txDownloaded'
ParentColor = False
end
object txUploadedLabel: TLabel
Left = 262
Height = 15
Top = 22
Width = 54
Caption = 'Uploaded:'
ParentColor = False
end
object txUploaded: TLabel
Left = 407
Height = 15
Top = 22
Width = 60
Caption = 'txUploaded'
ParentColor = False
end
object txWastedLabel: TLabel
Left = 541
Height = 15
Top = 22
Width = 42
Caption = 'Wasted:'
ParentColor = False
end
object txWasted: TLabel
Left = 651
Height = 15
Top = 22
Width = 48
Caption = 'txWasted'
ParentColor = False
end
object txDownSpeedLabel: TLabel
Left = 4
Height = 15
Top = 40
Width = 91
Caption = 'Download speed:'
ParentColor = False
end
object txDownSpeed: TLabel
Left = 140
Height = 15
Top = 40
Width = 72
Caption = 'txDownSpeed'
ParentColor = False
end
object txUpSpeedLabel: TLabel
Left = 262
Height = 15
Top = 40
Width = 75
Caption = 'Upload speed:'
ParentColor = False
end
object txUpSpeed: TLabel
Left = 407
Height = 15
Top = 40
Width = 56
Caption = 'txUpSpeed'
ParentColor = False
end
object txRatioLabel: TLabel
Left = 541
Height = 15
Top = 40
Width = 59
Caption = 'Share ratio:'
ParentColor = False
end
object txRatio: TLabel
Left = 651
Height = 15
Top = 40
Width = 36
Caption = 'txRatio'
ParentColor = False
end
object txDownLimitLabel: TLabel
Left = 4
Height = 15
Top = 58
Width = 61
Caption = 'Down limit:'
ParentColor = False
end
object txDownLimit: TLabel
Left = 140
Height = 15
Top = 58
Width = 67
Caption = 'txDownLimit'
ParentColor = False
end
object txUpLimitLabel: TLabel
Left = 262
Height = 15
Top = 58
Width = 45
Caption = 'Up limit:'
ParentColor = False
end
object txUpLimit: TLabel
Left = 407
Height = 15
Top = 58
Width = 51
Caption = 'txUpLimit'
ParentColor = False
end
object txDummy: TLabel
Left = 541
Height = 1
Top = 58
Width = 1
ParentColor = False
end
object txDummy1: TLabel
Left = 651
Height = 1
Top = 58
Width = 1
ParentColor = False
end
object txSeedsLabel: TLabel
Left = 4
Height = 15
Top = 76
Width = 33
Caption = 'Seeds:'
ParentColor = False
end
object txSeeds: TLabel
Left = 140
Height = 15
Top = 76
Width = 39
Caption = 'txSeeds'
ParentColor = False
end
object txPeersLabel: TLabel
Left = 262
Height = 15
Top = 76
Width = 31
Caption = 'Peers:'
ParentColor = False
end
object txPeers: TLabel
Left = 407
Height = 15
Top = 76
Width = 37
Caption = 'txPeers'
ParentColor = False
end
object txMaxPeersLabel: TLabel
Left = 541
Height = 15
Top = 76
Width = 56
Caption = 'Max peers:'
ParentColor = False
end
object txMaxPeers: TLabel
Left = 651
Height = 15
Top = 76
Width = 59
Caption = 'txMaxPeers'
ParentColor = False
end
object txTrackerLabel: TLabel
Left = 4
Height = 15
Top = 94
Width = 41
Caption = 'Tracker:'
ParentColor = False
end
object txTracker: TLabel
Left = 140
Height = 15
Top = 94
Width = 47
Caption = 'txTracker'
ParentColor = False
end
object txTrackerUpdateLabel: TLabel
Left = 262
Height = 15
Top = 94
Width = 98
Caption = 'Tracker update on:'
ParentColor = False
end
object txTrackerUpdate: TLabel
Left = 407
Height = 15
Top = 94
Width = 85
Caption = 'txTrackerUpdate'
ParentColor = False
end
object txLastActiveLabel: TLabel
Left = 541
Height = 15
Top = 94
Width = 58
Caption = 'Last active:'
ParentColor = False
end
object txLastActive: TLabel
Left = 651
Height = 15
Top = 94
Width = 63
Caption = 'txLastActive'
ParentColor = False
end
end
object txTransferHeader: TPanel
Left = 2
Height = 17
Top = 2
Width = 951
Align = alTop
Alignment = taLeftJustify
BorderSpacing.Around = 2
BevelOuter = bvNone
Caption = 'Transfer'
Font.Height = -13
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
TabOrder = 2
end
object txTorrentHeader: TPanel
Left = 2
Height = 17
Top = 134
Width = 951
Align = alTop
Alignment = taLeftJustify
BorderSpacing.Around = 2
BevelOuter = bvNone
Caption = 'Torrent'
Font.Height = -13
Font.Style = [fsBold]
ParentColor = False
ParentFont = False
TabOrder = 3
end
end
object panProgress: TPanel
Left = 0
Height = 26
Top = 0
Width = 976
Align = alTop
BevelOuter = bvNone
ClientHeight = 26
ClientWidth = 976
TabOrder = 1
object txDownProgressLabel: TLabel
Left = 8
Height = 26
Top = 0
Width = 70
Align = alLeft
BorderSpacing.Left = 8
Caption = 'Downloaded:'
Layout = tlCenter
ParentColor = False
end
object txDownProgress: TLabel
Left = 931
Height = 26
Top = 0
Width = 37
Align = alRight
Alignment = taRightJustify
Anchors = [akTop, akRight]
BorderSpacing.Right = 8
Caption = '100.0%'
Layout = tlCenter
ParentColor = False
end
object pbDownloaded: TPaintBox
Left = 84
Height = 14
Top = 6
Width = 841
Align = alClient
Anchors = [akTop, akLeft, akRight]
BorderSpacing.Around = 6
OnPaint = pbDownloadedPaint
end
end
end
object tabTrackers: TTabSheet
Caption = 'Trackers'
ClientHeight = 298
ClientWidth = 976
ImageIndex = 5
object lvTrackers: TVarGrid
Left = 0
Height = 298
Top = 0
Width = 873
Align = alClient
Columns = <
item
Title.Caption = 'Name'
Width = 200
end
item
Title.Caption = 'Status'
Width = 200
end
item
Title.Caption = 'Update in'
Width = 80
end
item
Title.Caption = 'Seeds'
end>
FixedCols = 0
Options = [goFixedVertLine, goFixedHorzLine, goColSizing, goColMoving, goRowSelect, goThumbTracking, goDblClickAutoSize, goHeaderHotTracking, goHeaderPushedLook]
PopupMenu = pmTrackers
RowCount = 1
TabOrder = 0
OnDblClick = lvTrackersDblClick
OnKeyDown = lvTrackersKeyDown
SortColumn = 0
HideSelection = True
OnCellAttributes = lvTrackersCellAttributes
end
end
object tabPeers: TTabSheet
Caption = 'Peers'
ClientHeight = 298
ClientWidth = 976
ImageIndex = 6
object lvPeers: TVarGrid
Left = 0
Height = 279
Top = 0
Width = 772
Align = alClient
Columns = <
item
Title.Caption = 'Host'
Width = 150
end
item
Alignment = taRightJustify
Title.Caption = 'Port'
Width = 0
Visible = False
end
item
Title.Caption = 'Country'
Width = 100
end
item
Title.Caption = 'Client'
Width = 150
end
item
Title.Caption = 'Flags'
Width = 70
end
item
Alignment = taRightJustify
Title.Caption = 'Have'
end
item
Alignment = taRightJustify
Title.Caption = 'Up speed'
Width = 80
end
item
Alignment = taRightJustify
Title.Caption = 'Down speed'
Width = 80
end>
FixedCols = 0
Options = [goFixedVertLine, goFixedHorzLine, goColSizing, goColMoving, goRowSelect, goThumbTracking, goDblClickAutoSize, goHeaderHotTracking, goHeaderPushedLook]
PopupMenu = pmPeers
RowCount = 1
TabOrder = 0
Images = imgFlags
SortColumn = 0
HideSelection = True
OnCellAttributes = lvPeersCellAttributes
end
end
object tabFiles: TTabSheet
Caption = 'Files'
ClientHeight = 298
ClientWidth = 976
ImageIndex = 7
object lvFiles: TVarGrid
Left = 0
Height = 298
Top = 0
Width = 873
Align = alClient
Columns = <
item
Title.Caption = 'File name'
Width = 350
end
item
Alignment = taRightJustify
Title.Caption = 'Size'
Width = 80
end
item
Alignment = taCenter