forked from transmission-remote-gui/transgui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
connoptions.lfm
542 lines (542 loc) · 12.4 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
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
inherited ConnOptionsForm: TConnOptionsForm
Left = 495
Height = 394
Top = 186
Width = 529
HorzScrollBar.Page = 349
VertScrollBar.Page = 238
AutoSize = True
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Manage connections to Transmission'
ClientHeight = 394
ClientWidth = 529
Constraints.MinHeight = 280
Constraints.MinWidth = 471
OnCreate = FormCreate
OnShow = FormShow
Position = poMainFormCenter
object Page: TPageControl[0]
Left = 8
Height = 329
Top = 69
Width = 513
ActivePage = tabConnection
Align = alClient
BorderSpacing.Left = 8
BorderSpacing.Right = 8
TabIndex = 0
TabOrder = 1
object tabConnection: TTabSheet
Caption = 'Transmission'
ClientHeight = 255
ClientWidth = 505
object txPassword: TLabel
Left = 24
Height = 15
Top = 157
Width = 53
Caption = 'Password:'
ParentColor = False
end
object txUserName: TLabel
Left = 24
Height = 15
Top = 128
Width = 59
Caption = 'User name:'
ParentColor = False
end
object txPort: TLabel
Left = 8
Height = 15
Top = 76
Width = 25
Caption = 'Port:'
ParentColor = False
end
object txHost: TLabel
Left = 8
Height = 15
Top = 48
Width = 70
Caption = 'Remote host:'
ParentColor = False
end
object edPassword: TEdit
Left = 180
Height = 23
Top = 153
Width = 316
Anchors = [akTop, akLeft, akRight]
EchoMode = emPassword
PasswordChar = '*'
TabOrder = 5
end
object edUserName: TEdit
Left = 180
Height = 23
Top = 125
Width = 316
Anchors = [akTop, akLeft, akRight]
TabOrder = 4
end
object edPort: TSpinEdit
Left = 180
Height = 23
Top = 73
Width = 70
MaxValue = 65535
MinValue = 1
TabOrder = 1
Value = 65535
end
object cbSSL: TCheckBox
Left = 260
Height = 19
Top = 77
Width = 60
Caption = 'Use SSL'
OnClick = cbSSLClick
TabOrder = 2
end
object edHost: TEdit
Left = 180
Height = 23
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 = 19
Top = 101
Width = 146
Caption = 'Authentication required'
OnClick = cbAuthClick
TabOrder = 3
end
object edRpcPath: TEdit
Left = 180
Height = 23
Top = 209
Width = 316
TabOrder = 9
end
object txRpcPath: TLabel
Left = 8
Height = 15
Top = 212
Width = 52
Caption = 'RPC path:'
ParentColor = False
end
object cbShowAdvanced: TCheckBox
Left = 8
Height = 19
Top = 232
Width = 146
Caption = 'Show advanced options'
OnClick = cbShowAdvancedClick
TabOrder = 8
Visible = False
end
object cbAskPassword: TCheckBox
Left = 180
Height = 19
Top = 181
Width = 110
Caption = 'Ask for password'
OnClick = cbAskPasswordClick
TabOrder = 6
end
object cbAutoReconnect: TCheckBox
Left = 180
Height = 19
Top = 101
Width = 268
AutoSize = False
Caption = 'Always auto-reconnect'
TabOrder = 7
end
object txCertFile: TLabel
Left = 8
Height = 18
Top = 245
Width = 105
Caption = 'Client Certificate:'
ParentColor = False
end
object edCertFile: TEdit
Left = 180
Height = 32
Top = 242
Width = 316
TabOrder = 10
end
object txCertPass: TLabel
Left = 8
Height = 18
Top = 274
Width = 72
Caption = 'Private Key:'
ParentColor = False
end
object edCertPass: TEdit
Left = 180
Height = 32
Top = 271
Width = 316
EchoMode = emPassword
PasswordChar = '*'
TabOrder = 11
end
end
object tabProxy: TTabSheet
Caption = 'Proxy'
ClientHeight = 255
ClientWidth = 505
object txProxy: TLabel
Left = 8
Height = 15
Top = 37
Width = 66
Caption = 'Proxy server:'
ParentColor = False
end
object txProxyPort: TLabel
Left = 8
Height = 15
Top = 65
Width = 57
Caption = 'Proxy port:'
ParentColor = False
end
object txProxyUserName: TLabel
Left = 24
Height = 15
Top = 116
Width = 90
Caption = 'Proxy user name:'
ParentColor = False
end
object txProxyPassword: TLabel
Left = 24
Height = 15
Top = 144
Width = 85
Caption = 'Proxy password:'
ParentColor = False
end
object cbUseProxy: TCheckBox
Left = 8
Height = 19
Top = 10
Width = 250
Caption = 'Connect to Transmission using proxy server'
OnClick = cbUseProxyClick
TabOrder = 0
end
object cbUseSocks5: TCheckBox
Left = 260
Height = 19
Top = 64
Width = 65
Caption = 'SOCKS 5'
OnClick = cbUseProxyClick
TabOrder = 3
end
object edProxy: TEdit
Left = 180
Height = 23
Top = 34
Width = 316
Anchors = [akTop, akLeft, akRight]
TabOrder = 1
end
object edProxyPort: TSpinEdit
Left = 180
Height = 23
Top = 62
Width = 70
MaxValue = 65535
MinValue = 1
TabOrder = 2
Value = 65535
end
object edProxyUserName: TEdit
Left = 180
Height = 23
Top = 113
Width = 316
Anchors = [akTop, akLeft, akRight]
TabOrder = 4
end
object edProxyPassword: TEdit
Left = 180
Height = 23
Top = 141
Width = 316
Anchors = [akTop, akLeft, akRight]
EchoMode = emPassword
PasswordChar = '*'
TabOrder = 5
end
object cbProxyAuth: TCheckBox
Left = 8
Height = 19
Top = 89
Width = 146
Caption = 'Authentication required'
OnClick = cbProxyAuthClick
TabOrder = 6
end
end
object tabPaths: TTabSheet
Caption = 'Paths'
ClientHeight = 255
ClientWidth = 505
OnShow = tabPathsShow
object txPaths: TLabel
Left = 8
Height = 60
Top = 32
Width = 488
Anchors = [akTop, akLeft, akRight]
Caption = 'Remote to local path mappings.'#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 = 137
Top = 96
Width = 488
Anchors = [akTop, akLeft, akRight, akBottom]
ScrollBars = ssAutoVertical
TabOrder = 0
WordWrap = False
end
object edMaxFolder: TSpinEdit
Left = 8
Height = 23
Top = 8
Width = 70
MaxValue = 99
MinValue = 10
TabOrder = 1
Value = 50
end
object Label1: TLabel
Left = 88
Height = 23
Top = 9
Width = 385
Anchors = [akLeft]
AutoSize = False
Caption = 'The maximum history of directories for storage of torrents'
Layout = tlCenter
ParentColor = False
end
end
object tabMisc: TTabSheet
Caption = 'Misc'
ClientHeight = 255
ClientWidth = 505
object gbSpeed: TGroupBox
Left = 8
Height = 125
Top = 6
Width = 488
Anchors = [akTop, akLeft, akRight]
Caption = 'Speed limit menu items'
ClientHeight = 105
ClientWidth = 484
TabOrder = 0
object txDownSpeeds: TLabel
Left = 8
Height = 15
Top = 4
Width = 131
Caption = 'Download speeds (KB/s):'
ParentColor = False
end
object txUpSpeeds: TLabel
Left = 8
Height = 15
Top = 52
Width = 115
Caption = 'Upload speeds (KB/s):'
ParentColor = False
end
object edDownSpeeds: TEdit
Left = 8
Height = 23
Top = 24
Width = 468
Anchors = [akTop, akLeft, akRight]
TabOrder = 0
end
object edUpSpeeds: TEdit
Left = 8
Height = 23
Top = 72
Width = 468
Anchors = [akTop, akLeft, akRight]
TabOrder = 1
end
end
object edTranslateForm: TCheckBox
Left = 18
Height = 19
Top = 136
Width = 444
Caption = 'Activate the translated version of the application (need to restart the application)'
OnChange = edTranslateFormChange
TabOrder = 1
Visible = False
end
object edTranslateMsg: TCheckBox
Left = 18
Height = 19
Top = 160
Width = 287
Caption = 'Activate the translation of the Transmission strings'
TabOrder = 2
Visible = False
end
object Label111: TLabel
Left = 18
Height = 15
Top = 189
Width = 55
Caption = 'Language:'
ParentColor = False
Visible = False
end
object edLanguage: TEdit
Left = 128
Height = 23
Top = 184
Width = 368
OnDblClick = edLanguageDoubleClick
ReadOnly = True
TabOrder = 3
Visible = False
end
object Label2: TLabel
Left = 18
Height = 15
Top = 216
Width = 58
Caption = 'Config file:'
ParentColor = False
Visible = False
end
object edIniFileName: TEdit
Left = 128
Height = 23
Top = 211
Width = 368
OnDblClick = edIniFileOpen
ReadOnly = True
TabOrder = 4
Visible = False
end
end
end
object Buttons: TButtonPanel[1]
Left = 8
Height = 26
Top = 360
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 = 15
Top = 4
Width = 98
Caption = 'Connection name:'
ParentColor = False
end
object cbConnection: TComboBox
Left = 170
Height = 23
Top = 1
Width = 342
Anchors = [akTop, akLeft, akRight]
ItemHeight = 15
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