forked from transmission-remote-gui/transgui
-
Notifications
You must be signed in to change notification settings - Fork 4
/
connoptionsproxyframe.lfm
105 lines (105 loc) · 1.95 KB
/
connoptionsproxyframe.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
object ConnOptionsProxyFrame: TConnOptionsProxyFrame
Left = 0
Height = 341
Top = 0
Width = 517
ClientHeight = 341
ClientWidth = 517
TabOrder = 0
DesignLeft = 1270
DesignTop = 457
object txProxy: TLabel
Left = 8
Height = 15
Top = 37
Width = 79
Caption = 'Proxy server:'
ParentColor = False
end
object txProxyPort: TLabel
Left = 8
Height = 15
Top = 65
Width = 66
Caption = 'Proxy port:'
ParentColor = False
end
object txProxyUserName: TLabel
Left = 24
Height = 15
Top = 116
Width = 105
Caption = 'Proxy user name:'
ParentColor = False
end
object txProxyPassword: TLabel
Left = 24
Height = 15
Top = 144
Width = 98
Caption = 'Proxy password:'
ParentColor = False
end
object cbUseProxy: TCheckBox
Left = 8
Height = 21
Top = 10
Width = 287
Caption = 'Connect to Transmission using proxy server'
TabOrder = 0
OnClick = cbUseProxyClick
end
object cbUseSocks5: TCheckBox
Left = 260
Height = 21
Top = 64
Width = 78
Caption = 'SOCKS 5'
TabOrder = 1
end
object edProxy: TEdit
Left = 180
Height = 23
Top = 34
Width = 320
Anchors = [akTop, akLeft, akRight]
TabOrder = 2
end
object edProxyPort: TSpinEdit
Left = 180
Height = 24
Top = 62
Width = 70
MaxValue = 65535
MinValue = 1
TabOrder = 3
Value = 65535
end
object edProxyUserName: TEdit
Left = 180
Height = 23
Top = 113
Width = 320
Anchors = [akTop, akLeft, akRight]
TabOrder = 4
end
object edProxyPassword: TEdit
Left = 180
Height = 23
Top = 141
Width = 320
Anchors = [akTop, akLeft, akRight]
EchoMode = emPassword
PasswordChar = '*'
TabOrder = 5
end
object cbProxyAuth: TCheckBox
Left = 8
Height = 21
Top = 89
Width = 167
Caption = 'Authentication required'
TabOrder = 6
OnClick = cbProxyAuthClick
end
end