-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenDevice.dfm
204 lines (204 loc) · 3.9 KB
/
OpenDevice.dfm
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
object OpenDevicesForm: TOpenDevicesForm
Left = 245
Top = 108
BorderStyle = bsDialog
Caption = 'Dialog'
ClientHeight = 484
ClientWidth = 438
Color = clBtnFace
DefaultMonitor = dmMainForm
ParentFont = True
FormStyle = fsStayOnTop
OldCreateOrder = True
Position = poScreenCenter
OnCreate = TntFormCreate
OnShow = FormShow
DesignSize = (
438
484)
PixelsPerInch = 96
TextHeight = 13
object CVideoDevices: TTntComboBox
Left = 96
Top = 16
Width = 252
Height = 21
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
TabOrder = 0
end
object CAudioDevices: TTntComboBox
Left = 96
Top = 48
Width = 252
Height = 21
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
TabOrder = 1
end
object CCountryCode: TTntComboBox
Left = 96
Top = 80
Width = 252
Height = 21
Anchors = [akLeft, akTop, akRight]
ItemHeight = 13
TabOrder = 2
Text = 'us-bcast'
Items.Strings = (
'us-bcast'
'russia'
'argentina'
'japan-bcast'
'china-bcast'
'southafrica'
'australia'
'ireland'
'france'
'italy'
'newzealand'
'europe-east'
'europe-west'
'us-cable'
'us-cable-hrc'
'japan-cable')
end
object LVideoDevices: TTntStaticText
Left = 12
Top = 18
Width = 67
Height = 17
Caption = 'VideoDevices'
TabOrder = 3
end
object LCountryCode: TTntStaticText
Left = 12
Top = 82
Width = 68
Height = 17
Caption = 'CountryCode'
TabOrder = 4
end
object LAudioDevices: TTntStaticText
Left = 12
Top = 50
Width = 68
Height = 17
Caption = 'AudioDevices'
TabOrder = 5
end
object HK: TTntListView
Left = 4
Top = 108
Width = 429
Height = 300
Columns = <
item
Caption = 'Channel'
Width = 152
end
item
Caption = 'Freq'
Width = 196
end>
ColumnClick = False
GridLines = True
HideSelection = False
RowSelect = True
ParentShowHint = False
ShowHint = True
TabOrder = 6
ViewStyle = vsReport
OnDblClick = TViewClick
end
object TScan: TTntButton
Left = 3
Top = 415
Width = 75
Height = 25
Anchors = [akLeft]
Caption = 'Scan'
TabOrder = 7
OnClick = TScanClick
end
object TView: TTntButton
Left = 179
Top = 415
Width = 75
Height = 25
Anchors = [akLeft]
Caption = 'View'
TabOrder = 8
OnClick = TViewClick
end
object TClear: TTntButton
Left = 3
Top = 451
Width = 75
Height = 25
Anchors = [akLeft]
Caption = 'Clear'
TabOrder = 9
OnClick = TClearClick
end
object TLoad: TTntButton
Left = 179
Top = 451
Width = 75
Height = 25
Anchors = [akLeft]
Caption = 'Load List'
TabOrder = 10
OnClick = TLoadClick
end
object TStop: TTntButton
Left = 91
Top = 415
Width = 75
Height = 25
Caption = 'Stop'
TabOrder = 11
OnClick = TStopClick
end
object TSave: TTntButton
Left = 355
Top = 451
Width = 75
Height = 25
Anchors = [akLeft]
Caption = 'Save List'
TabOrder = 12
OnClick = TSaveClick
end
object TPrev: TTntButton
Tag = -1
Left = 267
Top = 415
Width = 75
Height = 25
Anchors = [akLeft]
Caption = 'Prev'
TabOrder = 13
OnClick = TPrevClick
end
object TNext: TTntButton
Tag = 1
Left = 355
Top = 415
Width = 75
Height = 25
Anchors = [akLeft]
Caption = 'Next'
TabOrder = 14
OnClick = TPrevClick
end
object TOpen: TTntButton
Left = 355
Top = 15
Width = 75
Height = 82
Caption = 'OPen'
TabOrder = 15
OnClick = TOpenClick
end
end