forked from alphaonex86/Supercopier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SCConfigForm.lfm
1094 lines (1094 loc) · 28.2 KB
/
SCConfigForm.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
object ConfigForm: TConfigForm
Left = 386
Height = 394
Top = 349
Width = 607
BorderStyle = bsDialog
Caption = 'Configuration'
ClientHeight = 394
ClientWidth = 607
Color = clBtnFace
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
FormStyle = fsStayOnTop
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnShow = FormShow
Position = poScreenCenter
LCLVersion = '1.0.4.0'
object lvSections: TListView
Left = 0
Height = 367
Top = 0
Width = 161
Columns = <
item
AutoSize = True
Width = 157
end>
HideSelection = False
Items.LazData = {
F00000000700000000000000FFFFFFFFFFFFFFFF00000000080000004C616E67
7561676500000000FFFFFFFFFFFFFFFF00000000070000005374617274757000
000000FFFFFFFFFFFFFFFF000000000E0000005573657220696E746572666163
6500000000FFFFFFFFFFFFFFFF0000000017000000436F706965732026206D6F
7665732064656661756C747300000000FFFFFFFFFFFFFFFF0000000017000000
436F706965732026206D6F766573206265686176696F7200000000FFFFFFFFFF
FFFFFF00000000090000004572726F72206C6F6700000000FFFFFFFFFFFFFFFF
0000000008000000416476616E636564
}
ReadOnly = True
RowSelect = True
ShowColumnHeaders = False
TabOrder = 0
ViewStyle = vsReport
OnChange = lvSectionsChange
end
object pcSections: TPageControl
Left = 160
Height = 369
Top = 0
Width = 447
ActivePage = tsAdvanced
Anchors = [akTop, akLeft, akRight, akBottom]
TabIndex = 6
TabOrder = 1
TabPosition = tpBottom
OnChange = pcSectionsChange
object tsLanguage: TTabSheet
Caption = 'tsLanguage'
ClientHeight = 343
ClientWidth = 439
TabVisible = False
object gbLanguage: TGroupBox
Left = 8
Height = 62
Top = 3
Width = 425
Caption = 'Language'
ClientHeight = 44
ClientWidth = 421
TabOrder = 0
object llLanguage: TLabel
Left = 8
Height = 14
Top = 8
Width = 93
Caption = 'Interface language:'
ParentColor = False
end
object llLanguageInfo: TLabel
Left = 8
Height = 14
Top = 26
Width = 300
Caption = '(English (default) won''t be applied until you restart SuperCopier.)'
ParentColor = False
end
object cbLanguage: TComboBox
Left = 216
Height = 21
Top = 3
Width = 201
ItemHeight = 13
Style = csDropDownList
TabOrder = 0
end
end
end
object tsStartup: TTabSheet
Caption = 'tsStartup'
ClientHeight = 343
ClientWidth = 439
TabVisible = False
object gbStartup: TGroupBox
Left = 8
Height = 67
Top = 3
Width = 425
Caption = 'Startup'
ClientHeight = 49
ClientWidth = 421
TabOrder = 0
object chStartWithWindows: TCheckBox
Left = 8
Height = 19
Top = 2
Width = 143
Caption = 'Start when windows starts'
TabOrder = 0
end
object chActivateOnStart: TCheckBox
Left = 8
Height = 19
Top = 26
Width = 185
Caption = 'Activate SuperCopier when it starts'
TabOrder = 1
end
end
end
object tsUI: TTabSheet
Caption = 'tsUI'
ClientHeight = 343
ClientWidth = 439
TabVisible = False
object gbTaskbar: TGroupBox
Left = 8
Height = 112
Top = 3
Width = 425
Caption = 'Taskbar && system tray'
ClientHeight = 94
ClientWidth = 421
TabOrder = 0
object llMinimizedEventHandling: TLabel
Left = 9
Height = 14
Top = 49
Width = 251
Caption = 'When there is an event and the window is minimized:'
ParentColor = False
end
object chTrayIcon: TCheckBox
Left = 8
Height = 19
Top = 3
Width = 197
Caption = 'Show SuperCopier icon in system tray'
TabOrder = 0
end
object cbMinimize: TComboBox
Left = 8
Height = 21
Top = 24
Width = 409
ItemHeight = 13
Items.Strings = (
'Minimize windows to system tray and set them as always on top'
'Minimize windows to taskbar'
)
OnClick = cbMinimizeClick
Style = csDropDownList
TabOrder = 1
end
object cbMinimizedEventHandling: TComboBox
Left = 8
Height = 21
Top = 68
Width = 409
ItemHeight = 13
Items.Strings = (
'Do nothing (wait for the window to be restored)'
'Display a balloon notification (will not work on Windows 98,95 & NT4)'
'Popup the event window'
)
Style = csDropDownList
TabOrder = 2
end
end
object gbCWAppearance: TGroupBox
Left = 8
Height = 90
Top = 119
Width = 425
Caption = 'Copy window appearance'
ClientHeight = 72
ClientWidth = 421
TabOrder = 1
object chCWSavePosition: TCheckBox
Left = 8
Height = 19
Top = 28
Width = 149
Caption = 'Save copy window position'
TabOrder = 1
end
object chCWSaveSize: TCheckBox
Left = 8
Height = 19
Top = 52
Width = 131
Caption = 'Save copy window size'
TabOrder = 2
end
object chCWStartMinimized: TCheckBox
Left = 8
Height = 19
Top = 4
Width = 211
Caption = 'Start copies with copy window minimized'
TabOrder = 0
end
end
object gbSizeUnit: TGroupBox
Left = 8
Height = 45
Top = 213
Width = 425
Caption = 'Size unit'
ClientHeight = 27
ClientWidth = 421
TabOrder = 2
object llSizeUnit: TLabel
Left = 8
Height = 14
Top = 4
Width = 146
Caption = 'Use this unit to display file size:'
ParentColor = False
end
object cbSizeUnit: TComboBox
Left = 216
Height = 21
Top = 0
Width = 201
ItemHeight = 13
Items.Strings = (
'Auto'
'Bytes'
'KB (Kilobytes)'
'MB (Megabytes)'
'GB (Gigabytes)'
)
Style = csDropDownList
TabOrder = 0
end
end
object gbProgressrar: TGroupBox
Left = 8
Height = 96
Top = 262
Width = 426
Caption = 'Progress bars'
ClientHeight = 78
ClientWidth = 422
TabOrder = 3
object llProgressFG: TLabel
Left = 6
Height = 14
Top = 18
Width = 89
Caption = 'Foreground colors:'
ParentColor = False
end
object llProgressBG: TLabel
Left = 116
Height = 14
Top = 18
Width = 93
Caption = 'Background colors:'
ParentColor = False
end
object llProgressBorder: TLabel
Left = 338
Height = 14
Top = 18
Width = 61
Caption = 'Border color:'
ParentColor = False
end
object ggProgress: TSCProgessBar
Left = 6
Height = 17
Top = -2
Width = 411
BorderColor = clBlack
FrontColor1 = clRed
FrontColor2 = clBlue
BackColor1 = clGray
BackColor2 = clWhite
FontProgress.Color = clWhite
FontProgress.Height = -11
FontProgress.Name = 'MS Sans Serif'
FontProgress.Style = [fsBold]
FontProgressColor = clBlack
FontTxt.Color = clWhite
FontTxt.Height = -11
FontTxt.Name = 'MS Sans Serif'
FontTxtColor = clBlack
Max = 100
Position = 50
TimeRemaining = '00:00:00 Remaining'
end
object llProgressText: TLabel
Left = 227
Height = 14
Top = 18
Width = 56
Caption = 'Text colors:'
ParentColor = False
end
object btProgressFG1: TButton
Left = 6
Height = 25
Top = 36
Width = 48
Caption = 'Edges'
OnClick = btProgressFG1Click
TabOrder = 0
end
object bgProgressFG2: TButton
Left = 54
Height = 25
Top = 36
Width = 48
Caption = 'Middle'
OnClick = bgProgressFG2Click
TabOrder = 1
end
object btProgressBG1: TButton
Left = 116
Height = 25
Top = 36
Width = 48
Caption = 'Edges'
OnClick = btProgressBG1Click
TabOrder = 2
end
object btProgressBG2: TButton
Left = 164
Height = 25
Top = 36
Width = 48
Caption = 'Middle'
OnClick = btProgressBG2Click
TabOrder = 3
end
object btProgressBorder: TButton
Left = 338
Height = 25
Top = 36
Width = 48
Caption = 'Border'
OnClick = btProgressBorderClick
TabOrder = 6
end
object btProgressOutline: TButton
Left = 275
Height = 25
Top = 36
Width = 48
Caption = 'Outline'
OnClick = btProgressOutlineClick
TabOrder = 5
end
object btProgressText: TButton
Left = 227
Height = 25
Top = 36
Width = 48
Caption = 'Text'
OnClick = btProgressTextClick
TabOrder = 4
end
end
end
object tsCWDefaults: TTabSheet
Caption = 'tsCWDefaults'
ClientHeight = 343
ClientWidth = 439
TabVisible = False
object gbCopyEnd: TGroupBox
Left = 8
Height = 44
Top = 3
Width = 425
Caption = 'Copy end'
ClientHeight = 26
ClientWidth = 421
TabOrder = 0
object llCopyEnd: TLabel
Left = 8
Height = 14
Top = 3
Width = 109
Caption = 'At the end of the copy:'
ParentColor = False
end
object cbCopyEnd: TComboBox
Left = 216
Height = 21
Top = -2
Width = 201
ItemHeight = 13
ItemIndex = 0
Items.Strings = (
'Close the window'
'Don''t close the window'
'Don''t close if there was errors'
)
Style = csDropDownList
TabOrder = 0
Text = 'Close the window'
end
end
object gbSpeedLimit: TGroupBox
Left = 8
Height = 44
Top = 51
Width = 425
Caption = 'Speed limit'
ClientHeight = 26
ClientWidth = 421
TabOrder = 1
object llCustomSpeedLimit: TLabel
Left = 397
Height = 14
Top = 17
Width = 15
Caption = 'KB'
Enabled = False
ParentColor = False
end
object llSpeedLimit: TLabel
Left = 338
Height = 13
Top = 2
Width = 73
Alignment = taRightJustify
AutoSize = False
Caption = 'llSpeedLimit'
Enabled = False
ParentColor = False
Visible = False
end
object chSpeedLimit: TCheckBox
Left = 8
Height = 19
Top = 1
Width = 59
Caption = 'Enabled'
OnClick = chSpeedLimitClick
TabOrder = 0
end
object tbSpeedLimit: TScTrackBar
Left = 80
Height = 23
Top = -2
Width = 249
Max = 52
OnChange = tbSpeedLimitChange
Position = 0
TickMarks = tmBoth
TickStyle = tsNone
Enabled = False
TabOrder = 1
end
object edCustomSpeedLimit: TEdit
Left = 336
Height = 21
Top = -1
Width = 57
Enabled = False
OnKeyPress = NumbersOnly
TabOrder = 2
Text = 'edCustomSpeedLimit'
end
end
object gbCollisions: TGroupBox
Left = 8
Height = 44
Top = 99
Width = 425
Caption = 'File collisions'
ClientHeight = 26
ClientWidth = 421
TabOrder = 2
object llCollisions: TLabel
Left = 8
Height = 14
Top = 3
Width = 162
Caption = 'When a file already exists, always:'
ParentColor = False
end
object cbCollisions: TComboBox
Left = 216
Height = 21
Top = -1
Width = 201
ItemHeight = 13
ItemIndex = 0
Items.Strings = (
'Ask what to do'
'Cancel the whole copy'
'Skip'
'Resume transfer'
'Overwrite'
'Overwrite if different'
'Rename new file'
'Rename old file'
)
Style = csDropDownList
TabOrder = 0
Text = 'Ask what to do'
end
end
object gbCopyErrors: TGroupBox
Left = 8
Height = 72
Top = 147
Width = 425
Caption = 'Copy errors'
ClientHeight = 54
ClientWidth = 421
TabOrder = 3
object llCopyErrors: TLabel
Left = 8
Height = 14
Top = 3
Width = 167
Caption = 'When there is a copy error, always:'
ParentColor = False
end
object llRetryInterval: TLabel
Left = 8
Height = 14
Top = 31
Width = 156
Caption = 'Time to wait between two retries:'
ParentColor = False
end
object llRetryIntervalUnit: TLabel
Left = 304
Height = 14
Top = 31
Width = 58
Caption = 'Milliseconds'
ParentColor = False
end
object cbCopyError: TComboBox
Left = 216
Height = 21
Top = -1
Width = 201
ItemHeight = 13
ItemIndex = 0
Items.Strings = (
'Ask what to do'
'Cancel then whole copy'
'Skip'
'Retry'
'Put the file at the copy list bottom'
)
Style = csDropDownList
TabOrder = 0
Text = 'Ask what to do'
end
object edCopyErrorRetry: TEdit
Left = 216
Height = 21
Top = 27
Width = 81
TabOrder = 1
end
end
end
object tsCopy: TTabSheet
Caption = 'tsCopy'
ClientHeight = 343
ClientWidth = 439
TabVisible = False
object gbCLHandling: TGroupBox
Left = 8
Height = 106
Top = 3
Width = 425
Caption = 'New copy list handling'
ClientHeight = 88
ClientWidth = 421
TabOrder = 0
object llCLHandling: TLabel
Left = 8
Height = 14
Top = 2
Width = 238
Caption = 'Add new copy lists to allready copying ones when:'
ParentColor = False
end
object llCLHandlingInfo: TLabel
Left = 8
Height = 14
Top = 48
Width = 259
Caption = '(same source means, for example, same physical drive)'
ParentColor = False
end
object cbCLHandling: TComboBox
Left = 8
Height = 21
Top = 21
Width = 409
ItemHeight = 13
Items.Strings = (
'Never'
'Always'
'The source is the same'
'The destination is the same'
'The source and the destination are the same'
'The source or the destination are the same'
)
Style = csDropDownList
TabOrder = 0
end
object chCLHandlingConfirm: TCheckBox
Left = 8
Height = 19
Top = 65
Width = 181
Caption = 'Ask for confirmation before adding'
TabOrder = 1
end
end
object gbAttributes: TGroupBox
Left = 8
Height = 67
Top = 113
Width = 425
Caption = 'Attributes && security'
ClientHeight = 49
ClientWidth = 421
TabOrder = 1
object llAttributesAndSecurityForCopies: TLabel
Left = 8
Height = 14
Top = 2
Width = 173
Caption = 'When a file or folder is copied, copy:'
ParentColor = False
end
object llAttributesAndSecurityForMoves: TLabel
Left = 8
Height = 14
Top = 26
Width = 173
Caption = 'When a file or folder is moved, copy:'
ParentColor = False
end
object chSaveAttributesOnCopy: TCheckBox
Left = 200
Height = 19
Top = 1
Width = 64
Caption = 'Attributes'
TabOrder = 0
end
object chSaveAttributesOnMove: TCheckBox
Left = 200
Height = 19
Top = 25
Width = 64
Caption = 'Attributes'
TabOrder = 2
end
object chSaveSecurityOnCopy: TCheckBox
Left = 312
Height = 19
Top = 1
Width = 58
Caption = 'Security'
TabOrder = 1
end
object chSaveSecurityOnMove: TCheckBox
Left = 312
Height = 19
Top = 25
Width = 58
Caption = 'Security'
TabOrder = 3
end
end
object gbDeleting: TGroupBox
Left = 8
Height = 67
Top = 184
Width = 425
Caption = 'Deleting'
ClientHeight = 49
ClientWidth = 421
TabOrder = 2
object chDeleteUnfinishedCopies: TCheckBox
Left = 8
Height = 19
Top = 1
Width = 231
Caption = 'Delete files when they are not entirely copied'
OnClick = chDeleteUnfinishedCopiesClick
TabOrder = 0
end
object chDontDeleteOnCopyError: TCheckBox
Left = 32
Height = 19
Top = 25
Width = 252
Caption = 'Don''t delete them if it was caused by a copy error'
TabOrder = 1
end
end
object gbRenaming: TGroupBox
Left = 8
Height = 82
Top = 255
Width = 425
Caption = 'Renaming'
ClientHeight = 64
ClientWidth = 421
TabOrder = 4
object llRenameOld: TLabel
Left = 8
Height = 14
Top = 10
Width = 118
Caption = 'Old file renaming pattern:'
ParentColor = False
end
object llRenameNew: TLabel
Left = 8
Height = 14
Top = 38
Width = 124
Caption = 'New file renaming pattern:'
ParentColor = False
end
object edRenameOldPattern: TEdit
Left = 216
Height = 21
Top = 6
Width = 201
TabOrder = 0
end
object edRenameNewPattern: TEdit
Left = 216
Height = 21
Top = 34
Width = 201
TabOrder = 1
end
end
object btRenamingHelp: TButton
Left = 357
Height = 16
Top = 233
Width = 75
Caption = 'Help'
OnClick = btRenamingHelpClick
TabOrder = 3
end
end
object tsLog: TTabSheet
Caption = 'tsLog'
ClientHeight = 343
ClientWidth = 439
TabVisible = False
object gbErrorLog: TGroupBox
Left = 8
Height = 94
Top = 3
Width = 425
Caption = 'Error log'
ClientHeight = 76
ClientWidth = 421
TabOrder = 0
object llErrorLogAutoSaveMode: TLabel
Left = 32
Height = 14
Top = 27
Width = 49
Caption = 'Save it to:'
ParentColor = False
end
object llErrorLogFileName: TLabel
Left = 32
Height = 14
Top = 53
Width = 136
Caption = 'Filename (and maybe folder):'
ParentColor = False
end
object cbErrorLogAutoSaveMode: TComboBox
Left = 216
Height = 21
Top = 22
Width = 201
ItemHeight = 13
Items.Strings = (
'The destination folder'
'The source folder'
'A custom folder'
)
OnChange = cbErrorLogAutoSaveModeChange
Style = csDropDownList
TabOrder = 0
end
object chErrorLogAutoSave: TCheckBox
Left = 8
Height = 19
Top = 2
Width = 167
Caption = 'Automatically save the error log'
OnClick = chErrorLogAutoSaveClick
TabOrder = 1
end
object edErrorLogFileName: TEdit
Left = 216
Height = 21
Top = 49
Width = 169
OnKeyPress = FileNameOnly
TabOrder = 2
end
object btELFNBrowse: TButton
Left = 392
Height = 21
Top = 49
Width = 26
Caption = '...'
OnClick = btELFNBrowseClick
TabOrder = 3
end
end
end
object tsAdvanced: TTabSheet
Caption = 'tsAdvanced'
ClientHeight = 343
ClientWidth = 439
TabVisible = False
object gbPriority: TGroupBox
Left = 8
Height = 44
Top = 3
Width = 425
Caption = 'Priority'
ClientHeight = 26
ClientWidth = 421
TabOrder = 0
object llPriority: TLabel
Left = 8
Height = 14
Top = 5
Width = 135
Caption = 'SuperCopier process priority:'
ParentColor = False
end
object cbPriority: TComboBox
Left = 216
Height = 21
Top = 0
Width = 201
ItemHeight = 13
Items.Strings = (
'Idle'
'Normal'
'High'
)
Style = csDropDownList
TabOrder = 0
end
end
object gbAdvanced: TGroupBox
Left = 7
Height = 190
Top = 52
Width = 425
Caption = 'Advanced parameters'
ClientHeight = 172
ClientWidth = 421
TabOrder = 2
object llCopyBufferSize: TLabel
Left = 8
Height = 14
Top = 5
Width = 79
Caption = 'Copy buffer size:'
ParentColor = False
end
object llCopyBufferSizeUnit: TLabel
Left = 304
Height = 14
Top = 5
Width = 27
Caption = 'Bytes'
ParentColor = False
end
object llCopyWindowUpdateInterval: TLabel
Left = 8
Height = 14
Top = 34
Width = 140
Caption = 'Copy window update interval:'
ParentColor = False
end
object llCopyWindowUpdateIntervalUnit: TLabel
Left = 304
Height = 14
Top = 34
Width = 58
Caption = 'Milliseconds'
ParentColor = False
end
object llCopySpeedAveragingInterval: TLabel
Left = 8
Height = 14
Top = 63
Width = 147
Caption = 'Copy speed averaging interval:'
ParentColor = False
end
object llCopySpeedAveragingIntervalUnit: TLabel
Left = 304
Height = 14
Top = 63
Width = 58
Caption = 'Milliseconds'
ParentColor = False
end
object llCopyThrottleInterval: TLabel
Left = 8
Height = 14
Top = 92
Width = 100
Caption = 'Copy throttle interval:'
ParentColor = False
end
object llCopyThrottleIntervalUnit: TLabel
Left = 304
Height = 14
Top = 92
Width = 58
Caption = 'Milliseconds'
ParentColor = False
end
object edCopyBufferSize: TEdit
Left = 216
Height = 21
Top = 1
Width = 81
OnKeyPress = NumbersOnly
TabOrder = 0
end
object edCopyWindowUpdateInterval: TEdit
Left = 216
Height = 21
Top = 30
Width = 81
OnKeyPress = NumbersOnly
TabOrder = 1
end
object edCopySpeedAveragingInterval: TEdit
Left = 216
Height = 21
Top = 59
Width = 81
OnKeyPress = NumbersOnly
TabOrder = 2
end
object edCopyThrottleInterval: TEdit
Left = 216
Height = 21
Top = 88
Width = 81
OnKeyPress = NumbersOnly
TabOrder = 3
end
object chFastFreeSpaceCheck: TCheckBox
Left = 8
Height = 19
Top = 119
Width = 341
Caption = 'Fast free space check (can have problems with NTFS mount points)'