Commit | Line | Data |
---|---|---|
006b76b9 LOK |
1 | namespace CecConfigGui |
2 | { | |
3 | partial class CecConfigGUI | |
4 | { | |
5 | /// <summary> | |
6 | /// Required designer variable. | |
7 | /// </summary> | |
8 | private System.ComponentModel.IContainer components = null; | |
9 | ||
10 | /// <summary> | |
11 | /// Clean up any resources being used. | |
12 | /// </summary> | |
13 | /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param> | |
14 | protected override void Dispose(bool disposing) | |
15 | { | |
16 | if (disposing && (components != null)) | |
17 | { | |
18 | components.Dispose(); | |
19 | } | |
20 | base.Dispose(disposing); | |
21 | } | |
22 | ||
23 | #region Windows Form Designer generated code | |
24 | ||
25 | /// <summary> | |
26 | /// Required method for Designer support - do not modify | |
27 | /// the contents of this method with the code editor. | |
28 | /// </summary> | |
29 | private void InitializeComponent() | |
30 | { | |
5d5e105d | 31 | this.components = new System.ComponentModel.Container(); |
006b76b9 LOK |
32 | this.tabControl1 = new System.Windows.Forms.TabControl(); |
33 | this.Configuration = new System.Windows.Forms.TabPage(); | |
34 | this.cbPowerOffOnStandby = new System.Windows.Forms.CheckBox(); | |
35 | this.cbPowerOffScreensaver = new System.Windows.Forms.CheckBox(); | |
36 | this.cbPowerOffShutdown = new System.Windows.Forms.CheckBox(); | |
37 | this.cbPowerOnStartup = new System.Windows.Forms.CheckBox(); | |
38 | this.cbUseTVMenuLanguage = new System.Windows.Forms.CheckBox(); | |
39 | this.lPlayerConfig = new System.Windows.Forms.Label(); | |
40 | this.lAdapterConfig = new System.Windows.Forms.Label(); | |
41 | this.cbDeviceType = new System.Windows.Forms.ComboBox(); | |
42 | this.bClose = new System.Windows.Forms.Button(); | |
43 | this.bSave = new System.Windows.Forms.Button(); | |
44 | this.cbPortNumber = new System.Windows.Forms.ComboBox(); | |
45 | this.lConnectedPhysicalAddress = new System.Windows.Forms.Label(); | |
46 | this.tbPhysicalAddress = new System.Windows.Forms.TextBox(); | |
47 | this.cbConnectedDevice = new System.Windows.Forms.ComboBox(); | |
48 | this.lDeviceType = new System.Windows.Forms.Label(); | |
49 | this.lPhysicalAddress = new System.Windows.Forms.Label(); | |
50 | this.lConnectedDevice = new System.Windows.Forms.Label(); | |
51 | this.lPortNumber = new System.Windows.Forms.Label(); | |
6b92c1c4 | 52 | this.tbButtons = new System.Windows.Forms.TabPage(); |
8674df6a | 53 | this.dgButtons = new System.Windows.Forms.DataGridView(); |
96fa7764 | 54 | this.CecButtonName = new System.Windows.Forms.DataGridViewTextBoxColumn(); |
96fa7764 | 55 | this.tbTestCommands = new System.Windows.Forms.TabPage(); |
ece1582e LOK |
56 | this.bMute = new System.Windows.Forms.Button(); |
57 | this.bVolDown = new System.Windows.Forms.Button(); | |
58 | this.bVolUp = new System.Windows.Forms.Button(); | |
96fa7764 LOK |
59 | this.bActivateSource = new System.Windows.Forms.Button(); |
60 | this.bScan = new System.Windows.Forms.Button(); | |
61 | this.bStandby = new System.Windows.Forms.Button(); | |
62 | this.bSendImageViewOn = new System.Windows.Forms.Button(); | |
63 | this.lDestination = new System.Windows.Forms.Label(); | |
64 | this.cbCommandDestination = new System.Windows.Forms.ComboBox(); | |
006b76b9 | 65 | this.LogOutput = new System.Windows.Forms.TabPage(); |
8674df6a | 66 | this.bSaveLog = new System.Windows.Forms.Button(); |
6b92c1c4 LOK |
67 | this.bClearLog = new System.Windows.Forms.Button(); |
68 | this.cbLogDebug = new System.Windows.Forms.CheckBox(); | |
69 | this.cbLogTraffic = new System.Windows.Forms.CheckBox(); | |
70 | this.cbLogNotice = new System.Windows.Forms.CheckBox(); | |
71 | this.cbLogWarning = new System.Windows.Forms.CheckBox(); | |
72 | this.cbLogError = new System.Windows.Forms.CheckBox(); | |
006b76b9 LOK |
73 | this.tbLog = new System.Windows.Forms.TextBox(); |
74 | this.pProgress = new System.Windows.Forms.ProgressBar(); | |
75 | this.lStatus = new System.Windows.Forms.Label(); | |
5d5e105d LOK |
76 | this.helpPortNumber = new System.Windows.Forms.ToolTip(this.components); |
77 | this.helpConnectedHDMIDevice = new System.Windows.Forms.ToolTip(this.components); | |
78 | this.helpPhysicalAddress = new System.Windows.Forms.ToolTip(this.components); | |
79 | this.helpDeviceType = new System.Windows.Forms.ToolTip(this.components); | |
ece1582e LOK |
80 | this.label1 = new System.Windows.Forms.Label(); |
81 | this.cbWakeDevices = new System.Windows.Forms.CheckedListBox(); | |
82 | this.lWakeDevices = new System.Windows.Forms.Label(); | |
83 | this.playerButtonDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn(); | |
84 | this.cecButtonConfigBindingSource = new System.Windows.Forms.BindingSource(this.components); | |
006b76b9 LOK |
85 | this.tabControl1.SuspendLayout(); |
86 | this.Configuration.SuspendLayout(); | |
8674df6a LOK |
87 | this.tbButtons.SuspendLayout(); |
88 | ((System.ComponentModel.ISupportInitialize)(this.dgButtons)).BeginInit(); | |
96fa7764 LOK |
89 | this.tbTestCommands.SuspendLayout(); |
90 | this.LogOutput.SuspendLayout(); | |
ece1582e | 91 | ((System.ComponentModel.ISupportInitialize)(this.cecButtonConfigBindingSource)).BeginInit(); |
006b76b9 LOK |
92 | this.SuspendLayout(); |
93 | // | |
94 | // tabControl1 | |
95 | // | |
96 | this.tabControl1.Controls.Add(this.Configuration); | |
6b92c1c4 | 97 | this.tabControl1.Controls.Add(this.tbButtons); |
96fa7764 | 98 | this.tabControl1.Controls.Add(this.tbTestCommands); |
006b76b9 LOK |
99 | this.tabControl1.Controls.Add(this.LogOutput); |
100 | this.tabControl1.Location = new System.Drawing.Point(12, 12); | |
101 | this.tabControl1.Name = "tabControl1"; | |
102 | this.tabControl1.SelectedIndex = 0; | |
103 | this.tabControl1.Size = new System.Drawing.Size(600, 385); | |
104 | this.tabControl1.TabIndex = 0; | |
105 | // | |
106 | // Configuration | |
107 | // | |
ece1582e LOK |
108 | this.Configuration.Controls.Add(this.lWakeDevices); |
109 | this.Configuration.Controls.Add(this.cbWakeDevices); | |
006b76b9 LOK |
110 | this.Configuration.Controls.Add(this.cbPowerOffOnStandby); |
111 | this.Configuration.Controls.Add(this.cbPowerOffScreensaver); | |
112 | this.Configuration.Controls.Add(this.cbPowerOffShutdown); | |
113 | this.Configuration.Controls.Add(this.cbPowerOnStartup); | |
114 | this.Configuration.Controls.Add(this.cbUseTVMenuLanguage); | |
115 | this.Configuration.Controls.Add(this.lPlayerConfig); | |
116 | this.Configuration.Controls.Add(this.lAdapterConfig); | |
117 | this.Configuration.Controls.Add(this.cbDeviceType); | |
118 | this.Configuration.Controls.Add(this.bClose); | |
119 | this.Configuration.Controls.Add(this.bSave); | |
120 | this.Configuration.Controls.Add(this.cbPortNumber); | |
121 | this.Configuration.Controls.Add(this.lConnectedPhysicalAddress); | |
122 | this.Configuration.Controls.Add(this.tbPhysicalAddress); | |
123 | this.Configuration.Controls.Add(this.cbConnectedDevice); | |
124 | this.Configuration.Controls.Add(this.lDeviceType); | |
125 | this.Configuration.Controls.Add(this.lPhysicalAddress); | |
126 | this.Configuration.Controls.Add(this.lConnectedDevice); | |
127 | this.Configuration.Controls.Add(this.lPortNumber); | |
128 | this.Configuration.Location = new System.Drawing.Point(4, 22); | |
129 | this.Configuration.Name = "Configuration"; | |
130 | this.Configuration.Padding = new System.Windows.Forms.Padding(3); | |
131 | this.Configuration.Size = new System.Drawing.Size(592, 359); | |
132 | this.Configuration.TabIndex = 0; | |
133 | this.Configuration.Text = "Configuration"; | |
134 | this.Configuration.UseVisualStyleBackColor = true; | |
135 | // | |
136 | // cbPowerOffOnStandby | |
137 | // | |
138 | this.cbPowerOffOnStandby.AutoSize = true; | |
139 | this.cbPowerOffOnStandby.Enabled = false; | |
140 | this.cbPowerOffOnStandby.Location = new System.Drawing.Point(10, 297); | |
141 | this.cbPowerOffOnStandby.Name = "cbPowerOffOnStandby"; | |
142 | this.cbPowerOffOnStandby.Size = new System.Drawing.Size(292, 17); | |
143 | this.cbPowerOffOnStandby.TabIndex = 22; | |
144 | this.cbPowerOffOnStandby.Text = "Put this PC in standby mode when the TV is switched off"; | |
145 | this.cbPowerOffOnStandby.UseVisualStyleBackColor = true; | |
146 | // | |
147 | // cbPowerOffScreensaver | |
148 | // | |
149 | this.cbPowerOffScreensaver.AutoSize = true; | |
150 | this.cbPowerOffScreensaver.Enabled = false; | |
151 | this.cbPowerOffScreensaver.Location = new System.Drawing.Point(10, 273); | |
152 | this.cbPowerOffScreensaver.Name = "cbPowerOffScreensaver"; | |
153 | this.cbPowerOffScreensaver.Size = new System.Drawing.Size(301, 17); | |
154 | this.cbPowerOffScreensaver.TabIndex = 21; | |
155 | this.cbPowerOffScreensaver.Text = "Put devices in standby mode when activating screensaver"; | |
156 | this.cbPowerOffScreensaver.UseVisualStyleBackColor = true; | |
157 | // | |
158 | // cbPowerOffShutdown | |
159 | // | |
160 | this.cbPowerOffShutdown.AutoSize = true; | |
161 | this.cbPowerOffShutdown.Enabled = false; | |
162 | this.cbPowerOffShutdown.Location = new System.Drawing.Point(10, 249); | |
163 | this.cbPowerOffShutdown.Name = "cbPowerOffShutdown"; | |
164 | this.cbPowerOffShutdown.Size = new System.Drawing.Size(317, 17); | |
165 | this.cbPowerOffShutdown.TabIndex = 20; | |
166 | this.cbPowerOffShutdown.Text = "Power off devices when stopping the media player application"; | |
167 | this.cbPowerOffShutdown.UseVisualStyleBackColor = true; | |
168 | // | |
169 | // cbPowerOnStartup | |
170 | // | |
171 | this.cbPowerOnStartup.AutoSize = true; | |
172 | this.cbPowerOnStartup.Enabled = false; | |
173 | this.cbPowerOnStartup.Location = new System.Drawing.Point(10, 225); | |
174 | this.cbPowerOnStartup.Name = "cbPowerOnStartup"; | |
175 | this.cbPowerOnStartup.Size = new System.Drawing.Size(306, 17); | |
176 | this.cbPowerOnStartup.TabIndex = 19; | |
177 | this.cbPowerOnStartup.Text = "Power on the TV when starting the media player application"; | |
178 | this.cbPowerOnStartup.UseVisualStyleBackColor = true; | |
179 | // | |
180 | // cbUseTVMenuLanguage | |
181 | // | |
182 | this.cbUseTVMenuLanguage.AutoSize = true; | |
183 | this.cbUseTVMenuLanguage.Enabled = false; | |
184 | this.cbUseTVMenuLanguage.Location = new System.Drawing.Point(10, 201); | |
185 | this.cbUseTVMenuLanguage.Name = "cbUseTVMenuLanguage"; | |
186 | this.cbUseTVMenuLanguage.Size = new System.Drawing.Size(168, 17); | |
187 | this.cbUseTVMenuLanguage.TabIndex = 18; | |
188 | this.cbUseTVMenuLanguage.Text = "Use the TV\'s language setting"; | |
189 | this.cbUseTVMenuLanguage.UseVisualStyleBackColor = true; | |
190 | // | |
191 | // lPlayerConfig | |
192 | // | |
193 | this.lPlayerConfig.AutoSize = true; | |
194 | this.lPlayerConfig.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); | |
195 | this.lPlayerConfig.Location = new System.Drawing.Point(6, 165); | |
196 | this.lPlayerConfig.Name = "lPlayerConfig"; | |
197 | this.lPlayerConfig.Size = new System.Drawing.Size(198, 24); | |
198 | this.lPlayerConfig.TabIndex = 16; | |
199 | this.lPlayerConfig.Text = "Player Configuration"; | |
200 | // | |
201 | // lAdapterConfig | |
202 | // | |
203 | this.lAdapterConfig.AutoSize = true; | |
204 | this.lAdapterConfig.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); | |
205 | this.lAdapterConfig.Location = new System.Drawing.Point(6, 3); | |
206 | this.lAdapterConfig.Name = "lAdapterConfig"; | |
207 | this.lAdapterConfig.Size = new System.Drawing.Size(213, 24); | |
208 | this.lAdapterConfig.TabIndex = 15; | |
209 | this.lAdapterConfig.Text = "Adapter Configuration"; | |
210 | // | |
211 | // cbDeviceType | |
212 | // | |
213 | this.cbDeviceType.Enabled = false; | |
214 | this.cbDeviceType.FormattingEnabled = true; | |
215 | this.cbDeviceType.Items.AddRange(new object[] { | |
216 | "Recorder", | |
217 | "Player", | |
218 | "Tuner"}); | |
219 | this.cbDeviceType.Location = new System.Drawing.Point(174, 123); | |
220 | this.cbDeviceType.Name = "cbDeviceType"; | |
221 | this.cbDeviceType.Size = new System.Drawing.Size(121, 21); | |
222 | this.cbDeviceType.TabIndex = 14; | |
223 | this.cbDeviceType.Text = "Recorder"; | |
5d5e105d | 224 | this.helpDeviceType.SetToolTip(this.cbDeviceType, "Set this to \'Player\' when your TV is having problems with \'Recorder\'"); |
006b76b9 LOK |
225 | // |
226 | // bClose | |
227 | // | |
228 | this.bClose.Enabled = false; | |
229 | this.bClose.Location = new System.Drawing.Point(189, 330); | |
230 | this.bClose.Name = "bClose"; | |
231 | this.bClose.Size = new System.Drawing.Size(75, 23); | |
232 | this.bClose.TabIndex = 13; | |
233 | this.bClose.Text = "Close"; | |
234 | this.bClose.UseVisualStyleBackColor = true; | |
235 | this.bClose.Click += new System.EventHandler(this.bCancel_Click); | |
236 | // | |
237 | // bSave | |
238 | // | |
239 | this.bSave.Enabled = false; | |
240 | this.bSave.Location = new System.Drawing.Point(298, 330); | |
241 | this.bSave.Name = "bSave"; | |
242 | this.bSave.Size = new System.Drawing.Size(125, 23); | |
243 | this.bSave.TabIndex = 12; | |
244 | this.bSave.Text = "Save configuration"; | |
245 | this.bSave.UseVisualStyleBackColor = true; | |
246 | this.bSave.Click += new System.EventHandler(this.bSave_Click); | |
247 | // | |
248 | // cbPortNumber | |
249 | // | |
250 | this.cbPortNumber.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Append; | |
251 | this.cbPortNumber.Enabled = false; | |
252 | this.cbPortNumber.FormattingEnabled = true; | |
253 | this.cbPortNumber.Items.AddRange(new object[] { | |
254 | "1", | |
255 | "2", | |
256 | "3", | |
257 | "4"}); | |
258 | this.cbPortNumber.Location = new System.Drawing.Point(174, 40); | |
259 | this.cbPortNumber.Name = "cbPortNumber"; | |
260 | this.cbPortNumber.Size = new System.Drawing.Size(38, 21); | |
261 | this.cbPortNumber.TabIndex = 11; | |
262 | this.cbPortNumber.Text = "1"; | |
5d5e105d | 263 | this.helpPortNumber.SetToolTip(this.cbPortNumber, "The HDMI port number, to which you connected your USB-CEC adapter."); |
006b76b9 LOK |
264 | this.cbPortNumber.SelectedIndexChanged += new System.EventHandler(this.connectedDevice_SelectedIndexChanged); |
265 | // | |
266 | // lConnectedPhysicalAddress | |
267 | // | |
268 | this.lConnectedPhysicalAddress.AutoSize = true; | |
269 | this.lConnectedPhysicalAddress.Location = new System.Drawing.Point(310, 70); | |
270 | this.lConnectedPhysicalAddress.Name = "lConnectedPhysicalAddress"; | |
271 | this.lConnectedPhysicalAddress.Size = new System.Drawing.Size(75, 13); | |
272 | this.lConnectedPhysicalAddress.TabIndex = 10; | |
273 | this.lConnectedPhysicalAddress.Text = "Address: 0000"; | |
274 | // | |
275 | // tbPhysicalAddress | |
276 | // | |
277 | this.tbPhysicalAddress.Enabled = false; | |
278 | this.tbPhysicalAddress.Location = new System.Drawing.Point(174, 95); | |
279 | this.tbPhysicalAddress.MaxLength = 4; | |
280 | this.tbPhysicalAddress.Name = "tbPhysicalAddress"; | |
281 | this.tbPhysicalAddress.Size = new System.Drawing.Size(38, 20); | |
282 | this.tbPhysicalAddress.TabIndex = 6; | |
283 | this.tbPhysicalAddress.Text = "1000"; | |
5d5e105d LOK |
284 | this.helpPhysicalAddress.SetToolTip(this.tbPhysicalAddress, "The physical address of the adapter. Leave this untouched if you want to autodete" + |
285 | "ct this value."); | |
006b76b9 LOK |
286 | this.tbPhysicalAddress.TextChanged += new System.EventHandler(this.tbPhysicalAddress_TextChanged); |
287 | // | |
288 | // cbConnectedDevice | |
289 | // | |
290 | this.cbConnectedDevice.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Append; | |
291 | this.cbConnectedDevice.Enabled = false; | |
292 | this.cbConnectedDevice.FormattingEnabled = true; | |
293 | this.cbConnectedDevice.Location = new System.Drawing.Point(174, 67); | |
294 | this.cbConnectedDevice.Name = "cbConnectedDevice"; | |
295 | this.cbConnectedDevice.Size = new System.Drawing.Size(121, 21); | |
296 | this.cbConnectedDevice.TabIndex = 5; | |
5d5e105d | 297 | this.helpConnectedHDMIDevice.SetToolTip(this.cbConnectedDevice, "The HDMI device to which the USB-CEC adapter is connected"); |
006b76b9 LOK |
298 | this.cbConnectedDevice.SelectedIndexChanged += new System.EventHandler(this.connectedDevice_SelectedIndexChanged); |
299 | // | |
300 | // lDeviceType | |
301 | // | |
302 | this.lDeviceType.AutoSize = true; | |
303 | this.lDeviceType.Location = new System.Drawing.Point(6, 126); | |
304 | this.lDeviceType.Name = "lDeviceType"; | |
305 | this.lDeviceType.Size = new System.Drawing.Size(64, 13); | |
306 | this.lDeviceType.TabIndex = 3; | |
307 | this.lDeviceType.Text = "Device type"; | |
308 | // | |
309 | // lPhysicalAddress | |
310 | // | |
311 | this.lPhysicalAddress.AutoSize = true; | |
312 | this.lPhysicalAddress.Location = new System.Drawing.Point(6, 98); | |
313 | this.lPhysicalAddress.Name = "lPhysicalAddress"; | |
314 | this.lPhysicalAddress.Size = new System.Drawing.Size(86, 13); | |
315 | this.lPhysicalAddress.TabIndex = 2; | |
316 | this.lPhysicalAddress.Text = "Physical address"; | |
317 | // | |
318 | // lConnectedDevice | |
319 | // | |
320 | this.lConnectedDevice.AutoSize = true; | |
321 | this.lConnectedDevice.Location = new System.Drawing.Point(6, 70); | |
322 | this.lConnectedDevice.Name = "lConnectedDevice"; | |
323 | this.lConnectedDevice.Size = new System.Drawing.Size(137, 13); | |
324 | this.lConnectedDevice.TabIndex = 1; | |
325 | this.lConnectedDevice.Text = "Connected to HDMI device"; | |
326 | // | |
327 | // lPortNumber | |
328 | // | |
329 | this.lPortNumber.AutoSize = true; | |
330 | this.lPortNumber.Location = new System.Drawing.Point(6, 43); | |
331 | this.lPortNumber.Name = "lPortNumber"; | |
332 | this.lPortNumber.Size = new System.Drawing.Size(95, 13); | |
333 | this.lPortNumber.TabIndex = 0; | |
334 | this.lPortNumber.Text = "HDMI Port number"; | |
335 | // | |
6b92c1c4 LOK |
336 | // tbButtons |
337 | // | |
ece1582e | 338 | this.tbButtons.Controls.Add(this.label1); |
8674df6a | 339 | this.tbButtons.Controls.Add(this.dgButtons); |
6b92c1c4 LOK |
340 | this.tbButtons.Location = new System.Drawing.Point(4, 22); |
341 | this.tbButtons.Name = "tbButtons"; | |
342 | this.tbButtons.Padding = new System.Windows.Forms.Padding(3); | |
343 | this.tbButtons.Size = new System.Drawing.Size(592, 359); | |
344 | this.tbButtons.TabIndex = 2; | |
345 | this.tbButtons.Text = "Button Configuration"; | |
346 | this.tbButtons.UseVisualStyleBackColor = true; | |
347 | // | |
8674df6a LOK |
348 | // dgButtons |
349 | // | |
350 | this.dgButtons.AllowUserToAddRows = false; | |
351 | this.dgButtons.AllowUserToDeleteRows = false; | |
352 | this.dgButtons.AllowUserToResizeColumns = false; | |
353 | this.dgButtons.AllowUserToResizeRows = false; | |
354 | this.dgButtons.AutoGenerateColumns = false; | |
355 | this.dgButtons.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.DisableResizing; | |
356 | this.dgButtons.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] { | |
357 | this.CecButtonName, | |
358 | this.playerButtonDataGridViewTextBoxColumn}); | |
359 | this.dgButtons.DataSource = this.cecButtonConfigBindingSource; | |
360 | this.dgButtons.Location = new System.Drawing.Point(7, 7); | |
361 | this.dgButtons.Name = "dgButtons"; | |
362 | this.dgButtons.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; | |
363 | this.dgButtons.Size = new System.Drawing.Size(579, 346); | |
364 | this.dgButtons.TabIndex = 0; | |
365 | this.dgButtons.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dataGridView1_CellFormatting); | |
366 | // | |
96fa7764 LOK |
367 | // CecButtonName |
368 | // | |
369 | this.CecButtonName.DataPropertyName = "CecButtonName"; | |
370 | this.CecButtonName.FillWeight = 260F; | |
371 | this.CecButtonName.HeaderText = "Button"; | |
372 | this.CecButtonName.Name = "CecButtonName"; | |
373 | this.CecButtonName.ReadOnly = true; | |
374 | this.CecButtonName.Width = 260; | |
375 | // | |
96fa7764 LOK |
376 | // tbTestCommands |
377 | // | |
ece1582e LOK |
378 | this.tbTestCommands.Controls.Add(this.bMute); |
379 | this.tbTestCommands.Controls.Add(this.bVolDown); | |
380 | this.tbTestCommands.Controls.Add(this.bVolUp); | |
96fa7764 LOK |
381 | this.tbTestCommands.Controls.Add(this.bActivateSource); |
382 | this.tbTestCommands.Controls.Add(this.bScan); | |
383 | this.tbTestCommands.Controls.Add(this.bStandby); | |
384 | this.tbTestCommands.Controls.Add(this.bSendImageViewOn); | |
385 | this.tbTestCommands.Controls.Add(this.lDestination); | |
386 | this.tbTestCommands.Controls.Add(this.cbCommandDestination); | |
387 | this.tbTestCommands.Location = new System.Drawing.Point(4, 22); | |
388 | this.tbTestCommands.Name = "tbTestCommands"; | |
389 | this.tbTestCommands.Padding = new System.Windows.Forms.Padding(3); | |
390 | this.tbTestCommands.Size = new System.Drawing.Size(592, 359); | |
391 | this.tbTestCommands.TabIndex = 3; | |
392 | this.tbTestCommands.Text = "CEC tester"; | |
393 | this.tbTestCommands.UseVisualStyleBackColor = true; | |
394 | // | |
ece1582e LOK |
395 | // bMute |
396 | // | |
397 | this.bMute.Enabled = false; | |
398 | this.bMute.Location = new System.Drawing.Point(164, 65); | |
399 | this.bMute.Name = "bMute"; | |
400 | this.bMute.Size = new System.Drawing.Size(150, 23); | |
401 | this.bMute.TabIndex = 8; | |
402 | this.bMute.Text = "Mute"; | |
403 | this.bMute.UseVisualStyleBackColor = true; | |
404 | this.bMute.Click += new System.EventHandler(this.bMute_Click); | |
405 | // | |
406 | // bVolDown | |
407 | // | |
408 | this.bVolDown.Enabled = false; | |
409 | this.bVolDown.Location = new System.Drawing.Point(164, 36); | |
410 | this.bVolDown.Name = "bVolDown"; | |
411 | this.bVolDown.Size = new System.Drawing.Size(150, 23); | |
412 | this.bVolDown.TabIndex = 7; | |
413 | this.bVolDown.Text = "Volume down"; | |
414 | this.bVolDown.UseVisualStyleBackColor = true; | |
415 | this.bVolDown.Click += new System.EventHandler(this.bVolDown_Click); | |
416 | // | |
417 | // bVolUp | |
418 | // | |
419 | this.bVolUp.Enabled = false; | |
420 | this.bVolUp.Location = new System.Drawing.Point(164, 7); | |
421 | this.bVolUp.Name = "bVolUp"; | |
422 | this.bVolUp.Size = new System.Drawing.Size(150, 23); | |
423 | this.bVolUp.TabIndex = 6; | |
424 | this.bVolUp.Text = "Volume up"; | |
425 | this.bVolUp.UseVisualStyleBackColor = true; | |
426 | this.bVolUp.Click += new System.EventHandler(this.bVolUp_Click); | |
427 | // | |
96fa7764 LOK |
428 | // bActivateSource |
429 | // | |
ece1582e | 430 | this.bActivateSource.Location = new System.Drawing.Point(8, 65); |
96fa7764 LOK |
431 | this.bActivateSource.Name = "bActivateSource"; |
432 | this.bActivateSource.Size = new System.Drawing.Size(150, 23); | |
433 | this.bActivateSource.TabIndex = 5; | |
ece1582e | 434 | this.bActivateSource.Text = "Make device active"; |
96fa7764 LOK |
435 | this.bActivateSource.UseVisualStyleBackColor = true; |
436 | this.bActivateSource.Click += new System.EventHandler(this.bActivateSource_Click); | |
437 | // | |
438 | // bScan | |
439 | // | |
ece1582e | 440 | this.bScan.Location = new System.Drawing.Point(8, 94); |
96fa7764 LOK |
441 | this.bScan.Name = "bScan"; |
442 | this.bScan.Size = new System.Drawing.Size(150, 23); | |
443 | this.bScan.TabIndex = 4; | |
444 | this.bScan.Text = "Device information"; | |
445 | this.bScan.UseVisualStyleBackColor = true; | |
446 | this.bScan.Click += new System.EventHandler(this.bScan_Click); | |
447 | // | |
448 | // bStandby | |
449 | // | |
ece1582e | 450 | this.bStandby.Location = new System.Drawing.Point(8, 36); |
96fa7764 LOK |
451 | this.bStandby.Name = "bStandby"; |
452 | this.bStandby.Size = new System.Drawing.Size(150, 23); | |
453 | this.bStandby.TabIndex = 3; | |
ece1582e | 454 | this.bStandby.Text = "Put device in standby"; |
96fa7764 LOK |
455 | this.bStandby.UseVisualStyleBackColor = true; |
456 | this.bStandby.Click += new System.EventHandler(this.bStandby_Click); | |
457 | // | |
458 | // bSendImageViewOn | |
459 | // | |
ece1582e | 460 | this.bSendImageViewOn.Location = new System.Drawing.Point(8, 7); |
96fa7764 LOK |
461 | this.bSendImageViewOn.Name = "bSendImageViewOn"; |
462 | this.bSendImageViewOn.Size = new System.Drawing.Size(150, 23); | |
463 | this.bSendImageViewOn.TabIndex = 2; | |
ece1582e | 464 | this.bSendImageViewOn.Text = "Power on device"; |
96fa7764 LOK |
465 | this.bSendImageViewOn.UseVisualStyleBackColor = true; |
466 | this.bSendImageViewOn.Click += new System.EventHandler(this.bSendImageViewOn_Click); | |
467 | // | |
468 | // lDestination | |
469 | // | |
470 | this.lDestination.AutoSize = true; | |
471 | this.lDestination.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); | |
472 | this.lDestination.Location = new System.Drawing.Point(420, 3); | |
473 | this.lDestination.Name = "lDestination"; | |
474 | this.lDestination.Size = new System.Drawing.Size(138, 24); | |
475 | this.lDestination.TabIndex = 1; | |
476 | this.lDestination.Text = "Target device"; | |
477 | // | |
478 | // cbCommandDestination | |
479 | // | |
480 | this.cbCommandDestination.FormattingEnabled = true; | |
481 | this.cbCommandDestination.Items.AddRange(new object[] { | |
482 | "0: TV", | |
483 | "1: Recorder 1", | |
484 | "2: Recorder 2", | |
485 | "3: Tuner 1", | |
486 | "4: Playback 1", | |
487 | "5: Audio system", | |
488 | "6: Tuner 2", | |
489 | "7: Tuner 3", | |
490 | "8: Playback 2", | |
491 | "9: Recorder 3", | |
492 | "A: Tuner 4", | |
493 | "B: Playback 3", | |
494 | "C: Reserved 1", | |
495 | "D: Reserved 2", | |
496 | "E: Free use", | |
497 | "F: Broadcast"}); | |
498 | this.cbCommandDestination.Location = new System.Drawing.Point(437, 30); | |
499 | this.cbCommandDestination.Name = "cbCommandDestination"; | |
500 | this.cbCommandDestination.Size = new System.Drawing.Size(121, 21); | |
501 | this.cbCommandDestination.TabIndex = 0; | |
502 | this.cbCommandDestination.Text = "0: TV"; | |
ece1582e | 503 | this.cbCommandDestination.SelectedIndexChanged += new System.EventHandler(this.cbCommandDestination_SelectedIndexChanged); |
96fa7764 | 504 | // |
006b76b9 LOK |
505 | // LogOutput |
506 | // | |
6b92c1c4 LOK |
507 | this.LogOutput.Controls.Add(this.bSaveLog); |
508 | this.LogOutput.Controls.Add(this.bClearLog); | |
509 | this.LogOutput.Controls.Add(this.cbLogDebug); | |
510 | this.LogOutput.Controls.Add(this.cbLogTraffic); | |
511 | this.LogOutput.Controls.Add(this.cbLogNotice); | |
512 | this.LogOutput.Controls.Add(this.cbLogWarning); | |
513 | this.LogOutput.Controls.Add(this.cbLogError); | |
006b76b9 LOK |
514 | this.LogOutput.Controls.Add(this.tbLog); |
515 | this.LogOutput.Location = new System.Drawing.Point(4, 22); | |
516 | this.LogOutput.Name = "LogOutput"; | |
517 | this.LogOutput.Padding = new System.Windows.Forms.Padding(3); | |
518 | this.LogOutput.Size = new System.Drawing.Size(592, 359); | |
519 | this.LogOutput.TabIndex = 1; | |
520 | this.LogOutput.Text = "Log Output"; | |
521 | this.LogOutput.UseVisualStyleBackColor = true; | |
522 | // | |
8674df6a LOK |
523 | // bSaveLog |
524 | // | |
525 | this.bSaveLog.Location = new System.Drawing.Point(430, 330); | |
526 | this.bSaveLog.Name = "bSaveLog"; | |
527 | this.bSaveLog.Size = new System.Drawing.Size(75, 23); | |
528 | this.bSaveLog.TabIndex = 7; | |
529 | this.bSaveLog.Text = "Save"; | |
530 | this.bSaveLog.UseVisualStyleBackColor = true; | |
531 | this.bSaveLog.Click += new System.EventHandler(this.bSaveLog_Click); | |
532 | // | |
6b92c1c4 LOK |
533 | // bClearLog |
534 | // | |
535 | this.bClearLog.Location = new System.Drawing.Point(511, 330); | |
536 | this.bClearLog.Name = "bClearLog"; | |
537 | this.bClearLog.Size = new System.Drawing.Size(75, 23); | |
538 | this.bClearLog.TabIndex = 6; | |
539 | this.bClearLog.Text = "Clear"; | |
540 | this.bClearLog.UseVisualStyleBackColor = true; | |
541 | this.bClearLog.Click += new System.EventHandler(this.bClearLog_Click); | |
542 | // | |
543 | // cbLogDebug | |
544 | // | |
545 | this.cbLogDebug.AutoSize = true; | |
546 | this.cbLogDebug.Location = new System.Drawing.Point(269, 336); | |
547 | this.cbLogDebug.Name = "cbLogDebug"; | |
548 | this.cbLogDebug.Size = new System.Drawing.Size(58, 17); | |
549 | this.cbLogDebug.TabIndex = 5; | |
550 | this.cbLogDebug.Text = "Debug"; | |
551 | this.cbLogDebug.UseVisualStyleBackColor = true; | |
552 | // | |
553 | // cbLogTraffic | |
554 | // | |
555 | this.cbLogTraffic.AutoSize = true; | |
556 | this.cbLogTraffic.Location = new System.Drawing.Point(207, 336); | |
557 | this.cbLogTraffic.Name = "cbLogTraffic"; | |
558 | this.cbLogTraffic.Size = new System.Drawing.Size(56, 17); | |
559 | this.cbLogTraffic.TabIndex = 4; | |
560 | this.cbLogTraffic.Text = "Traffic"; | |
561 | this.cbLogTraffic.UseVisualStyleBackColor = true; | |
562 | // | |
563 | // cbLogNotice | |
564 | // | |
565 | this.cbLogNotice.AutoSize = true; | |
566 | this.cbLogNotice.Checked = true; | |
567 | this.cbLogNotice.CheckState = System.Windows.Forms.CheckState.Checked; | |
568 | this.cbLogNotice.Location = new System.Drawing.Point(138, 336); | |
569 | this.cbLogNotice.Name = "cbLogNotice"; | |
570 | this.cbLogNotice.Size = new System.Drawing.Size(62, 17); | |
571 | this.cbLogNotice.TabIndex = 3; | |
572 | this.cbLogNotice.Text = "Notices"; | |
573 | this.cbLogNotice.UseVisualStyleBackColor = true; | |
574 | // | |
575 | // cbLogWarning | |
576 | // | |
577 | this.cbLogWarning.AutoSize = true; | |
578 | this.cbLogWarning.Checked = true; | |
579 | this.cbLogWarning.CheckState = System.Windows.Forms.CheckState.Checked; | |
580 | this.cbLogWarning.Location = new System.Drawing.Point(66, 336); | |
581 | this.cbLogWarning.Name = "cbLogWarning"; | |
582 | this.cbLogWarning.Size = new System.Drawing.Size(66, 17); | |
583 | this.cbLogWarning.TabIndex = 2; | |
584 | this.cbLogWarning.Text = "Warning"; | |
585 | this.cbLogWarning.UseVisualStyleBackColor = true; | |
586 | // | |
587 | // cbLogError | |
588 | // | |
589 | this.cbLogError.AutoSize = true; | |
590 | this.cbLogError.Checked = true; | |
591 | this.cbLogError.CheckState = System.Windows.Forms.CheckState.Checked; | |
592 | this.cbLogError.Location = new System.Drawing.Point(7, 336); | |
593 | this.cbLogError.Name = "cbLogError"; | |
594 | this.cbLogError.Size = new System.Drawing.Size(53, 17); | |
595 | this.cbLogError.TabIndex = 1; | |
596 | this.cbLogError.Text = "Errors"; | |
597 | this.cbLogError.UseVisualStyleBackColor = true; | |
598 | // | |
006b76b9 LOK |
599 | // tbLog |
600 | // | |
601 | this.tbLog.Location = new System.Drawing.Point(6, 6); | |
602 | this.tbLog.Multiline = true; | |
603 | this.tbLog.Name = "tbLog"; | |
604 | this.tbLog.ScrollBars = System.Windows.Forms.ScrollBars.Vertical; | |
6b92c1c4 | 605 | this.tbLog.Size = new System.Drawing.Size(580, 318); |
006b76b9 LOK |
606 | this.tbLog.TabIndex = 0; |
607 | // | |
608 | // pProgress | |
609 | // | |
610 | this.pProgress.Location = new System.Drawing.Point(314, 407); | |
611 | this.pProgress.Name = "pProgress"; | |
612 | this.pProgress.Size = new System.Drawing.Size(298, 23); | |
613 | this.pProgress.TabIndex = 1; | |
614 | // | |
615 | // lStatus | |
616 | // | |
617 | this.lStatus.AutoSize = true; | |
618 | this.lStatus.Location = new System.Drawing.Point(12, 416); | |
619 | this.lStatus.Name = "lStatus"; | |
620 | this.lStatus.Size = new System.Drawing.Size(61, 13); | |
621 | this.lStatus.TabIndex = 2; | |
622 | this.lStatus.Text = "Initialising..."; | |
623 | // | |
ece1582e LOK |
624 | // label1 |
625 | // | |
626 | this.label1.AutoSize = true; | |
627 | this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 20.25F, ((System.Drawing.FontStyle)((System.Drawing.FontStyle.Bold | System.Drawing.FontStyle.Italic))), System.Drawing.GraphicsUnit.Point, ((byte)(0))); | |
628 | this.label1.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0))))); | |
629 | this.label1.Location = new System.Drawing.Point(118, 252); | |
630 | this.label1.Name = "label1"; | |
631 | this.label1.Size = new System.Drawing.Size(354, 31); | |
632 | this.label1.TabIndex = 1; | |
633 | this.label1.Text = "NOT IMPLEMENTED YET"; | |
634 | // | |
635 | // cbWakeDevices | |
636 | // | |
637 | this.cbWakeDevices.FormattingEnabled = true; | |
638 | this.cbWakeDevices.Items.AddRange(new object[] { | |
639 | "0: TV", | |
640 | "1: Recorder 1", | |
641 | "2: Recorder 2", | |
642 | "3: Tuner 1", | |
643 | "4: Playback 1", | |
644 | "5: Audio system", | |
645 | "6: Tuner 2", | |
646 | "7: Tuner 3", | |
647 | "8: Playback 2", | |
648 | "9: Recorder 3", | |
649 | "A: Tuner 4", | |
650 | "B: Playback 3", | |
651 | "C: Reserved 1", | |
652 | "D: Reserved 2", | |
653 | "E: Free use", | |
654 | "F: Broadcast"}); | |
655 | this.cbWakeDevices.Location = new System.Drawing.Point(333, 218); | |
656 | this.cbWakeDevices.Name = "cbWakeDevices"; | |
657 | this.cbWakeDevices.Size = new System.Drawing.Size(118, 94); | |
658 | this.cbWakeDevices.TabIndex = 23; | |
659 | // | |
660 | // lWakeDevices | |
661 | // | |
662 | this.lWakeDevices.AutoSize = true; | |
663 | this.lWakeDevices.Location = new System.Drawing.Point(339, 201); | |
664 | this.lWakeDevices.Name = "lWakeDevices"; | |
665 | this.lWakeDevices.Size = new System.Drawing.Size(102, 13); | |
666 | this.lWakeDevices.TabIndex = 24; | |
667 | this.lWakeDevices.Text = "Wake when starting"; | |
668 | // | |
669 | // playerButtonDataGridViewTextBoxColumn | |
670 | // | |
671 | this.playerButtonDataGridViewTextBoxColumn.DataPropertyName = "PlayerButton"; | |
672 | this.playerButtonDataGridViewTextBoxColumn.FillWeight = 260F; | |
673 | this.playerButtonDataGridViewTextBoxColumn.HeaderText = "Mapped to"; | |
674 | this.playerButtonDataGridViewTextBoxColumn.Name = "playerButtonDataGridViewTextBoxColumn"; | |
675 | this.playerButtonDataGridViewTextBoxColumn.Width = 260; | |
676 | // | |
677 | // cecButtonConfigBindingSource | |
678 | // | |
679 | this.cecButtonConfigBindingSource.DataSource = typeof(CecConfigGui.CecButtonConfig); | |
680 | // | |
006b76b9 LOK |
681 | // CecConfigGUI |
682 | // | |
683 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); | |
684 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; | |
685 | this.ClientSize = new System.Drawing.Size(624, 442); | |
686 | this.Controls.Add(this.lStatus); | |
687 | this.Controls.Add(this.pProgress); | |
688 | this.Controls.Add(this.tabControl1); | |
689 | this.Name = "CecConfigGUI"; | |
690 | this.Text = "Pulse-Eight USB-CEC Adapter"; | |
691 | this.tabControl1.ResumeLayout(false); | |
692 | this.Configuration.ResumeLayout(false); | |
693 | this.Configuration.PerformLayout(); | |
8674df6a | 694 | this.tbButtons.ResumeLayout(false); |
ece1582e | 695 | this.tbButtons.PerformLayout(); |
8674df6a | 696 | ((System.ComponentModel.ISupportInitialize)(this.dgButtons)).EndInit(); |
96fa7764 LOK |
697 | this.tbTestCommands.ResumeLayout(false); |
698 | this.tbTestCommands.PerformLayout(); | |
006b76b9 LOK |
699 | this.LogOutput.ResumeLayout(false); |
700 | this.LogOutput.PerformLayout(); | |
ece1582e | 701 | ((System.ComponentModel.ISupportInitialize)(this.cecButtonConfigBindingSource)).EndInit(); |
006b76b9 LOK |
702 | this.ResumeLayout(false); |
703 | this.PerformLayout(); | |
704 | ||
705 | } | |
706 | ||
707 | #endregion | |
708 | ||
709 | private System.Windows.Forms.TabControl tabControl1; | |
710 | private System.Windows.Forms.TabPage Configuration; | |
711 | private System.Windows.Forms.TabPage LogOutput; | |
712 | private System.Windows.Forms.Label lPortNumber; | |
713 | private System.Windows.Forms.Label lDeviceType; | |
714 | private System.Windows.Forms.Label lPhysicalAddress; | |
715 | private System.Windows.Forms.Label lConnectedDevice; | |
716 | private System.Windows.Forms.ComboBox cbConnectedDevice; | |
717 | private System.Windows.Forms.TextBox tbPhysicalAddress; | |
718 | private System.Windows.Forms.ProgressBar pProgress; | |
719 | private System.Windows.Forms.Label lStatus; | |
720 | private System.Windows.Forms.Label lConnectedPhysicalAddress; | |
721 | private System.Windows.Forms.TextBox tbLog; | |
722 | private System.Windows.Forms.ComboBox cbPortNumber; | |
723 | private System.Windows.Forms.Button bClose; | |
724 | private System.Windows.Forms.Button bSave; | |
725 | private System.Windows.Forms.ComboBox cbDeviceType; | |
726 | private System.Windows.Forms.Label lAdapterConfig; | |
727 | private System.Windows.Forms.CheckBox cbPowerOffOnStandby; | |
728 | private System.Windows.Forms.CheckBox cbPowerOffScreensaver; | |
729 | private System.Windows.Forms.CheckBox cbPowerOffShutdown; | |
730 | private System.Windows.Forms.CheckBox cbPowerOnStartup; | |
731 | private System.Windows.Forms.CheckBox cbUseTVMenuLanguage; | |
732 | private System.Windows.Forms.Label lPlayerConfig; | |
5d5e105d LOK |
733 | private System.Windows.Forms.ToolTip helpPortNumber; |
734 | private System.Windows.Forms.ToolTip helpConnectedHDMIDevice; | |
735 | private System.Windows.Forms.ToolTip helpDeviceType; | |
736 | private System.Windows.Forms.ToolTip helpPhysicalAddress; | |
6b92c1c4 LOK |
737 | private System.Windows.Forms.TabPage tbButtons; |
738 | private System.Windows.Forms.CheckBox cbLogDebug; | |
739 | private System.Windows.Forms.CheckBox cbLogTraffic; | |
740 | private System.Windows.Forms.CheckBox cbLogNotice; | |
741 | private System.Windows.Forms.CheckBox cbLogWarning; | |
742 | private System.Windows.Forms.CheckBox cbLogError; | |
743 | private System.Windows.Forms.Button bClearLog; | |
744 | private System.Windows.Forms.Button bSaveLog; | |
8674df6a LOK |
745 | private System.Windows.Forms.DataGridView dgButtons; |
746 | private System.Windows.Forms.BindingSource cecButtonConfigBindingSource; | |
747 | private System.Windows.Forms.DataGridViewTextBoxColumn CecButtonName; | |
748 | private System.Windows.Forms.DataGridViewTextBoxColumn playerButtonDataGridViewTextBoxColumn; | |
96fa7764 LOK |
749 | private System.Windows.Forms.TabPage tbTestCommands; |
750 | private System.Windows.Forms.ComboBox cbCommandDestination; | |
751 | private System.Windows.Forms.Button bStandby; | |
752 | private System.Windows.Forms.Button bSendImageViewOn; | |
753 | private System.Windows.Forms.Label lDestination; | |
754 | private System.Windows.Forms.Button bActivateSource; | |
755 | private System.Windows.Forms.Button bScan; | |
ece1582e LOK |
756 | private System.Windows.Forms.Button bMute; |
757 | private System.Windows.Forms.Button bVolDown; | |
758 | private System.Windows.Forms.Button bVolUp; | |
759 | private System.Windows.Forms.Label label1; | |
760 | private System.Windows.Forms.Label lWakeDevices; | |
761 | private System.Windows.Forms.CheckedListBox cbWakeDevices; | |
006b76b9 LOK |
762 | } |
763 | } |