X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Fcec-config-gui%2FCecConfigGUI.cs;h=5004e041024dfa77eac9913bfbc49a6fd09b4482;hb=41e3372ac4ad2de0d20e19e9dc9c8776220451b1;hp=b2b6c557038bd60a531073155863e55370363e2a;hpb=a70f3777b8fc0cbf4bfb1c1546bc1bae94b60f9d;p=deb_libcec.git diff --git a/src/cec-config-gui/CecConfigGUI.cs b/src/cec-config-gui/CecConfigGUI.cs index b2b6c55..5004e04 100644 --- a/src/cec-config-gui/CecConfigGUI.cs +++ b/src/cec-config-gui/CecConfigGUI.cs @@ -271,6 +271,7 @@ namespace CecConfigGui SetControlText(tbPhysicalAddress, string.Format("{0,4:X}", updateEvent.IntValue)); break; case UpdateEventType.ProgressBar: + SetControlVisible(pProgress, true); SetProgressValue(pProgress, updateEvent.IntValue); break; case UpdateEventType.TVVendorId: @@ -305,30 +306,41 @@ namespace CecConfigGui ConfigurationChanged(updateEvent.ConfigValue); SuppressUpdates = false; break; + case UpdateEventType.PollDevices: + CheckActiveDevices(); + break; case UpdateEventType.ProcessCompleted: ActiveProcess = null; SetControlsEnabled(true); + if (UpdatingInfoPanel != null) + { + UpdatingInfoPanel.SetControlEnabled(UpdatingInfoPanel.bUpdate, true); + UpdatingInfoPanel = null; + } + SetControlVisible(pProgress, false); break; } } private void SetControlsEnabled(bool val) { - SetControlEnabled(cbPortNumber, val); - SetControlEnabled(cbConnectedDevice, cbConnectedDevice.Items.Count > 1 ? val : false); - SetControlEnabled(tbPhysicalAddress, val); - SetControlEnabled(cbDeviceType, false); // TODO not implemented yet + SetControlEnabled(cbPortNumber, val && !Config.AutodetectAddress); + SetControlEnabled(cbConnectedDevice, cbConnectedDevice.Items.Count > 1 && !Config.AutodetectAddress ? val : false); + SetControlEnabled(cbOverrideAddress, val); + SetControlEnabled(tbPhysicalAddress, val && !Config.AutodetectAddress && cbOverrideAddress.Checked); + SetControlEnabled(cbDeviceType, val); SetControlEnabled(cbUseTVMenuLanguage, val); SetControlEnabled(cbActivateSource, val); SetControlEnabled(cbPowerOffScreensaver, val); SetControlEnabled(cbPowerOffOnStandby, val); - SetControlEnabled(cbWakeDevices, false); // TODO not implemented yet - SetControlEnabled(cbPowerOffDevices, false); // TODO not implemented yet + SetControlEnabled(cbWakeDevices, val); + SetControlEnabled(cbPowerOffDevices, val); SetControlEnabled(cbVendorOverride, val); SetControlEnabled(cbVendorId, val && cbVendorOverride.Checked); SetControlEnabled(bClose, val); SetControlEnabled(bSaveConfig, val); SetControlEnabled(bReloadConfig, val); + SetControlEnabled(bRescanDevices, val); SetControlEnabled(bSendImageViewOn, val); SetControlEnabled(bStandby, val); @@ -364,6 +376,21 @@ namespace CecConfigGui } } + protected override void Dispose(bool disposing) + { + if (disposing) + { + Lib.DisableCallbacks(); + Lib.StandbyDevices(CecLogicalAddress.Broadcast); + Lib.Close(); + } + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + #region Actions public void ReloadXMLConfiguration() { @@ -372,9 +399,22 @@ namespace CecConfigGui ConfigurationChanged(Config); } - public void SetPhysicalAddress(ushort physicalAddress) + public void UpdateInfoPanel(DeviceInformation panel) { if (!SuppressUpdates && ActiveProcess == null) + { + SetControlsEnabled(false); + UpdatingInfoPanel = panel; + panel.SetControlEnabled(panel.bUpdate, false); + ActiveProcess = new UpdateDeviceInfo(this, ref Lib, panel); + ActiveProcess.EventHandler += new EventHandler(ProcessEventHandler); + (new Thread(new ThreadStart(ActiveProcess.Run))).Start(); + } + } + + public void SetPhysicalAddress(ushort physicalAddress) + { + if (!SuppressUpdates && ActiveProcess == null && cbOverrideAddress.Checked) { SetControlsEnabled(false); SetControlText(cbPortNumber, string.Empty); @@ -385,6 +425,17 @@ namespace CecConfigGui } } + public void UpdateConfigurationAsync() + { + if (!SuppressUpdates && ActiveProcess == null) + { + SetControlsEnabled(false); + ActiveProcess = new UpdateConfiguration(ref Lib, Config); + ActiveProcess.EventHandler += new EventHandler(ProcessEventHandler); + (new Thread(new ThreadStart(ActiveProcess.Run))).Start(); + } + } + public void SendImageViewOn(CecLogicalAddress address) { if (!SuppressUpdates && ActiveProcess == null) @@ -431,9 +482,15 @@ namespace CecConfigGui #endregion #region Configuration tab + private void cbOverrideAddress_CheckedChanged(object sender, EventArgs e) + { + SetControlEnabled(tbPhysicalAddress, ((CheckBox)sender).Checked); + } + private void tbPhysicalAddress_TextChanged(object sender, EventArgs e) { - if (tbPhysicalAddress.Text.Length != 4) + if (tbPhysicalAddress.Text.Length != 4 || + cbOverrideAddress.Checked) return; ushort physicalAddress = 0; if (!ushort.TryParse(tbPhysicalAddress.Text, NumberStyles.AllowHexSpecifier, null, out physicalAddress)) @@ -479,6 +536,8 @@ namespace CecConfigGui Config.ActivateSource = cbActivateSource.Checked; Config.PowerOffScreensaver = cbPowerOffScreensaver.Checked; Config.PowerOffOnStandby = cbPowerOffOnStandby.Checked; + Config.WakeDevices = WakeDevices; + Config.PowerOffDevices = PowerOffDevices; if (!Lib.CanPersistConfiguration()) { @@ -519,7 +578,7 @@ namespace CecConfigGui StringBuilder output = new StringBuilder(); output.AppendLine(""); output.AppendLine(""); - output.AppendLine(""); + output.AppendLine(""); output.AppendLine(""); output.AppendLine(""); output.AppendLine(""); @@ -529,20 +588,26 @@ namespace CecConfigGui output.AppendLine(""); // only supported by 1.5.0+ clients - output.AppendLine(""); + output.AppendLine(""); + output.AppendLine(""); + output.AppendLine(""); output.AppendLine(""); - output.AppendLine(""); + output.AppendLine(""); output.Append(""); output.Append(""); output.AppendLine(""); @@ -621,6 +686,20 @@ namespace CecConfigGui Config.TvVendor = CecVendorId.Unknown; } } + + private void cbDeviceType_SelectedIndexChanged(object sender, EventArgs e) + { + CecDeviceType type = SelectedDeviceType; + if (type != Config.DeviceTypes.Types[0]) + { + Config.DeviceTypes.Types[0] = type; + if (!DeviceChangeWarningDisplayed) + { + DeviceChangeWarningDisplayed = true; + MessageBox.Show("You have changed the device type. Save the configuration, and restart the application to use the new setting.", "Pulse-Eight USB-CEC Adapter", MessageBoxButtons.OK, MessageBoxIcon.Warning); + } + } + } #endregion #region Key configuration tab @@ -668,6 +747,40 @@ namespace CecConfigGui #endregion #region CEC Tester tab + public void CheckActiveDevices() + { + CecLogicalAddresses activeDevices = Lib.GetActiveDevices(); + List deviceList = new List(); + foreach (CecLogicalAddress activeDevice in activeDevices.Addresses) + { + if (activeDevice != CecLogicalAddress.Unknown) + deviceList.Add(string.Format("{0,1:X} : {1}", (int)activeDevice, Lib.ToString(activeDevice))); + } + deviceList.Add(string.Format("{0,1:X} : {1}", (int)CecLogicalAddress.Broadcast, Lib.ToString(CecLogicalAddress.Broadcast))); + + SetActiveDevices(deviceList.ToArray()); + } + + delegate void SetActiveDevicesCallback(string[] activeDevices); + private void SetActiveDevices(string[] activeDevices) + { + if (this.cbCommandDestination.InvokeRequired) + { + SetActiveDevicesCallback d = new SetActiveDevicesCallback(SetActiveDevices); + try + { + this.Invoke(d, new object[] { activeDevices }); + } + catch (Exception) { } + } + else + { + this.cbCommandDestination.Items.Clear(); + foreach (string item in activeDevices) + this.cbCommandDestination.Items.Add(item); + } + } + delegate CecLogicalAddress GetTargetDeviceCallback(); private CecLogicalAddress GetTargetDevice() { @@ -683,7 +796,12 @@ namespace CecConfigGui return retval; } - switch (this.cbCommandDestination.Text.Substring(0, 1).ToLower()) + return GetLogicalAddressFromString(this.cbCommandDestination.Text); + } + + private CecLogicalAddress GetLogicalAddressFromString(string name) + { + switch (name.Substring(0, 1).ToLower()) { case "0": return CecLogicalAddress.Tv; @@ -748,6 +866,8 @@ namespace CecConfigGui this.bVolUp.Enabled = enableVolumeButtons; this.bVolDown.Enabled = enableVolumeButtons; this.bMute.Enabled = enableVolumeButtons; + this.bActivateSource.Enabled = (GetTargetDevice() != CecLogicalAddress.Broadcast); + this.bScan.Enabled = (GetTargetDevice() != CecLogicalAddress.Broadcast); } private void bVolUp_Click(object sender, EventArgs e) @@ -770,6 +890,17 @@ namespace CecConfigGui Lib.MuteAudio(true); SetControlsEnabled(true); } + + private void bRescanDevices_Click(object sender, EventArgs e) + { + if (!SuppressUpdates && ActiveProcess == null) + { + SetControlsEnabled(false); + ActiveProcess = new RescanDevices(ref Lib); + ActiveProcess.EventHandler += new EventHandler(ProcessEventHandler); + (new Thread(new ThreadStart(ActiveProcess.Run))).Start(); + } + } #endregion #region Log tab @@ -835,7 +966,8 @@ namespace CecConfigGui private void bClearLog_Click(object sender, EventArgs e) { - tbLog.Text = string.Empty; + Log = string.Empty; + UpdateLog(); } private void bSaveLog_Click(object sender, EventArgs e) @@ -859,7 +991,7 @@ namespace CecConfigGui else { StreamWriter writer = new StreamWriter(fs); - writer.Write(tbLog.Text); + writer.Write(Log); writer.Close(); fs.Close(); fs.Dispose(); @@ -907,6 +1039,13 @@ namespace CecConfigGui SetCheckboxChecked(cbPowerOffScreensaver, Config.PowerOffScreensaver); SetCheckboxChecked(cbPowerOffOnStandby, Config.PowerOffOnStandby); UpdateSelectedDevice(); + + for (int iPtr = 0; iPtr < 15; iPtr++) + SetCheckboxItemChecked(cbWakeDevices, iPtr, Config.WakeDevices.IsSet((CecLogicalAddress)iPtr)); + for (int iPtr = 0; iPtr < 15; iPtr++) + SetCheckboxItemChecked(cbPowerOffDevices, iPtr, Config.PowerOffDevices.IsSet((CecLogicalAddress)iPtr)); + + SetControlText(this, "Pulse-Eight USB-CEC Adapter - libCEC " + Lib.ToString(Config.ServerVersion)); return 1; } @@ -923,7 +1062,11 @@ namespace CecConfigGui public int ReceiveLogMessage(CecLogMessage message) { - AddLogMessage(message); + try + { + AddLogMessage(message); + } + catch (Exception) { } return 1; } #endregion @@ -971,6 +1114,21 @@ namespace CecConfigGui return (cbConnectedDevice.Text.Equals(AVRVendorString)) ? CecLogicalAddress.AudioSystem : CecLogicalAddress.Tv; } } + public CecDeviceType SelectedDeviceType + { + get + { + switch (cbDeviceType.Text.ToLower()) + { + case "player": + return CecDeviceType.PlaybackDevice; + case "tuner": + return CecDeviceType.Tuner; + default: + return CecDeviceType.RecordingDevice; + } + } + } public int SelectedPortNumber { get @@ -988,6 +1146,34 @@ namespace CecConfigGui private bool SuppressUpdates = true; private ConfigTab SelectedTab = ConfigTab.Configuration; private string Log = string.Empty; + private DeviceInformation UpdatingInfoPanel = null; + private bool DeviceChangeWarningDisplayed = false; + public CecLogicalAddresses WakeDevices + { + get + { + CecLogicalAddresses addr = new CecLogicalAddresses(); + foreach (object item in this.cbWakeDevices.CheckedItems) + { + string c = item as string; + addr.Set(GetLogicalAddressFromString(c)); + } + return addr; + } + } + public CecLogicalAddresses PowerOffDevices + { + get + { + CecLogicalAddresses addr = new CecLogicalAddresses(); + foreach (object item in this.cbPowerOffDevices.CheckedItems) + { + string c = item as string; + addr.Set(GetLogicalAddressFromString(c)); + } + return addr; + } + } #endregion }