forked from alphaonex86/Supercopier
-
Notifications
You must be signed in to change notification settings - Fork 0
/
SCCopyForm.lfm
1113 lines (1113 loc) · 40 KB
/
SCCopyForm.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 CopyForm: TCopyForm
Left = 314
Height = 409
Top = 252
Width = 408
HorzScrollBar.Visible = False
VertScrollBar.Visible = False
AllowDropFiles = True
BorderStyle = bsSingle
Caption = 'CopyForm'
ClientHeight = 409
ClientWidth = 408
Color = clBtnFace
Constraints.MinHeight = 169
Constraints.MinWidth = 408
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'Microsoft Sans Serif'
FormStyle = fsStayOnTop
OnCloseQuery = FormCloseQuery
OnCreate = FormCreate
OnDestroy = FormDestroy
OnDropFiles = FormDropFiles
Position = poScreenCenter
LCLVersion = '0.9.30.4'
object ggAll: TSCProgessBar
Left = 8
Height = 17
Top = 48
Width = 393
Anchors = [akTop, akLeft, akRight]
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
end
object llAll: TLabel
Left = 8
Height = 13
Top = 32
Width = 393
Anchors = [akTop, akLeft, akRight]
AutoSize = False
Caption = 'llAll'
ParentColor = False
ShowAccelChar = False
end
object llSpeed: TLabel
Left = 8
Height = 13
Top = 120
Width = 105
Anchors = [akTop, akLeft, akRight]
AutoSize = False
Caption = 'llSpeed'
ParentColor = False
end
object llFromTitle: TLabel
Left = 8
Height = 14
Top = 0
Width = 27
Caption = 'From:'
ParentColor = False
end
object llToTitle: TLabel
Left = 8
Height = 14
Top = 16
Width = 17
Caption = 'To:'
ParentColor = False
end
object ggFile: TSCProgessBar
Left = 8
Height = 17
Top = 88
Width = 393
Anchors = [akTop, akLeft, akRight]
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
end
object llTo: TSCFileNameLabel
Left = 40
Height = 13
Top = 16
Width = 361
Anchors = [akTop, akLeft, akRight]
AutoSize = False
Caption = 'llTo'
ParentColor = False
ShowAccelChar = False
end
object llFrom: TSCFileNameLabel
Left = 40
Height = 13
Top = 0
Width = 361
Anchors = [akTop, akLeft, akRight]
AutoSize = False
Caption = 'llFrom'
ParentColor = False
ShowAccelChar = False
end
object llFile: TSCFileNameLabel
Left = 8
Height = 13
Top = 72
Width = 393
Anchors = [akTop, akLeft, akRight]
AutoSize = False
Caption = 'llFile'
ParentColor = False
ShowAccelChar = False
end
object pcPages: TPageControl
Left = -1
Height = 268
Top = 150
Width = 412
ActivePage = tsCopyList
Anchors = [akTop, akLeft, akRight, akBottom]
Images = MainForm.ilGlobal
MultiLine = True
TabIndex = 0
TabOrder = 6
OnChange = pcPagesChange
Options = [nboMultiLine]
object tsCopyList: TTabSheet
Caption = 'Copy list'
ClientHeight = 241
ClientWidth = 404
ImageIndex = 8
object btFileTop: TSpeedButton
Left = 0
Height = 25
Hint = 'Move files to top'
Top = 0
Width = 25
Flat = True
NumGlyphs = 0
OnClick = btFileTopClick
ShowHint = True
ParentShowHint = False
end
object btFileUp: TSpeedButton
Left = 0
Height = 25
Hint = 'Move files up'
Top = 28
Width = 25
Flat = True
NumGlyphs = 0
OnClick = btFileUpClick
ShowHint = True
ParentShowHint = False
end
object btFileDown: TSpeedButton
Left = 0
Height = 25
Hint = 'Move files down'
Top = 56
Width = 25
Flat = True
NumGlyphs = 0
OnClick = btFileDownClick
ShowHint = True
ParentShowHint = False
end
object btFileBottom: TSpeedButton
Left = 0
Height = 25
Hint = 'Move files to bottom'
Top = 84
Width = 25
Flat = True
NumGlyphs = 0
OnClick = btFileBottomClick
ShowHint = True
ParentShowHint = False
end
object btFileAdd: TSpeedButton
Left = 0
Height = 25
Hint = 'Add files'
Top = 117
Width = 25
Flat = True
NumGlyphs = 0
OnClick = btFileAddClick
ShowHint = True
ParentShowHint = False
end
object btFileRemove: TSpeedButton
Left = 0
Height = 25
Hint = 'Remove files'
Top = 145
Width = 25
Flat = True
NumGlyphs = 0
OnClick = btFileRemoveClick
ShowHint = True
ParentShowHint = False
end
object btFileSave: TSpeedButton
Left = 0
Height = 25
Hint = 'Save copy list'
Top = 178
Width = 25
Flat = True
NumGlyphs = 0
OnClick = btFileSaveClick
ShowHint = True
ParentShowHint = False
end
object btFileLoad: TSpeedButton
Left = 0
Height = 25
Hint = 'Load copy list'
Top = 206
Width = 25
Flat = True
NumGlyphs = 0
OnClick = btFileLoadClick
ShowHint = True
ParentShowHint = False
end
object lvFileList: TListView
Left = 25
Height = 236
Top = 0
Width = 380
Anchors = [akTop, akLeft, akRight, akBottom]
Columns = <
item
Caption = 'Source'
Width = 250
end
item
Alignment = taRightJustify
Caption = 'Size'
Width = 75
end
item
Caption = 'Destination'
Width = 300
end>
HideSelection = False
MultiSelect = True
OwnerData = True
PopupMenu = pmFileContext
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnColumnClick = lvFileListColumnClick
OnData = lvFileListData
end
end
object tsErrors: TTabSheet
Caption = 'Error log'
ClientHeight = 241
ClientWidth = 404
Font.Color = clWindowText
Font.Height = -11
Font.Name = 'MS Sans Serif'
ImageIndex = 9
ParentFont = False
object btErrorClear: TSpeedButton
Left = 0
Height = 25
Hint = 'Clear log'
Top = 0
Width = 25
Flat = True
NumGlyphs = 0
OnClick = btErrorClearClick
ShowHint = True
ParentShowHint = False
end
object btErrorSaveLog: TSpeedButton
Left = 0
Height = 25
Hint = 'Save log'
Top = 28
Width = 25
Flat = True
NumGlyphs = 0
OnClick = btErrorSaveLogClick
ShowHint = True
ParentShowHint = False
end
object lvErrorList: TListView
Left = 25
Height = 206
Top = 0
Width = 371
Anchors = [akTop, akLeft, akRight, akBottom]
Columns = <
item
Caption = 'Time'
Width = 65
end
item
Caption = 'Action'
Width = 75
end
item
Caption = 'Target'
Width = 200
end
item
Caption = 'Error text'
Width = 300
end>
ColumnClick = False
HideSelection = False
MultiSelect = True
ReadOnly = True
RowSelect = True
TabOrder = 0
ViewStyle = vsReport
OnData = lvFileListData
end
end
object tsOptions: TTabSheet
Caption = 'Options'
ClientHeight = 241
ClientWidth = 404
ImageIndex = 4
object gbSpeedLimit: TGroupBox
Left = 8
Height = 44
Top = 51
Width = 381
Anchors = [akTop, akLeft, akRight]
Caption = 'Speed limit'
ClientHeight = 26
ClientWidth = 377
TabOrder = 1
object llCustomSpeedLimit: TLabel
Left = 352
Height = 14
Top = 17
Width = 15
Anchors = [akTop, akRight]
Caption = 'KB'
Enabled = False
ParentColor = False
end
object llSpeedLimit: TLabel
Left = 294
Height = 13
Top = -1
Width = 73
Alignment = taRightJustify
Anchors = [akTop, akRight]
AutoSize = False
Caption = 'llSpeedLimit'
Enabled = False
ParentColor = False
Visible = False
end
object chSpeedLimit: TCheckBox
Left = 8
Height = 17
Top = 1
Width = 59
Caption = 'Enabled'
OnClick = chSpeedLimitClick
TabOrder = 0
end
object tbSpeedLimit: TScTrackBar
Left = 80
Height = 23
Top = -4
Width = 205
Max = 52
OnChange = tbSpeedLimitChange
Position = 0
TickMarks = tmBoth
TickStyle = tsNone
Anchors = [akTop, akLeft, akRight]
Enabled = False
TabOrder = 1
end
object edCustomSpeedLimit: TEdit
Left = 292
Height = 21
Top = -1
Width = 57
Anchors = [akTop, akRight]
Enabled = False
OnChange = edCustomSpeedLimitChange
OnKeyPress = edCustomSpeedLimitKeyPress
TabOrder = 2
Text = 'edCustomSpeedLimit'
end
end
object gbCollisions: TGroupBox
Left = 8
Height = 44
Top = 99
Width = 381
Anchors = [akTop, akLeft, akRight]
Caption = 'File collisions'
ClientHeight = 26
ClientWidth = 377
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 = 184
Height = 21
Top = -1
Width = 185
Anchors = [akTop, akLeft, akRight]
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'
)
OnChange = cbCollisionsChange
Style = csDropDownList
TabOrder = 0
Text = 'Ask what to do'
end
end
object gbCopyErrors: TGroupBox
Left = 8
Height = 44
Top = 147
Width = 381
Anchors = [akTop, akLeft, akRight]
Caption = 'Copy errors'
ClientHeight = 26
ClientWidth = 377
TabOrder = 3
object llCopyErrors: TLabel
Left = 8
Height = 14
Top = 4
Width = 167
Caption = 'When there is a copy error, always:'
ParentColor = False
end
object cbCopyError: TComboBox
Left = 184
Height = 21
Top = 0
Width = 185
Anchors = [akTop, akLeft, akRight]
ItemHeight = 13
ItemIndex = 0
Items.Strings = (
'Ask what to do'
'Cancel then whole copy'
'Skip'
'Retry'
'Put the file at the copy list bottom'
)
OnChange = cbCopyErrorChange
Style = csDropDownList
TabOrder = 0
Text = 'Ask what to do'
end
end
object gbCopyEnd: TGroupBox
Left = 8
Height = 44
Top = 3
Width = 381
Anchors = [akTop, akLeft, akRight]
Caption = 'Copy end'
ClientHeight = 26
ClientWidth = 377
TabOrder = 0
object llCopyEnd: TLabel
Left = 8
Height = 14
Top = 0
Width = 109
Caption = 'At the end of the copy:'
ParentColor = False
end
object cbCopyEnd: TComboBox
Left = 184
Height = 21
Top = -2
Width = 185
Anchors = [akTop, akLeft, akRight]
ItemHeight = 13
ItemIndex = 0
Items.Strings = (
'Close the window'
'Don''t close the window'
'Don''t close if there was errors'
)
OnChange = cbCopyEndChange
Style = csDropDownList
TabOrder = 0
Text = 'Close the window'
end
end
object btSaveDefaultCfg: TButton
Left = 192
Height = 25
Top = 199
Width = 196
Anchors = [akTop, akRight]
Caption = 'Set as default options'
OnClick = btSaveDefaultCfgClick
TabOrder = 4
end
end
end
object btCancel: TScPopupButton
Left = 337
Height = 25
Top = 116
Width = 65
TabOrder = 5
TabStop = True
Anchors = [akTop, akRight]
ItemIndex = 0
Caption = 'Cancel'
ImageIndex = 6
ImageList = MainForm.ilGlobal
OnClick = btCancelClick
end
object btSkip: TScPopupButton
Left = 265
Height = 25
Top = 116
Width = 65
TabOrder = 4
TabStop = True
Anchors = [akTop, akRight]
ItemIndex = 0
Caption = 'Skip'
ImageIndex = 19
ImageList = MainForm.ilGlobal
OnClick = btSkipClick
end
object btPause: TScPopupButton
Left = 193
Height = 25
Top = 116
Width = 65
TabOrder = 2
TabStop = True
Anchors = [akTop, akRight]
ItemIndex = 0
Caption = 'Pause'
ImageIndex = 25
ImageList = MainForm.ilGlobal
OnClick = btPauseClick
end
object btResume: TScPopupButton
Left = 193
Height = 25
Top = 116
Width = 65
Visible = False
TabOrder = 3
TabStop = True
Anchors = [akTop, akRight]
ItemIndex = 0
Caption = 'Resume'
ImageIndex = 26
ImageList = MainForm.ilGlobal
OnClick = btPauseClick
end
object btUnfold: TScPopupButton
Left = 112
Height = 25
Top = 116
Width = 74
TabOrder = 1
TabStop = True
Anchors = [akTop, akRight]
ItemIndex = 0
Caption = 'Unfold'
ImageIndex = 24
ImageList = MainForm.ilGlobal
OnClick = btUnfoldClick
end
object btFold: TScPopupButton
Left = 112
Height = 25
Top = 116
Width = 74
TabOrder = 0
TabStop = True
Anchors = [akTop, akRight]
ItemIndex = 0
Caption = 'Fold up'
ImageIndex = 23
ImageList = MainForm.ilGlobal
OnClick = btUnfoldClick
end
object pmFileContext: TPopupMenu
Images = MainForm.ilGlobal
TrackButton = tbLeftButton
left = 204
top = 366
object miTop: TMenuItem
Caption = 'Top'
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000040204FF00000000000000000000000000000000000000000000
000000000000040204FF00000000000000000000000000000000000000000000
0000040204FFD46A0CFF040204FF000000000000000000000000000000000000
0000040204FFDC720CFF040204FF000000000000000000000000000000000402
04FFD46A0CFFE48E0CFFD46A0CFF040204FF0000000000000000000000000402
04FFDC720CFFD46A0CFFDC720CFF040204FF0000000000000000040204FFD46A
0CFFE48E0CFFE48E0CFFE48E0CFFD46A0CFF040204FF00000000040204FFDC7E
0CFFD46A0CFFD46A0CFFD46A0CFFDC720CFF040204FF00000000000000000402
04FFD46A0CFFE48E0CFFDC860CFFDC7E0CFFDC720CFF040204FFDC7E0CFFDC6E
0CFFDC6E0CFFD46A0CFFDC7E0CFF040204FF0000000000000000000000000000
0000040204FFD46A0CFFDC7E0CFFDC860CFFDC7E0CFFDC7E0CFFDC6E0CFFDC72
0CFFDC6E0CFFDC7E0CFF040204FF000000000000000000000000000000000402
04FFD46A0CFF040204FFDC720CFFDC7E0CFFDC7E0CFFDC720CFFDC720CFFDC6E
0CFFE48E0CFF040204FFDC720CFF040204FF0000000000000000040204FFD46A
0CFFE48E0CFFDC860CFF040204FFDC720CFFDC6E0CFFDC720CFFD46A0CFFDC86
0CFF040204FFD46A0CFFD46A0CFFDC720CFF040204FF00000000000000000402
04FFD46A0CFFE48E0CFFDC7E0CFF040204FFDC7E0CFFD46A0CFFDC860CFF0402
04FFDC6E0CFFD46A0CFFDC7E0CFF040204FF0000000000000000000000000000
0000040204FFD46A0CFFDC860CFFDC860CFF040204FFDC7E0CFF040204FFDC72
0CFFDC6E0CFFDC7E0CFF040204FF000000000000000000000000000000000000
000000000000040204FFDC720CFFDC7E0CFFDC7E0CFF040204FFDC720CFFDC6E
0CFFDC860CFF040204FF00000000000000000000000000000000000000000000
00000000000000000000040204FFDC6E0CFFDC720CFFDC720CFFD46A0CFFE48E
0CFF040204FF0000000000000000000000000000000000000000000000000000
0000000000000000000000000000040204FFDC7E0CFFDC6E0CFFDC7E0CFF0402
04FF000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000040204FFDC7E0CFF040204FF0000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000040204FF000000000000
0000000000000000000000000000000000000000000000000000
}
ImageIndex = 12
ShortCut = 16468
OnClick = btFileTopClick
end
object miUp: TMenuItem
Caption = 'Up'
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000040204FF00000000000000000000000000000000000000000000
000000000000040204FF00000000000000000000000000000000000000000000
0000040204FFD46A0CFF040204FF000000000000000000000000000000000000
0000040204FFDC720CFF040204FF000000000000000000000000000000000402
04FFD46A0CFFE48E0CFFD46A0CFF040204FF0000000000000000000000000402
04FFDC720CFFD46A0CFFDC720CFF040204FF0000000000000000040204FFD46A
0CFFE48E0CFFE48E0CFFE48E0CFFD46A0CFF040204FF00000000040204FFDC7E
0CFFD46A0CFFD46A0CFFD46A0CFFDC720CFF040204FF00000000000000000402
04FFD46A0CFFE48E0CFFDC860CFFDC7E0CFFDC720CFF040204FFDC7E0CFFDC6E
0CFFDC6E0CFFD46A0CFFDC7E0CFF040204FF0000000000000000000000000000
0000040204FFD46A0CFFDC7E0CFFDC860CFFDC7E0CFFDC7E0CFFDC6E0CFFDC72
0CFFDC6E0CFFDC7E0CFF040204FF000000000000000000000000000000000000
000000000000040204FFDC720CFFDC7E0CFFDC7E0CFFDC720CFFDC720CFFDC6E
0CFFE48E0CFF040204FF00000000000000000000000000000000000000000000
00000000000000000000040204FFDC720CFFDC6E0CFFDC720CFFD46A0CFFDC86
0CFF040204FF0000000000000000000000000000000000000000000000000000
0000000000000000000000000000040204FFDC7E0CFFD46A0CFFDC860CFF0402
04FF000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000040204FFDC7E0CFF040204FF0000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000040204FF000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000
}
ImageIndex = 10
ShortCut = 16469
OnClick = btFileUpClick
end
object miDown: TMenuItem
Caption = 'Down'
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
00000000000000000000000000000000000000000000040204FF000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000040204FFDC7E0CFF040204FF0000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000040204FFDC7E0CFFD46A0CFFDC7E0CFF0402
04FF000000000000000000000000000000000000000000000000000000000000
00000000000000000000040204FFDC720CFFDC720CFFDC720CFFD46A0CFFE48E
0CFF040204FF0000000000000000000000000000000000000000000000000000
000000000000040204FFDC720CFFDC7E0CFFDC7E0CFFDC720CFFDC720CFFDC6E
0CFFDC860CFF040204FF00000000000000000000000000000000000000000000
0000040204FFDC6E0CFFDC7E0CFFDC7E0CFFDC7E0CFFDC7E0CFFDC720CFFDC72
0CFFDC720CFFDC7E0CFF040204FF000000000000000000000000000000000402
04FFD46A0CFFE48E0CFFDC860CFFDC860CFFDC6E0CFF040204FFDC7E0CFFDC72
0CFFDC6E0CFFD46A0CFFDC7E0CFF040204FF0000000000000000040204FFD46A
0CFFE48E0CFFE48E0CFFDC860CFFDC6E0CFF040204FF00000000040204FFDC7E
0CFFD46A0CFFD46A0CFFD46A0CFFDC720CFF040204FF00000000000000000402
04FFD46A0CFFE48E0CFFD46A0CFF040204FF0000000000000000000000000402
04FFDC720CFFD46A0CFFDC720CFF040204FF0000000000000000000000000000
0000040204FFD46A0CFF040204FF000000000000000000000000000000000000
0000040204FFDC720CFF040204FF000000000000000000000000000000000000
000000000000040204FF00000000000000000000000000000000000000000000
000000000000040204FF00000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000
}
ImageIndex = 11
ShortCut = 16452
OnClick = btFileDownClick
end
object miBottom: TMenuItem
Caption = 'Bottom'
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
00000000000000000000000000000000000000000000040204FF000000000000
0000000000000000000000000000000000000000000000000000000000000000
000000000000000000000000000000000000040204FFDC7E0CFF040204FF0000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000040204FFDC7E0CFFD46A0CFFDC7E0CFF0402
04FF000000000000000000000000000000000000000000000000000000000000
00000000000000000000040204FFDC720CFFDC720CFFDC720CFFD46A0CFFE48E
0CFF040204FF0000000000000000000000000000000000000000000000000000
000000000000040204FFDC720CFFDC7E0CFFDC7E0CFF040204FFDC720CFFDC6E
0CFFDC860CFF040204FF00000000000000000000000000000000000000000000
0000040204FFD46A0CFFDC860CFFDC7E0CFF040204FFDC7E0CFF040204FFDC72
0CFFDC720CFFDC7E0CFF040204FF000000000000000000000000000000000402
04FFD46A0CFFE48E0CFFDC7E0CFF040204FFDC7E0CFFD46A0CFFDC7E0CFF0402
04FFDC6E0CFFD46A0CFFDC7E0CFF040204FF0000000000000000040204FFD46A
0CFFE48E0CFFE48E0CFF040204FFDC720CFFDC720CFFDC720CFFDC6E0CFFDC86
0CFF040204FFD46A0CFFD46A0CFFDC720CFF040204FF00000000000000000402
04FFD46A0CFF040204FFDC720CFFDC7E0CFFDC7E0CFFDC720CFFDC720CFFDC6E
0CFFE48E0CFF040204FFDC720CFF040204FF0000000000000000000000000000
0000040204FFD46A0CFFDC860CFFDC7E0CFFDC7E0CFFDC7E0CFFDC720CFFDC72
0CFFDC6E0CFFDC7E0CFF040204FF000000000000000000000000000000000402
04FFD46A0CFFE48E0CFFDC7E0CFFDC860CFFDC720CFF040204FFDC7E0CFFDC72
0CFFD46A0CFFDC6E0CFFDC7E0CFF040204FF0000000000000000040204FFD46A
0CFFE48E0CFFDC860CFFE48E0CFFDC6E0CFF040204FF00000000040204FFDC7E
0CFFDC6E0CFFD46A0CFFD46A0CFFDC720CFF040204FF00000000000000000402
04FFD46A0CFFE48E0CFFD46A0CFF040204FF0000000000000000000000000402
04FFDC720CFFD46A0CFFDC720CFF040204FF0000000000000000000000000000
0000040204FFD46A0CFF040204FF000000000000000000000000000000000000
0000040204FFDC720CFF040204FF000000000000000000000000000000000000
000000000000040204FF00000000000000000000000000000000000000000000
000000000000040204FF00000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000
}
ImageIndex = 13
ShortCut = 16450
OnClick = btFileBottomClick
end
object N1: TMenuItem
Caption = '-'
end
object miRemove: TMenuItem
Caption = 'Remove'
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
000000000000323232FF323232FF323232FF323232FF323232FF000000FF3232
32FF323232FF323232FF323232FF000000FF0000000000000000000000000000
0000323232FF868686FFB6B6B6FFC2C2C2FFC2C2C2FF000000FF4848FFFF0000
00FFC0C0C0FFB6B6B6FF000000FF2525FFFF000000FF00000000000000003232
32FFF2F2F2FF4A4A4AFFB6B6B6FFE6E6E6FF000000FF4848FFFF4848FFFF4848
FFFF000000FF000000FF2525FFFF6B6BFFFF2525FFFF000000FF323232FF8686
86FF4A4A4AFF626262FFE6E6E6FFE6E6E6FFE6E6E6FF000000FF4848FFFF4848
FFFF4848FFFF4848FFFF4848FFFF2525FFFF000000FF00000000323232FFDADA
DAFFDADADAFFDADADAFFDADADAFFE6E6E6FFE6E6E6FFE6E6E6FF000000FF4848
FFFF4848FFFF4848FFFF4848FFFF000000FF0000000000000000323232FFDADA
DAFFDADADAFFDADADAFFDADADAFFDADADAFFDADADAFFE6E6E6FFE6E6E6FF0000
00FF4848FFFF4848FFFF000000FF000000000000000000000000323232FFE6E6
E6FFDADADAFFDADADAFFDADADAFFDADADAFFDADADAFFDADADAFF000000FF6B6B
FFFF4848FFFF4848FFFF4848FFFF000000FF0000000000000000323232FFE6E6
E6FFCECECEFFCECECEFFDADADAFFDADADAFFDADADAFF000000FF6B6BFFFF2525
FFFF2525FFFF4848FFFF4848FFFF4848FFFF000000FF00000000323232FFE6E6
E6FFCECECEFFCECECEFFCECECEFFDADADAFF000000FF6B6BFFFF2525FFFF6B6B
FFFF000000FF000000FF4848FFFF4848FFFF4848FFFF000000FF323232FFE6E6
E6FFCECECEFFCECECEFFCECECEFFCECECEFFDADADAFF000000FF6B6BFFFF0000
00FFDADADAFFCECECEFF000000FF4848FFFF000000FF00000000323232FFF2F2
F2FFCECECEFFCECECEFFCECECEFFCECECEFFCECECEFFCECECEFF000000FFDADA
DAFFDADADAFFDADADAFF323232FF000000FF0000000000000000323232FFF2F2
F2FFC2C2C2FFC2C2C2FFCECECEFFCECECEFFCECECEFFCECECEFFCECECEFFDADA
DAFFDADADAFFDADADAFF323232FF000000000000000000000000323232FFF2F2
F2FFC2C2C2FFC2C2C2FFC2C2C2FFCECECEFFCECECEFFCECECEFFCECECEFFCECE
CEFFCECECEFFDADADAFF323232FF000000000000000000000000323232FFF2F2
F2FFC0C0C0FFC2C2C2FFC2C2C2FFC2C2C2FFCECECEFFCECECEFFCECECEFFCECE
CEFFCECECEFFDADADAFF323232FF000000000000000000000000323232FFF2F2
F2FFF2F2F2FFF2F2F2FFF2F2F2FFF2F2F2FFF2F2F2FFF2F2F2FFE6E6E6FFE6E6
E6FFE6E6E6FFE6E6E6FF323232FF000000000000000000000000323232FF3232
32FF323232FF323232FF323232FF323232FF323232FF323232FF323232FF3232
32FF323232FF323232FF323232FF000000000000000000000000
}
ImageIndex = 15
ShortCut = 46
OnClick = btFileRemoveClick
end
object N2: TMenuItem
Caption = '-'
end
object miSelectAll: TMenuItem
Caption = 'Select all'
ShortCut = 16449
OnClick = miSelectAllClick
end
object miInvert: TMenuItem
Caption = 'Invert selection'
ShortCut = 16457
OnClick = miInvertClick
end
object N4: TMenuItem
Caption = '-'
end
object miSort: TMenuItem
Caption = 'Sort by'
object miBySrcFullPath: TMenuItem
Tag = 1
Caption = 'Source full path'
OnClick = miBySrcFullPathClick
end
object miBySrcName: TMenuItem
Tag = 2
Caption = 'Source name'
OnClick = miBySrcNameClick
end
object miBySrcExt: TMenuItem
Tag = 3
Caption = 'Source extension'
OnClick = miBySrcExtClick
end
object miByDestFullPath: TMenuItem
Tag = 4
Caption = 'Destination full path'
OnClick = miByDestFullPathClick
end
object miBySize: TMenuItem
Tag = 5
Caption = 'Size'
OnClick = miBySizeClick
end
end
end
object pmNewFiles: TPopupMenu
TrackButton = tbLeftButton
left = 236
top = 366
object miDefaultDest: TMenuItem
Caption = 'Use default destination folder ()'
Default = True
OnClick = miDefaultDestClick
end
object miChooseDest: TMenuItem
Caption = 'Choose destination folder...'
OnClick = miChooseDestClick
end
object miChooseSetDefault: TMenuItem
Caption = 'Choose destination folder and set it as default...'
OnClick = miChooseSetDefaultClick
end
object N3: TMenuItem
Caption = '-'
end
object miCancel: TMenuItem
Caption = 'Cancel'
OnClick = miCancelClick
end
end
object odCopyList: TOpenDialog
DefaultExt = '.scl'
Filter = 'SuperCopier2 Copy List (*.scl)|*.scl'
Options = [ofHideReadOnly, ofFileMustExist, ofEnableSizing]
left = 300
top = 366
end
object sdCopyList: TSaveDialog
DefaultExt = '.scl'
Filter = 'SuperCopier2 Copy List (*.scl)|*.scl'
Options = [ofOverwritePrompt, ofHideReadOnly, ofEnableSizing]
left = 332
top = 366
end
object sdErrorLog: TSaveDialog
DefaultExt = '.txt'
FileName = 'errorlog.txt'
Filter = 'Text files (*.txt)|*.txt'
left = 364
top = 366
end
object odFileAdd: TOpenDialog
Filter = 'Any file (*.*)'
Options = [ofHideReadOnly, ofAllowMultiSelect, ofPathMustExist, ofFileMustExist, ofShareAware, ofEnableSizing]
left = 268
top = 366
end
object pmFileAdd: TPopupMenu
TrackButton = tbLeftButton
left = 172
top = 366
object miAddFiles: TMenuItem
Caption = 'Add files...'
OnClick = miAddFilesClick
end
object miAddFolder: TMenuItem
Caption = 'Add folder...'
OnClick = miAddFolderClick
end
end
object Systray: TTrayIcon
PopUpMenu = pmSystray
OnClick = SystrayMouseDown
OnMouseDown = SystrayMouseDown
left = 107
top = 366
end
object tiSystray: TTimer
Enabled = False
Interval = 500
OnTimer = tiSystrayTimer
left = 75
top = 366
end
object pmSystray: TPopupMenu
Images = MainForm.ilGlobal
TrackButton = tbLeftButton
left = 140
top = 366
object miStResume: TMenuItem
Caption = 'Resume'
Bitmap.Data = {
36040000424D3604000000000000360000002800000010000000100000000100
2000000000000004000064000000640000000000000000000000000000000000
000000000000000000000000000000000000000000000000000000000000944A
6BFF100808FF0000000000000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000944A6BFF1008
08FF18E739FF100808FF00000000000000000000000000000000000000000000
0000000000000000000000000000000000000000000000000000944A6BFF1008
08FF18E739FF100808FF00000000000000000000000000000000000000000000
000000000000000000000000000000000000944A6BFF944A6BFF944A6BFF1008
08FF18E739FF18E739FF100808FF000000000000000000000000000000000000