mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
Remove instance logic for BinaryStorage and JsonStorage, part 1
1. part of #389 2. huge refactoring
This commit is contained in:
@@ -1,5 +1,6 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using Wox.Core.Plugin;
|
||||
@@ -9,119 +10,66 @@ using Newtonsoft.Json;
|
||||
|
||||
namespace Wox.Core.UserSettings
|
||||
{
|
||||
public class UserSettingStorage : JsonStrorage<UserSettingStorage>
|
||||
public class Settings
|
||||
{
|
||||
public bool DontPromptUpdateMsg { get; set; }
|
||||
|
||||
public int ActivateTimes { get; set; }
|
||||
|
||||
public bool EnableUpdateLog { get; set; }
|
||||
|
||||
public string Hotkey { get; set; }
|
||||
|
||||
public string Language { get; set; }
|
||||
|
||||
public string Theme { get; set; }
|
||||
|
||||
public string QueryBoxFont { get; set; }
|
||||
|
||||
public string Hotkey { get; set; } = "Alt + Space";
|
||||
public string Language { get; set; } = "en";
|
||||
public string Theme { get; set; } = "Dark";
|
||||
public string QueryBoxFont { get; set; } = FontFamily.GenericSansSerif.Name;
|
||||
public string QueryBoxFontStyle { get; set; }
|
||||
|
||||
public string QueryBoxFontWeight { get; set; }
|
||||
|
||||
public string QueryBoxFontStretch { get; set; }
|
||||
|
||||
public string ResultFont { get; set; }
|
||||
|
||||
public string ResultFont { get; set; } = FontFamily.GenericSansSerif.Name;
|
||||
public string ResultFontStyle { get; set; }
|
||||
|
||||
public string ResultFontWeight { get; set; }
|
||||
|
||||
public string ResultFontStretch { get; set; }
|
||||
|
||||
public double WindowLeft { get; set; }
|
||||
|
||||
public double WindowTop { get; set; }
|
||||
public int MaxResultsToShow { get; set; } = 6;
|
||||
public int ActivateTimes { get; set; }
|
||||
|
||||
// Order defaults to 0 or -1, so 1 will let this property appear last
|
||||
[JsonProperty(Order = 1)]
|
||||
public Dictionary<string, CustomizedPluginConfig> CustomizedPluginConfigs { get; set; }
|
||||
public Dictionary<string, PluginSetting> PluginSettings { get; set; } = new Dictionary<string, PluginSetting>();
|
||||
public List<CustomPluginHotkey> CustomPluginHotkeys { get; set; } = new List<CustomPluginHotkey>();
|
||||
|
||||
public List<CustomPluginHotkey> CustomPluginHotkeys { get; set; }
|
||||
[Obsolete]
|
||||
public double Opacity { get; set; } = 1;
|
||||
|
||||
[Obsolete]
|
||||
public OpacityMode OpacityMode { get; set; } = OpacityMode.Normal;
|
||||
|
||||
public bool DontPromptUpdateMsg { get; set; }
|
||||
public bool EnableUpdateLog { get; set; }
|
||||
|
||||
public bool StartWoxOnSystemStartup { get; set; }
|
||||
|
||||
[Obsolete]
|
||||
public double Opacity { get; set; }
|
||||
|
||||
[Obsolete]
|
||||
public OpacityMode OpacityMode { get; set; }
|
||||
|
||||
public bool LeaveCmdOpen { get; set; }
|
||||
|
||||
public bool HideWhenDeactive { get; set; }
|
||||
|
||||
public bool RememberLastLaunchLocation { get; set; }
|
||||
|
||||
public bool IgnoreHotkeysOnFullscreen { get; set; }
|
||||
|
||||
public string ProxyServer { get; set; }
|
||||
|
||||
public bool ProxyEnabled { get; set; }
|
||||
|
||||
public int ProxyPort { get; set; }
|
||||
|
||||
public string ProxyUserName { get; set; }
|
||||
|
||||
public string ProxyPassword { get; set; }
|
||||
|
||||
public int MaxResultsToShow { get; set; }
|
||||
|
||||
protected override string FileName { get; } = "Settings";
|
||||
|
||||
public void IncreaseActivateTimes()
|
||||
{
|
||||
ActivateTimes++;
|
||||
if (ActivateTimes % 15 == 0)
|
||||
{
|
||||
Save();
|
||||
}
|
||||
}
|
||||
|
||||
protected override UserSettingStorage LoadDefault()
|
||||
{
|
||||
DontPromptUpdateMsg = false;
|
||||
Theme = "Dark";
|
||||
Language = "en";
|
||||
CustomizedPluginConfigs = new Dictionary<string, CustomizedPluginConfig>();
|
||||
Hotkey = "Alt + Space";
|
||||
QueryBoxFont = FontFamily.GenericSansSerif.Name;
|
||||
ResultFont = FontFamily.GenericSansSerif.Name;
|
||||
Opacity = 1;
|
||||
OpacityMode = OpacityMode.Normal;
|
||||
LeaveCmdOpen = false;
|
||||
HideWhenDeactive = false;
|
||||
CustomPluginHotkeys = new List<CustomPluginHotkey>();
|
||||
RememberLastLaunchLocation = false;
|
||||
MaxResultsToShow = 6;
|
||||
return this;
|
||||
}
|
||||
|
||||
protected override void OnAfterLoad(UserSettingStorage storage)
|
||||
public void UpdatePluginSettings()
|
||||
{
|
||||
var metadatas = PluginManager.AllPlugins.Select(p => p.Metadata);
|
||||
if (storage.CustomizedPluginConfigs == null)
|
||||
if (PluginSettings == null)
|
||||
{
|
||||
var configs = new Dictionary<string, CustomizedPluginConfig>();
|
||||
var configs = new Dictionary<string, PluginSetting>();
|
||||
foreach (var metadata in metadatas)
|
||||
{
|
||||
addPluginMetadata(configs, metadata);
|
||||
}
|
||||
storage.CustomizedPluginConfigs = configs;
|
||||
PluginSettings = configs;
|
||||
}
|
||||
else
|
||||
{
|
||||
var configs = storage.CustomizedPluginConfigs;
|
||||
var configs = PluginSettings;
|
||||
foreach (var metadata in metadatas)
|
||||
{
|
||||
if (configs.ContainsKey(metadata.ID))
|
||||
@@ -139,26 +87,12 @@ namespace Wox.Core.UserSettings
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
if (storage.QueryBoxFont == null)
|
||||
{
|
||||
storage.QueryBoxFont = FontFamily.GenericSansSerif.Name;
|
||||
}
|
||||
if (storage.ResultFont == null)
|
||||
{
|
||||
storage.ResultFont = FontFamily.GenericSansSerif.Name;
|
||||
}
|
||||
if (storage.Language == null)
|
||||
{
|
||||
storage.Language = "en";
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
private void addPluginMetadata(Dictionary<string, CustomizedPluginConfig> configs, PluginMetadata metadata)
|
||||
private void addPluginMetadata(Dictionary<string, PluginSetting> configs, PluginMetadata metadata)
|
||||
{
|
||||
configs[metadata.ID] = new CustomizedPluginConfig
|
||||
configs[metadata.ID] = new PluginSetting
|
||||
{
|
||||
ID = metadata.ID,
|
||||
Name = metadata.Name,
|
||||
@@ -169,10 +103,10 @@ namespace Wox.Core.UserSettings
|
||||
|
||||
public void UpdateActionKeyword(PluginMetadata metadata)
|
||||
{
|
||||
var config = CustomizedPluginConfigs[metadata.ID];
|
||||
var config = PluginSettings[metadata.ID];
|
||||
config.ActionKeywords = metadata.ActionKeywords;
|
||||
Save();
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
public enum OpacityMode
|
||||
|
||||
Reference in New Issue
Block a user