mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-12 02:09:24 +08:00
112 lines
3.2 KiB
C#
112 lines
3.2 KiB
C#
using System.Collections.Generic;
|
|
using System.Drawing;
|
|
using System.IO;
|
|
using System.Windows.Forms;
|
|
using Newtonsoft.Json;
|
|
|
|
namespace Wox.Infrastructure.Storage.UserSettings
|
|
{
|
|
public class UserSettingStorage : BaseStorage<UserSettingStorage>
|
|
{
|
|
[JsonProperty]
|
|
public string Hotkey { get; set; }
|
|
|
|
[JsonProperty]
|
|
public string Theme { get; set; }
|
|
|
|
|
|
[JsonProperty]
|
|
public string QueryBoxFont { get; set; }
|
|
|
|
[JsonProperty]
|
|
public string ResultItemFont { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool ReplaceWinR { get; set; }
|
|
|
|
[JsonProperty]
|
|
public List<WebSearch> WebSearches { get; set; }
|
|
|
|
[JsonProperty]
|
|
public List<ProgramSource> ProgramSources { get; set; }
|
|
|
|
[JsonProperty]
|
|
public List<CustomPluginHotkey> CustomPluginHotkeys { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool StartWoxOnSystemStartup { get; set; }
|
|
|
|
[JsonProperty]
|
|
public bool EnablePythonPlugins { get; set; }
|
|
|
|
public List<WebSearch> LoadDefaultWebSearches()
|
|
{
|
|
List<WebSearch> webSearches = new List<WebSearch>();
|
|
|
|
WebSearch googleWebSearch = new WebSearch()
|
|
{
|
|
Title = "Google",
|
|
ActionWord = "g",
|
|
IconPath = Path.GetDirectoryName(Application.ExecutablePath) + @"\Images\websearch\google.png",
|
|
Url = "https://www.google.com/search?q={q}",
|
|
Enabled = true
|
|
};
|
|
webSearches.Add(googleWebSearch);
|
|
|
|
|
|
WebSearch wikiWebSearch = new WebSearch()
|
|
{
|
|
Title = "Wikipedia",
|
|
ActionWord = "wiki",
|
|
IconPath = Path.GetDirectoryName(Application.ExecutablePath) + @"\Images\websearch\wiki.png",
|
|
Url = "http://en.wikipedia.org/wiki/{q}",
|
|
Enabled = true
|
|
};
|
|
webSearches.Add(wikiWebSearch);
|
|
|
|
return webSearches;
|
|
}
|
|
|
|
public List<ProgramSource> LoadDefaultProgramSources()
|
|
{
|
|
var list = new List<ProgramSource>();
|
|
list.Add(new ProgramSource()
|
|
{
|
|
BonusPoints = 0,
|
|
Enabled = true,
|
|
Type = "CommonStartMenuProgramSource"
|
|
});
|
|
list.Add(new ProgramSource()
|
|
{
|
|
BonusPoints = 0,
|
|
Enabled = true,
|
|
Type = "UserStartMenuProgramSource"
|
|
});
|
|
list.Add(new ProgramSource()
|
|
{
|
|
BonusPoints = -10,
|
|
Enabled = true,
|
|
Type = "AppPathsProgramSource"
|
|
});
|
|
return list;
|
|
}
|
|
|
|
protected override string ConfigName
|
|
{
|
|
get { return "config"; }
|
|
}
|
|
|
|
protected override void LoadDefaultConfig()
|
|
{
|
|
EnablePythonPlugins = true;
|
|
Theme = "Dark";
|
|
ReplaceWinR = true;
|
|
WebSearches = LoadDefaultWebSearches();
|
|
ProgramSources = LoadDefaultProgramSources();
|
|
Hotkey = "Alt + Space";
|
|
QueryBoxFont = FontFamily.GenericSansSerif.Name;
|
|
ResultItemFont = FontFamily.GenericSansSerif.Name;
|
|
}
|
|
}
|
|
}
|