forked from transmission-remote-gui/transgui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaddtorrent.lfm
216 lines (213 loc) · 4.89 KB
/
addtorrent.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
object AddTorrentForm: TAddTorrentForm
Left = 376
Height = 478
Top = 186
Width = 497
HorzScrollBar.Page = 505
VertScrollBar.Page = 404
VertScrollBar.Range = 92
BorderIcons = [biSystemMenu]
Caption = 'Add new torrent'
ClientHeight = 478
ClientWidth = 497
Constraints.MinHeight = 300
Constraints.MinWidth = 470
OnCreate = FormCreate
OnShow = FormShow
Position = poMainFormCenter
LCLVersion = '0.9.31'
object gbSaveAs: TGroupBox
Left = 8
Height = 92
Top = 8
Width = 481
Align = alTop
BorderSpacing.Left = 8
BorderSpacing.Top = 8
BorderSpacing.Right = 8
Caption = ' '
ClientHeight = 74
ClientWidth = 477
TabOrder = 0
object txDestFolder: TLabel
Left = 10
Height = 14
Top = 0
Width = 90
Caption = 'Destination folder:'
ParentColor = False
end
object txPeerLimit: TLabel
Left = 340
Height = 14
Top = 49
Width = 48
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'Peer limit:'
ParentColor = False
end
object txCheatMode: TLabel
Left = 340
Height = 14
Top = 63
Width = 48
Alignment = taRightJustify
Anchors = [akTop, akRight]
Caption = 'To change MODES, UN-Check Start torrent then set modes with Torrent properties'
ParentColor = False
end
object cbDestFolder: TComboBox
Left = 10
Height = 21
Top = 16
Width = 360
Anchors = [akTop, akLeft, akRight]
ItemHeight = 13
TabOrder = 0
end
object cbStartTorrent: TCheckBox
Left = 10
Height = 17
Top = 47
Width = 81
Caption = 'Start torrent'
Checked = True
State = cbChecked
TabOrder = 2
end
object edPeerLimit: TSpinEdit
Left = 404
Height = 21
Top = 46
Width = 62
Anchors = [akTop, akRight]
MaxValue = 989
MinValue = 0
TabOrder = 3
Value = 1
end
object btBrowse: TButton
Left = 375
Height = 23
Top = 15
Width = 91
Anchors = [akTop, akRight]
Caption = 'Browse...'
OnClick = btBrowseClick
TabOrder = 1
end
end
object gbContents: TGroupBox
Left = 8
Height = 366
Top = 104
Width = 481
Align = alClient
BorderSpacing.Left = 8
BorderSpacing.Top = 4
BorderSpacing.Right = 8
BorderSpacing.Bottom = 8
Caption = 'Torrent contents'
ClientHeight = 348
ClientWidth = 477
TabOrder = 1
object txDiskSpace: TLabel
Left = 10
Height = 14
Top = 20
Width = 79
Caption = 'Free disk space:'
ParentColor = False
end
object txSize: TLabel
Left = 10
Height = 1
Top = 2
Width = 1
ParentColor = False
end
object lvFiles: TVarGrid
Left = 10
Height = 271
Top = 40
Width = 456
Anchors = [akTop, akLeft, akRight, akBottom]
Columns = <
item
ReadOnly = True
Title.Caption = 'File name'
Width = 350
end
item
ReadOnly = True
Title.Caption = 'Size'
Width = 80
end
item
Title.Caption = ' '
Visible = False
end>
FixedCols = 0
Options = [goFixedVertLine, goFixedHorzLine, goColSizing, goEditing, goRowSelect, goThumbTracking, goDblClickAutoSize]
RowCount = 1
TabOrder = 0
Images = MainForm.ImageList16
MultiSelect = True
HideSelection = True
OnCellAttributes = lvFilesCellAttributes
end
object btSelectAll: TButton
Left = 206
Height = 23
Top = 4
Width = 126
Anchors = [akTop, akRight]
Caption = 'Select all'
Constraints.MinWidth = 75
OnClick = btSelectAllClick
TabOrder = 1
end
object btSelectNone: TButton
Left = 340
Height = 23
Top = 4
Width = 126
Anchors = [akTop, akRight]
Caption = 'Select none'
Constraints.MinWidth = 75
OnClick = btSelectNoneClick
TabOrder = 2
end
object Buttons: TButtonPanel
Left = 0
Height = 26
Top = 314
Width = 477
BorderSpacing.Bottom = 8
BorderSpacing.Around = 0
OKButton.Name = 'OKButton'
OKButton.Caption = '&OK'
HelpButton.Name = 'HelpButton'
HelpButton.Caption = '&Help'
CloseButton.Name = 'CloseButton'
CloseButton.Caption = '&Close'
CancelButton.Name = 'CancelButton'
CancelButton.Caption = 'Cancel'
TabOrder = 3
Spacing = 8
ShowButtons = [pbOK, pbCancel]
ShowBevel = False
object cbSkipMultiTorrents: TCheckBox
Left = 135
Height = 26
Top = 0
Width = 174
Align = alCustom
Caption = 'Skip this dialog for next torrents'
TabOrder = 4
Visible = False
end
end
end
end