forked from transmission-remote-gui/transgui
-
Notifications
You must be signed in to change notification settings - Fork 0
/
torrprops.lfm
217 lines (217 loc) · 4.92 KB
/
torrprops.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
inherited TorrPropsForm: TTorrPropsForm
Left = 364
Height = 270
Top = 185
Width = 517
HorzScrollBar.Page = 349
HorzScrollBar.Range = 40
VertScrollBar.Page = 155
VertScrollBar.Range = 22
AutoSize = True
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Torrent properties'
ClientHeight = 270
ClientWidth = 517
Constraints.MinHeight = 186
Constraints.MinWidth = 350
OnCreate = FormCreate
Position = poMainFormCenter
object Buttons: TButtonPanel[0]
Left = 8
Height = 26
Top = 236
Width = 501
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]
ShowBevel = False
end
object Page: TPageControl[1]
Left = 8
Height = 220
Top = 8
Width = 501
ActivePage = tabGeneral
Align = alClient
BorderSpacing.Around = 8
TabIndex = 0
TabOrder = 0
object tabGeneral: TTabSheet
Caption = 'General'
ClientHeight = 194
ClientWidth = 493
object txKbs1: TLabel
Left = 420
Height = 14
Top = 37
Width = 22
Anchors = [akTop, akRight]
Caption = 'KB/s'
ParentColor = False
end
object txKbs2: TLabel
Left = 420
Height = 14
Top = 69
Width = 22
Anchors = [akTop, akRight]
Caption = 'KB/s'
ParentColor = False
end
object txName: TLabel
Left = 10
Height = 14
Top = 10
Width = 32
Caption = 'Name:'
ParentColor = False
ShowAccelChar = False
end
object txPeerLimit: TLabel
Left = 10
Height = 14
Top = 101
Width = 48
Caption = 'Peer limit:'
ParentColor = False
end
object txMinutes: TLabel
Left = 420
Height = 14
Top = 163
Width = 38
Anchors = [akTop, akRight]
Caption = 'minutes'
ParentColor = False
end
object cbMaxDown: TCheckBox
Left = 10
Height = 17
Top = 36
Width = 147
Caption = 'Maximum download speed:'
OnClick = cbMaxDownClick
TabOrder = 0
end
object edMaxDown: TSpinEdit
Left = 340
Height = 21
Top = 34
Width = 66
Anchors = [akTop, akRight]
Increment = 10
MaxValue = 999999
TabOrder = 1
end
object cbMaxUp: TCheckBox
Left = 10
Height = 17
Top = 68
Width = 133
Caption = 'Maximum upload speed:'
OnClick = cbMaxUpClick
TabOrder = 2
end
object edMaxUp: TSpinEdit
Left = 340
Height = 21
Top = 66
Width = 66
Anchors = [akTop, akRight]
Increment = 10
MaxValue = 999999
TabOrder = 3
end
object edPeerLimit: TSpinEdit
Left = 340
Height = 21
Top = 98
Width = 66
Anchors = [akTop, akRight]
MaxValue = 999
MinValue = 1
TabOrder = 4
Value = 1
end
object cbSeedRatio: TCheckBox
Left = 10
Height = 17
Top = 131
Width = 71
AllowGrayed = True
Caption = 'Seed ratio:'
OnClick = cbSeedRatioClick
TabOrder = 5
end
object edSeedRatio: TFloatSpinEdit
Left = 340
Height = 21
Top = 129
Width = 66
Anchors = [akTop, akRight]
Increment = 0.1
MaxValue = 9999
MinValue = 0
TabOrder = 6
Value = 0
end
object cbIdleSeedLimit: TCheckBox
Left = 10
Height = 17
Top = 162
Width = 170
AllowGrayed = True
Caption = 'Stop seeding when inactive for:'
OnClick = cbIdleSeedLimitClick
TabOrder = 7
end
object edIdleSeedLimit: TSpinEdit
Left = 340
Height = 21
Top = 160
Width = 66
Anchors = [akTop, akRight]
MaxValue = 999999
MinValue = 1
TabOrder = 8
Value = 1
end
end
object tabAdvanced: TTabSheet
Caption = 'Advanced'
ClientHeight = 194
ClientWidth = 488
object edTrackers: TMemo
Left = 8
Height = 153
Top = 30
Width = 471
Anchors = [akTop, akLeft, akRight, akBottom]
ScrollBars = ssAutoBoth
TabOrder = 0
WordWrap = False
end
object txTrackers: TLabel
Left = 8
Height = 14
Top = 10
Width = 46
Caption = 'Trackers:'
ParentColor = False
end
end
end
end