forked from transmission-remote-gui/transgui
-
Notifications
You must be signed in to change notification settings - Fork 1
/
options.lfm
174 lines (174 loc) · 4.02 KB
/
options.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
object OptionsForm: TOptionsForm
Left = 313
Height = 329
Top = 230
Width = 525
BorderIcons = [biSystemMenu]
BorderStyle = bsDialog
Caption = 'Options'
ClientHeight = 329
ClientWidth = 525
OnCreate = FormCreate
OnDestroy = FormDestroy
Position = poMainFormCenter
LCLVersion = '0.9.30.1'
object Page: TPageControl
Left = 8
Height = 279
Top = 8
Width = 509
ActivePage = tabInterface
Align = alClient
BorderSpacing.Around = 8
TabIndex = 0
TabOrder = 0
object tabInterface: TTabSheet
Caption = 'Interface'
ClientHeight = 253
ClientWidth = 501
object txSeconds: TLabel
Left = 396
Height = 14
Top = 14
Width = 40
Caption = 'seconds'
ParentColor = False
end
object txRefreshInterval: TLabel
Left = 8
Height = 14
Top = 13
Width = 82
Caption = 'Refresh interval:'
ParentColor = False
end
object txLanguage: TLabel
Left = 8
Height = 14
Top = 222
Width = 52
Caption = 'Language:'
ParentColor = False
end
object txRefreshIntervalMin: TLabel
Left = 8
Height = 14
Top = 41
Width = 159
Caption = 'Refresh interval when minimized:'
ParentColor = False
end
object txSeconds2: TLabel
Left = 396
Height = 14
Top = 42
Width = 40
Caption = 'seconds'
ParentColor = False
end
object edRefreshInterval: TSpinEdit
Left = 316
Height = 21
Top = 10
Width = 70
MaxValue = 999
MinValue = 1
TabOrder = 0
Value = 1
end
object gbTray: TGroupBox
Left = 8
Height = 85
Top = 66
Width = 484
Anchors = [akTop, akLeft, akRight]
Caption = 'Tray icon'
ClientHeight = 67
ClientWidth = 480
TabOrder = 2
object cbTrayIconAlways: TCheckBox
Left = 10
Height = 17
Top = 42
Width = 130
Caption = 'Tray icon always visible'
TabOrder = 2
end
object cbTrayMinimize: TCheckBox
Left = 10
Height = 17
Top = 2
Width = 93
Caption = 'Minimize to tray'
TabOrder = 0
end
object cbTrayClose: TCheckBox
Left = 10
Height = 17
Top = 22
Width = 80
Caption = 'Close to tray'
TabOrder = 1
end
end
object cbShowAddTorrentWindow: TCheckBox
Left = 8
Height = 17
Top = 162
Width = 274
Caption = 'Show parameters window when adding a new torrent'
TabOrder = 3
end
object cbDeleteTorrentFile: TCheckBox
Left = 8
Height = 17
Top = 182
Width = 272
Caption = 'Delete a .torrent file after after a successful addition'
TabOrder = 4
end
object cbLanguage: TComboBox
Left = 128
Height = 21
Top = 220
Width = 364
Anchors = [akTop, akLeft, akRight]
ItemHeight = 13
OnEnter = cbLanguageEnter
OnMouseDown = cbLanguageMouseDown
Style = csDropDownList
TabOrder = 5
end
object edRefreshIntervalMin: TSpinEdit
Left = 316
Height = 21
Top = 38
Width = 70
MaxValue = 999
MinValue = 1
TabOrder = 1
Value = 1
end
end
end
object Buttons: TButtonPanel
Left = 0
Height = 26
Top = 295
Width = 525
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 = 1
Spacing = 8
ShowButtons = [pbOK, pbCancel]
ShowBevel = False
end
end