You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SMX_PGE/smx-config/SetCustomSensors.xaml.cs

103 lines
3.7 KiB

5 years ago
using System;
using System.Collections.Generic;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
namespace smx_config
{
public class SensorSelectionButton: ToggleButton
{
}
// A control with one button for each of four sensors:
class SensorSelector: Control
{
// The panel we're editing (0-8).
public static readonly DependencyProperty PanelProperty = DependencyProperty.RegisterAttached("Panel",
typeof(int), typeof(SensorSelector), new FrameworkPropertyMetadata(0));
public int Panel {
get { return (int) this.GetValue(PanelProperty); }
set { this.SetValue(PanelProperty, value); }
}
ToggleButton[] SensorSelectionButtons = new ToggleButton[4];
public override void OnApplyTemplate()
{
base.OnApplyTemplate();
for(int sensor = 0; sensor < 4; ++sensor)
{
int ThisSensor = sensor; // bind
SensorSelectionButtons[sensor] = GetTemplateChild("Sensor" + sensor) as ToggleButton;
SensorSelectionButtons[sensor].Click += delegate(object sender, RoutedEventArgs e)
{
ClickedSensorButton(ThisSensor);
};
}
// These settings are stored in the application settings, not on the pad. However,
// we treat changes to this as config changes, so we can use the same OnConfigChange
// method for updating.
OnConfigChange onConfigChange;
onConfigChange = new OnConfigChange(this, delegate(LoadFromConfigDelegateArgs args) {
LoadUIFromConfig(args);
});
}
private void ClickedSensorButton(int sensor)
{
// Toggle the clicked sensor.
Console.WriteLine("Clicked sensor " + sensor);
List<ThresholdSettings.PanelAndSensor> customSensors = ThresholdSettings.GetCustomSensors();
bool enabled = !IsSensorEnabled(customSensors, sensor);
5 years ago
if(enabled)
customSensors.Add(new ThresholdSettings.PanelAndSensor(Panel, sensor));
5 years ago
else
customSensors.Remove(new ThresholdSettings.PanelAndSensor(Panel, sensor));
ThresholdSettings.SetCustomSensors(customSensors);
// Sync thresholds after changing custom sensors.
ThresholdSettings.SyncSliderThresholds();
5 years ago
CurrentSMXDevice.singleton.FireConfigurationChanged(this);
}
// Return true if the given sensor is included in custom-sensors.
bool IsSensorEnabled(List<ThresholdSettings.PanelAndSensor> customSensors, int sensor)
5 years ago
{
foreach(ThresholdSettings.PanelAndSensor panelAndSensor in customSensors)
5 years ago
{
if(panelAndSensor.panel == Panel && panelAndSensor.sensor == sensor)
return true;
}
return false;
}
private void LoadUIFromConfig(LoadFromConfigDelegateArgs args)
{
// Check the selected custom-sensors.
List<ThresholdSettings.PanelAndSensor> customSensors = ThresholdSettings.GetCustomSensors();
5 years ago
for(int sensor = 0; sensor < 4; ++sensor)
SensorSelectionButtons[sensor].IsChecked = IsSensorEnabled(customSensors, sensor);
5 years ago
}
}
// This dialog sets which sensors are controlled by custom-sensors. The actual work is done
// by SensorSelector above.
public partial class SetCustomSensors: Window
5 years ago
{
public SetCustomSensors()
5 years ago
{
InitializeComponent();
}
private void OK_Click(object sender, RoutedEventArgs e)
{
Close();
}
}
}