using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace Observatory.UI { internal class ThemeManager { public static ThemeManager GetInstance { get { return _instance.Value; } } private static HashSet _excludedControlNames = new() { "ColourButton", }; private static readonly Lazy _instance = new(() => new ThemeManager()); private bool _init; private ThemeManager() { _init = true; controls = new List(); Themes = new() { { "Dark", DarkTheme }, { "Light", LightTheme } }; SelectedTheme = "Dark"; } private readonly List controls; public List GetThemes { get => Themes.Keys.ToList(); } public string CurrentTheme { get => SelectedTheme; set { if (Themes.ContainsKey(value)) { SelectedTheme = value; foreach (var control in controls) { ApplyTheme(control); } } } } public void RegisterControl(Control control) { // First time registering a control, build the "light" theme based // on defaults. if (_init) { SaveTheme(control, LightTheme); _init = false; } controls.Add(control); ApplyTheme(control); if (control.HasChildren) foreach (Control child in control.Controls) { if (_excludedControlNames.Contains(child.Name)) continue; RegisterControl(child); } } // This doesn't inherit from Control? Seriously? public void RegisterControl(ToolStripMenuItem toolStripMenuItem) { ApplyTheme(toolStripMenuItem); } private void SaveTheme(Control control, Dictionary theme) { Control rootControl = control; while (rootControl.Parent != null) { rootControl = rootControl.Parent; } SaveThemeControl(rootControl, theme); var themeJson = System.Text.Json.JsonSerializer.Serialize(DarkTheme); } private void SaveThemeControl(Control control, Dictionary theme) { var properties = control.GetType().GetProperties(); var colorProperties = properties.Where(p => p.PropertyType == typeof(Color)); foreach (var colorProperty in colorProperties) { string controlKey = control.GetType().Name + "." + colorProperty.Name; if (!theme.ContainsKey(controlKey)) { theme.Add(controlKey, (Color)colorProperty.GetValue(control)!); } } foreach (Control child in control.Controls) { SaveThemeControl(child, theme); } } public void DeRegisterControl(Control control) { if (control.HasChildren) foreach (Control child in control.Controls) { DeRegisterControl(child); } controls.Remove(control); } private void ApplyTheme(Object control) { var controlType = control.GetType(); var theme = Themes.ContainsKey(SelectedTheme) ? Themes[SelectedTheme] : Themes["Light"]; foreach (var property in controlType.GetProperties().Where(p => p.PropertyType == typeof(Color))) { string themeControl = Themes[SelectedTheme].ContainsKey(controlType.Name + "." + property.Name) ? controlType.Name : "Default"; if (Themes[SelectedTheme].ContainsKey(themeControl + "." + property.Name)) property.SetValue(control, Themes[SelectedTheme][themeControl + "." + property.Name]); } } private Dictionary> Themes; private string SelectedTheme; private Dictionary LightTheme = new Dictionary(); static private Dictionary DarkTheme = new Dictionary { {"Default.ForeColor", Color.LightGray }, {"Default.BackColor", Color.Black }, {"Button.ForeColor", Color.LightGray }, {"Button.BackColor", Color.DimGray } }; } }