2020-08-06 05:06:55 +08:00
|
|
|
|
// Copyright (c) Microsoft Corporation
|
|
|
|
|
// The Microsoft Corporation licenses this file to you under the MIT license.
|
|
|
|
|
// See the LICENSE file in the project root for more information.
|
|
|
|
|
|
2020-06-06 00:58:30 +08:00
|
|
|
|
using System;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using System.Windows;
|
2020-08-06 05:06:55 +08:00
|
|
|
|
using ControlzEx.Theming;
|
|
|
|
|
using MahApps.Metro.Theming;
|
|
|
|
|
using Microsoft.Win32;
|
2020-06-06 00:58:30 +08:00
|
|
|
|
|
2020-06-27 08:42:06 +08:00
|
|
|
|
namespace Wox.Plugin
|
2020-06-06 00:58:30 +08:00
|
|
|
|
{
|
2020-06-27 08:42:06 +08:00
|
|
|
|
public class ThemeManager : IDisposable
|
2020-06-06 00:58:30 +08:00
|
|
|
|
{
|
|
|
|
|
private Theme currentTheme;
|
|
|
|
|
private readonly Application App;
|
2020-06-27 08:42:06 +08:00
|
|
|
|
private bool _disposed = false;
|
2020-06-06 00:58:30 +08:00
|
|
|
|
private readonly string LightTheme = "Light.Accent1";
|
|
|
|
|
private readonly string DarkTheme = "Dark.Accent1";
|
|
|
|
|
private readonly string HighContrastOneTheme = "HighContrast.Accent2";
|
|
|
|
|
private readonly string HighContrastTwoTheme = "HighContrast.Accent3";
|
|
|
|
|
private readonly string HighContrastBlackTheme = "HighContrast.Accent4";
|
|
|
|
|
private readonly string HighContrastWhiteTheme = "HighContrast.Accent5";
|
|
|
|
|
|
2020-06-27 08:42:06 +08:00
|
|
|
|
public event ThemeChangedHandler ThemeChanged;
|
|
|
|
|
|
2020-06-06 00:58:30 +08:00
|
|
|
|
public ThemeManager(Application app)
|
|
|
|
|
{
|
|
|
|
|
this.App = app;
|
|
|
|
|
|
|
|
|
|
Uri HighContrastOneThemeUri = new Uri("pack://application:,,,/Themes/HighContrast1.xaml");
|
|
|
|
|
Uri HighContrastTwoThemeUri = new Uri("pack://application:,,,/Themes/HighContrast2.xaml");
|
|
|
|
|
Uri HighContrastBlackThemeUri = new Uri("pack://application:,,,/Themes/HighContrastWhite.xaml");
|
|
|
|
|
Uri HighContrastWhiteThemeUri = new Uri("pack://application:,,,/Themes/HighContrastBlack.xaml");
|
|
|
|
|
Uri LightThemeUri = new Uri("pack://application:,,,/Themes/Light.xaml");
|
|
|
|
|
Uri DarkThemeUri = new Uri("pack://application:,,,/Themes/Dark.xaml");
|
|
|
|
|
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.AddLibraryTheme(
|
|
|
|
|
new LibraryTheme(HighContrastOneThemeUri,
|
|
|
|
|
MahAppsLibraryThemeProvider.DefaultInstance));
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.AddLibraryTheme(
|
|
|
|
|
new LibraryTheme(HighContrastTwoThemeUri,
|
|
|
|
|
MahAppsLibraryThemeProvider.DefaultInstance));
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.AddLibraryTheme(
|
|
|
|
|
new LibraryTheme(HighContrastBlackThemeUri,
|
|
|
|
|
MahAppsLibraryThemeProvider.DefaultInstance));
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.AddLibraryTheme(
|
|
|
|
|
new LibraryTheme(HighContrastWhiteThemeUri,
|
|
|
|
|
MahAppsLibraryThemeProvider.DefaultInstance));
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.AddLibraryTheme(
|
|
|
|
|
new LibraryTheme(LightThemeUri,
|
|
|
|
|
MahAppsLibraryThemeProvider.DefaultInstance));
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.AddLibraryTheme(
|
|
|
|
|
new LibraryTheme(DarkThemeUri,
|
|
|
|
|
MahAppsLibraryThemeProvider.DefaultInstance));
|
|
|
|
|
|
|
|
|
|
ResetTheme();
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.ThemeSyncMode = ThemeSyncMode.SyncWithAppMode;
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.ThemeChanged += Current_ThemeChanged;
|
2020-06-27 08:42:06 +08:00
|
|
|
|
SystemParameters.StaticPropertyChanged += SystemParameters_StaticPropertyChanged;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void SystemParameters_StaticPropertyChanged(object sender, System.ComponentModel.PropertyChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
if (e.PropertyName == nameof(SystemParameters.HighContrast))
|
2020-06-06 00:58:30 +08:00
|
|
|
|
{
|
2020-06-27 08:42:06 +08:00
|
|
|
|
ResetTheme();
|
|
|
|
|
}
|
2020-06-06 00:58:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-27 08:42:06 +08:00
|
|
|
|
public Theme GetCurrentTheme()
|
|
|
|
|
{
|
|
|
|
|
return currentTheme;
|
|
|
|
|
}
|
2020-07-23 04:27:17 +08:00
|
|
|
|
|
2020-06-27 08:42:06 +08:00
|
|
|
|
private static Theme GetHighContrastBaseType()
|
2020-06-06 00:58:30 +08:00
|
|
|
|
{
|
|
|
|
|
string RegistryKey = @"HKEY_CURRENT_USER\Software\Microsoft\Windows\CurrentVersion\Themes";
|
2020-07-23 04:27:17 +08:00
|
|
|
|
string theme = (string)Registry.GetValue(RegistryKey, "CurrentTheme", string.Empty);
|
2020-06-06 00:58:30 +08:00
|
|
|
|
theme = theme.Split('\\').Last().Split('.').First().ToString();
|
|
|
|
|
|
|
|
|
|
if (theme == "hc1")
|
|
|
|
|
return Theme.HighContrastOne;
|
|
|
|
|
else if (theme == "hc2")
|
|
|
|
|
return Theme.HighContrastTwo;
|
|
|
|
|
else if (theme == "hcwhite")
|
|
|
|
|
return Theme.HighContrastWhite;
|
|
|
|
|
else if (theme == "hcblack")
|
|
|
|
|
return Theme.HighContrastBlack;
|
|
|
|
|
else
|
|
|
|
|
return Theme.None;
|
|
|
|
|
}
|
|
|
|
|
|
2020-06-27 08:42:06 +08:00
|
|
|
|
private void ResetTheme()
|
2020-06-06 00:58:30 +08:00
|
|
|
|
{
|
|
|
|
|
if (SystemParameters.HighContrast)
|
|
|
|
|
{
|
|
|
|
|
Theme highContrastBaseType = GetHighContrastBaseType();
|
|
|
|
|
ChangeTheme(highContrastBaseType);
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
string baseColor = WindowsThemeHelper.GetWindowsBaseColor();
|
|
|
|
|
ChangeTheme((Theme)Enum.Parse(typeof(Theme), baseColor));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void ChangeTheme(Theme theme)
|
|
|
|
|
{
|
2020-06-27 08:42:06 +08:00
|
|
|
|
Theme oldTheme = currentTheme;
|
2020-06-06 00:58:30 +08:00
|
|
|
|
if (theme == currentTheme)
|
|
|
|
|
return;
|
|
|
|
|
if (theme == Theme.HighContrastOne)
|
|
|
|
|
{
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.ChangeTheme(this.App, this.HighContrastOneTheme);
|
|
|
|
|
currentTheme = Theme.HighContrastOne;
|
|
|
|
|
}
|
|
|
|
|
else if (theme == Theme.HighContrastTwo)
|
|
|
|
|
{
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.ChangeTheme(this.App, this.HighContrastTwoTheme);
|
|
|
|
|
currentTheme = Theme.HighContrastTwo;
|
|
|
|
|
}
|
|
|
|
|
else if (theme == Theme.HighContrastWhite)
|
|
|
|
|
{
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.ChangeTheme(this.App, this.HighContrastWhiteTheme);
|
|
|
|
|
currentTheme = Theme.HighContrastWhite;
|
|
|
|
|
}
|
|
|
|
|
else if (theme == Theme.HighContrastBlack)
|
|
|
|
|
{
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.ChangeTheme(this.App, this.HighContrastBlackTheme);
|
|
|
|
|
currentTheme = Theme.HighContrastBlack;
|
|
|
|
|
}
|
|
|
|
|
else if (theme == Theme.Light)
|
|
|
|
|
{
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.ChangeTheme(this.App, this.LightTheme);
|
|
|
|
|
currentTheme = Theme.Light;
|
|
|
|
|
}
|
|
|
|
|
else if (theme == Theme.Dark)
|
|
|
|
|
{
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.ChangeTheme(this.App, this.DarkTheme);
|
|
|
|
|
currentTheme = Theme.Dark;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
currentTheme = Theme.None;
|
|
|
|
|
}
|
2020-08-06 05:06:55 +08:00
|
|
|
|
|
2020-06-27 08:42:06 +08:00
|
|
|
|
ThemeChanged?.Invoke(oldTheme, currentTheme);
|
2020-06-06 00:58:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void Current_ThemeChanged(object sender, ThemeChangedEventArgs e)
|
|
|
|
|
{
|
|
|
|
|
ResetTheme();
|
|
|
|
|
}
|
2020-06-27 08:42:06 +08:00
|
|
|
|
|
|
|
|
|
protected virtual void Dispose(bool disposing)
|
|
|
|
|
{
|
|
|
|
|
if (!_disposed)
|
2020-07-23 04:27:17 +08:00
|
|
|
|
{
|
2020-06-27 08:42:06 +08:00
|
|
|
|
if (disposing)
|
|
|
|
|
{
|
|
|
|
|
ControlzEx.Theming.ThemeManager.Current.ThemeChanged -= Current_ThemeChanged;
|
|
|
|
|
SystemParameters.StaticPropertyChanged -= SystemParameters_StaticPropertyChanged;
|
|
|
|
|
_disposed = true;
|
2020-07-23 04:27:17 +08:00
|
|
|
|
}
|
2020-06-27 08:42:06 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void Dispose()
|
|
|
|
|
{
|
|
|
|
|
Dispose(disposing: true);
|
|
|
|
|
GC.SuppressFinalize(this);
|
|
|
|
|
}
|
2020-06-06 00:58:30 +08:00
|
|
|
|
}
|
|
|
|
|
|
2020-06-27 08:42:06 +08:00
|
|
|
|
public delegate void ThemeChangedHandler(Theme oldTheme, Theme newTheme);
|
|
|
|
|
|
2020-06-06 00:58:30 +08:00
|
|
|
|
public enum Theme
|
|
|
|
|
{
|
|
|
|
|
None,
|
2020-07-23 04:27:17 +08:00
|
|
|
|
Light,
|
|
|
|
|
Dark,
|
2020-06-06 00:58:30 +08:00
|
|
|
|
HighContrastOne,
|
|
|
|
|
HighContrastTwo,
|
|
|
|
|
HighContrastBlack,
|
|
|
|
|
HighContrastWhite,
|
|
|
|
|
}
|
|
|
|
|
}
|