-
Notifications
You must be signed in to change notification settings - Fork 0
/
movetorrent.lfm
88 lines (88 loc) · 1.99 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
inherited MoveTorrentForm: TMoveTorrentForm
Left = 354
Height = 126
Top = 193
Width = 561
AutoSize = True
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Torrent data location'
ClientHeight = 126
ClientWidth = 561
OnCreate = FormCreate
Position = poMainFormCenter
object Buttons: TButtonPanel[0]
Left = 8
Height = 36
Top = 82
Width = 545
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 = 74
Top = 8
Width = 545
Align = alClient
BorderSpacing.Left = 8
BorderSpacing.Top = 8
BorderSpacing.Right = 8
BevelOuter = bvNone
ClientHeight = 74
ClientWidth = 545
Constraints.MinWidth = 545
TabOrder = 0
object txTorrentDir: TLabel
Left = 0
Height = 14
Top = 0
Width = 145
Caption = 'New location for torrent data:'
ParentColor = False
end
object edTorrentDir: TComboBox
Left = 0
Height = 21
Top = 20
Width = 449
Anchors = [akTop, akLeft, akRight]
DropDownCount = 20
ItemHeight = 13
TabOrder = 0
end
object cbMoveData: TCheckBox
Left = 0
Height = 17
Top = 47
Width = 285
Caption = 'Move torrent data from current location to new location'
Checked = True
State = cbChecked
TabOrder = 2
end
object btBrowse: TButton
Left = 454
Height = 23
Top = 19
Width = 91
Anchors = [akTop, akRight]
Caption = 'Browse...'
OnClick = btBrowseClick
TabOrder = 1
end
end
end