100 lines
3.5 KiB
C#
100 lines
3.5 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using System.Linq;
|
|
using System.Diagnostics;
|
|
using System.Windows.Navigation;
|
|
using System.Windows;
|
|
using System.Windows.Controls;
|
|
using Torch.API.Plugins;
|
|
|
|
namespace Torch.Server.Views
|
|
{
|
|
/// <summary>
|
|
/// Interaction logic for ThemeControl.xaml
|
|
/// </summary>
|
|
public partial class ThemeControl : UserControl, INotifyPropertyChanged
|
|
{
|
|
/// <summary>
|
|
/// Action other views can subscribe to to update their views if they dont inherit the style from the window for some reason.
|
|
/// </summary>
|
|
public static Action<ResourceDictionary> UpdateDynamicControls;
|
|
|
|
/// <summary>
|
|
/// Current theme other views can set their theme to when they first spawn
|
|
/// </summary>
|
|
public static ResourceDictionary currentTheme = new ResourceDictionary() { Source = new Uri(@"/Views/Resources.xaml", UriKind.Relative) };
|
|
|
|
/// <summary>
|
|
/// The current torch window and config.
|
|
/// </summary>
|
|
public TorchUI uiSource;
|
|
private TorchConfig _torchConfig;
|
|
|
|
/// <summary>
|
|
/// List of available themes
|
|
/// </summary>
|
|
public List<string> Themes
|
|
{
|
|
get => _themes.Keys.ToList();
|
|
}
|
|
|
|
private Dictionary<string, ResourceDictionary> _themes = new Dictionary<string, ResourceDictionary>();
|
|
private HashSet<ITorchPlugin> plugins;
|
|
|
|
public event PropertyChangedEventHandler PropertyChanged;
|
|
|
|
public ThemeControl()
|
|
{
|
|
InitializeComponent();
|
|
this.DataContext = this;
|
|
|
|
_themes["Dark theme"] = new ResourceDictionary() { Source = new Uri(@"/Themes/Dark Theme.xaml", UriKind.Relative) };
|
|
_themes["Animated Dark theme"] = new ResourceDictionary() { Source = new Uri(@"/Themes/Dark Theme Animated.xaml", UriKind.Relative) };
|
|
|
|
_themes["Light theme"] = new ResourceDictionary() { Source = new Uri(@"/Themes/Light Theme.xaml", UriKind.Relative) };
|
|
_themes["Light theme animated"] = new ResourceDictionary() { Source = new Uri(@"/Themes/Light Theme Animated.xaml", UriKind.Relative) };
|
|
|
|
_themes["Torch Theme"] = new ResourceDictionary() { Source = new Uri(@"/Views/Resources.xaml", UriKind.Relative) };
|
|
}
|
|
|
|
public void Selector_OnSelectionChanged(object sender, SelectionChangedEventArgs e)
|
|
{
|
|
ComboBox box = (ComboBox)sender;
|
|
var boxText = box.SelectedItem.ToString();
|
|
|
|
ChangeTheme(_themes[boxText].Source);
|
|
|
|
if (_torchConfig != null)
|
|
{
|
|
_torchConfig.LastUsedTheme = boxText;
|
|
_torchConfig.Save();
|
|
}
|
|
|
|
}
|
|
|
|
public void ChangeTheme(Uri uri)
|
|
{
|
|
uiSource.Resources.MergedDictionaries.Clear();
|
|
var resource = new ResourceDictionary() { Source = uri };
|
|
uiSource.Resources.MergedDictionaries.Add(resource);
|
|
UpdateDynamicControls?.Invoke(resource);
|
|
currentTheme = resource;
|
|
}
|
|
|
|
private void Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e)
|
|
{
|
|
Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri));
|
|
e.Handled = true;
|
|
}
|
|
|
|
public void SetConfig(TorchConfig config)
|
|
{
|
|
_torchConfig = config;
|
|
|
|
if (_themes.ContainsKey(config.LastUsedTheme))
|
|
ChangeTheme(_themes[config.LastUsedTheme].Source);
|
|
}
|
|
}
|
|
}
|