-
Notifications
You must be signed in to change notification settings - Fork 282
/
movetorrent.lfm
94 lines (94 loc) · 2.14 KB
/
movetorrent.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
inherited MoveTorrentForm: TMoveTorrentForm
Left = 476
Height = 126
Top = 200
Width = 643
AutoSize = True
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Torrent data location'
ClientHeight = 126
ClientWidth = 643
OnCreate = FormCreate
Position = poMainFormCenter
object Buttons: TButtonPanel[0]
Left = 8
Height = 40
Top = 78
Width = 627
BorderSpacing.Left = 8
BorderSpacing.Right = 8
BorderSpacing.Bottom = 8
BorderSpacing.Around = 0
OKButton.Name = 'OKButton'
OKButton.DefaultCaption = True
HelpButton.Name = 'HelpButton'
HelpButton.DefaultCaption = True
CloseButton.Name = 'CloseButton'
CloseButton.DefaultCaption = True
CancelButton.Name = 'CancelButton'
CancelButton.DefaultCaption = True
TabOrder = 1
Spacing = 8
ShowButtons = [pbOK, pbCancel]
end
object Panel1: TPanel[1]
Left = 8
Height = 70
Top = 8
Width = 627
Align = alClient
BorderSpacing.Left = 8
BorderSpacing.Top = 8
BorderSpacing.Right = 8
BevelOuter = bvNone
ClientHeight = 70
ClientWidth = 627
Constraints.MinWidth = 545
TabOrder = 0
object txTorrentDir: TLabel
Left = 0
Height = 21
Top = 0
Width = 528
AutoSize = False
Caption = 'New location for torrent data:'
ParentColor = False
end
object edTorrentDir: TComboBox
Left = 0
Height = 23
Top = 20
Width = 528
Anchors = [akTop, akLeft, akRight]
AutoSize = False
DropDownCount = 60
ItemHeight = 0
Sorted = True
TabOrder = 0
end
object cbMoveData: TCheckBox
Left = 0
Height = 19
Top = 47
Width = 528
AutoSize = False
Caption = 'Move torrent data from current location to new location'
Checked = True
State = cbChecked
TabOrder = 2
end
object btBrowse: TButton
Left = 536
Height = 23
Top = 20
Width = 91
Anchors = [akTop, akRight]
Caption = 'Browse...'
Constraints.MaxWidth = 91
Constraints.MinWidth = 91
OnClick = btBrowseClick
TabOrder = 1
end
end
end