-
Notifications
You must be signed in to change notification settings - Fork 0
/
connoptions.lfm
422 lines (422 loc) · 9.62 KB
/
connoptions.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
inherited ConnOptionsForm: TConnOptionsForm
Left = 401
Height = 379
Top = 186
Width = 529
HorzScrollBar.Page = 349
VertScrollBar.Page = 238
AutoSize = True
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Manage connections to Transmission'
ClientHeight = 379
ClientWidth = 529
Constraints.MinHeight = 280
Constraints.MinWidth = 471
OnCreate = FormCreate
OnShow = FormShow
Position = poMainFormCenter
object Page: TPageControl[0]
Left = 8
Height = 268
Top = 69
Width = 513
ActivePage = tabConnection
Align = alClient
BorderSpacing.Left = 8
BorderSpacing.Right = 8
TabIndex = 0
TabOrder = 1
object tabConnection: TTabSheet
Caption = 'Transmission'
ClientHeight = 242
ClientWidth = 505
object txPassword: TLabel
Left = 24
Height = 14
Top = 157
Width = 51
Caption = 'Password:'
ParentColor = False
end
object txUserName: TLabel
Left = 24
Height = 14
Top = 128
Width = 56
Caption = 'User name:'
ParentColor = False
end
object txPort: TLabel
Left = 8
Height = 14
Top = 76
Width = 25
Caption = 'Port:'
ParentColor = False
end
object txHost: TLabel
Left = 8
Height = 14
Top = 48
Width = 66
Caption = 'Remote host:'
ParentColor = False
end
object edPassword: TEdit
Left = 180
Height = 21
Top = 153
Width = 316
Anchors = [akTop, akLeft, akRight]
EchoMode = emPassword
PasswordChar = '*'
TabOrder = 5
end
object edUserName: TEdit
Left = 180
Height = 21
Top = 125
Width = 316
Anchors = [akTop, akLeft, akRight]
TabOrder = 4
end
object edPort: TSpinEdit
Left = 180
Height = 21
Top = 73
Width = 70
MaxValue = 65535
MinValue = 1
TabOrder = 1
Value = 65535
end
object cbSSL: TCheckBox
Left = 260
Height = 17
Top = 75
Width = 56
Caption = 'Use SSL'
TabOrder = 2
end
object edHost: TEdit
Left = 180
Height = 21
Top = 45
Width = 316
Anchors = [akTop, akLeft, akRight]
OnChange = edHostChange
TabOrder = 0
end
object txConnHelp: TLabel
Left = 8
Height = 31
Top = 9
Width = 488
Anchors = [akTop, akLeft, akRight]
AutoSize = False
Caption = 'Please specify how %s will connect to a remote host running Transmission daemon (service).'
ParentColor = False
WordWrap = True
end
object cbAuth: TCheckBox
Left = 8
Height = 17
Top = 101
Width = 131
Caption = 'Authentication required'
OnClick = cbAuthClick
TabOrder = 3
end
object edRpcPath: TEdit
Left = 180
Height = 21
Top = 209
Width = 316
TabOrder = 7
end
object txRpcPath: TLabel
Left = 8
Height = 14
Top = 212
Width = 50
Caption = 'RPC path:'
ParentColor = False
end
object cbShowAdvanced: TCheckBox
Left = 8
Height = 17
Top = 225
Width = 132
Caption = 'Show advanced options'
OnClick = cbShowAdvancedClick
TabOrder = 8
Visible = False
end
object cbAskPassword: TCheckBox
Left = 180
Height = 17
Top = 181
Width = 101
Caption = 'Ask for password'
OnClick = cbAskPasswordClick
TabOrder = 6
end
end
object tabProxy: TTabSheet
Caption = 'Proxy'
ClientHeight = 227
ClientWidth = 505
object txProxy: TLabel
Left = 8
Height = 14
Top = 37
Width = 67
Caption = 'Proxy server:'
ParentColor = False
end
object txProxyPort: TLabel
Left = 8
Height = 14
Top = 65
Width = 56
Caption = 'Proxy port:'
ParentColor = False
end
object txProxyUserName: TLabel
Left = 24
Height = 14
Top = 116
Width = 86
Caption = 'Proxy user name:'
ParentColor = False
end
object txProxyPassword: TLabel
Left = 24
Height = 14
Top = 144
Width = 82
Caption = 'Proxy password:'
ParentColor = False
end
object cbUseProxy: TCheckBox
Left = 8
Height = 17
Top = 10
Width = 228
Caption = 'Connect to Transmission using proxy server'
OnClick = cbUseProxyClick
TabOrder = 0
end
object cbUseSocks5: TCheckBox
Left = 260
Height = 17
Top = 64
Width = 60
Caption = 'SOCKS 5'
OnClick = cbUseProxyClick
TabOrder = 3
end
object edProxy: TEdit
Left = 180
Height = 21
Top = 34
Width = 316
Anchors = [akTop, akLeft, akRight]
TabOrder = 1
end
object edProxyPort: TSpinEdit
Left = 180
Height = 21
Top = 62
Width = 70
MaxValue = 65535
MinValue = 1
TabOrder = 2
Value = 65535
end
object edProxyUserName: TEdit
Left = 180
Height = 21
Top = 113
Width = 316
Anchors = [akTop, akLeft, akRight]
TabOrder = 4
end
object edProxyPassword: TEdit
Left = 180
Height = 21
Top = 141
Width = 316
Anchors = [akTop, akLeft, akRight]
EchoMode = emPassword
PasswordChar = '*'
TabOrder = 5
end
object cbProxyAuth: TCheckBox
Left = 8
Height = 17
Top = 89
Width = 131
Caption = 'Authentication required'
OnClick = cbProxyAuthClick
TabOrder = 6
end
end
object tabPaths: TTabSheet
Caption = 'Paths'
ClientHeight = 227
ClientWidth = 505
OnShow = tabPathsShow
object txPaths: TLabel
Left = 8
Height = 66
Top = 8
Width = 488
Anchors = [akTop, akLeft, akRight]
Caption = 'Remote to local path mappings.'#13#10#13#10'Examples:'#13#10'/share=\\pch\share'#13#10'/var/downloads/music=Z:\music'
ParentColor = False
WordWrap = True
end
object edPaths: TMemo
Left = 8
Height = 133
Top = 82
Width = 488
Anchors = [akTop, akLeft, akRight, akBottom]
ScrollBars = ssAutoVertical
TabOrder = 0
WordWrap = False
end
end
object tabMisc: TTabSheet
Caption = 'Misc'
ClientHeight = 227
ClientWidth = 505
object gbSpeed: TGroupBox
Left = 8
Height = 125
Top = 6
Width = 488
Anchors = [akTop, akLeft, akRight]
Caption = 'Speed limit menu items'
ClientHeight = 107
ClientWidth = 484
TabOrder = 0
object txDownSpeeds: TLabel
Left = 8
Height = 14
Top = 4
Width = 121
Caption = 'Download speeds (KB/s):'
ParentColor = False
end
object txUpSpeeds: TLabel
Left = 8
Height = 14
Top = 52
Width = 107
Caption = 'Upload speeds (KB/s):'
ParentColor = False
end
object edDownSpeeds: TEdit
Left = 8
Height = 21
Top = 24
Width = 468
Anchors = [akTop, akLeft, akRight]
TabOrder = 0
end
object edUpSpeeds: TEdit
Left = 8
Height = 21
Top = 72
Width = 468
Anchors = [akTop, akLeft, akRight]
TabOrder = 1
end
end
end
end
object Buttons: TButtonPanel[1]
Left = 8
Height = 26
Top = 345
Width = 513
BorderSpacing.Left = 8
BorderSpacing.Top = 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 = 2
Spacing = 8
ShowButtons = [pbOK, pbCancel]
ShowBevel = False
end
object panTop: TPanel[2]
Left = 8
Height = 53
Top = 8
Width = 513
Align = alTop
BorderSpacing.Around = 8
BevelOuter = bvNone
ClientHeight = 53
ClientWidth = 513
TabOrder = 0
object txConName: TLabel
Left = 0
Height = 14
Top = 4
Width = 88
Caption = 'Connection name:'
ParentColor = False
end
object cbConnection: TComboBox
Left = 170
Height = 21
Top = 1
Width = 342
Anchors = [akTop, akLeft, akRight]
ItemHeight = 13
OnSelect = cbConnectionSelect
Style = csDropDownList
TabOrder = 0
end
object btNew: TButton
Left = 170
Height = 23
Top = 28
Width = 111
Caption = 'New'
OnClick = btNewClick
TabOrder = 1
end
object btDel: TButton
Left = 402
Height = 23
Top = 28
Width = 111
Caption = 'Delete'
OnClick = btDelClick
TabOrder = 3
end
object btRename: TButton
Left = 286
Height = 23
Top = 28
Width = 111
Caption = 'Rename'
OnClick = btRenameClick
TabOrder = 2
end
end
end