PowerToys/Wox.Core/UserSettings/UserSettingStorage.cs

209 lines
6.0 KiB
C#
Raw Normal View History

using System;
using System.Collections.Generic;
using System.IO;
using System.Windows.Forms;
2014-03-23 16:17:41 +08:00
using Newtonsoft.Json;
using Wox.Infrastructure.Storage;
using Wox.Plugin;
using System.Drawing;
namespace Wox.Core.UserSettings
{
public class UserSettingStorage : JsonStrorage<UserSettingStorage>
{
2014-12-14 23:16:29 +08:00
[JsonProperty]
public bool DontPromptUpdateMsg { get; set; }
2014-03-23 16:17:41 +08:00
[JsonProperty]
2014-02-22 11:55:48 +08:00
public string Hotkey { get; set; }
2014-03-23 16:17:41 +08:00
2015-01-02 16:16:09 +08:00
[JsonProperty]
public string Language { get; set; }
2014-03-23 16:17:41 +08:00
[JsonProperty]
public string Theme { get; set; }
2014-03-23 16:17:41 +08:00
[JsonProperty]
2014-03-19 22:17:01 +08:00
public string QueryBoxFont { get; set; }
2014-03-23 16:17:41 +08:00
[JsonProperty]
public string QueryBoxFontStyle { get; set; }
[JsonProperty]
public string QueryBoxFontWeight { get; set; }
[JsonProperty]
public string QueryBoxFontStretch { get; set; }
2014-03-23 16:17:41 +08:00
[JsonProperty]
2014-03-19 22:17:01 +08:00
public string ResultItemFont { get; set; }
2014-03-23 16:17:41 +08:00
[JsonProperty]
public string ResultItemFontStyle { get; set; }
[JsonProperty]
public string ResultItemFontWeight { get; set; }
[JsonProperty]
public string ResultItemFontStretch { get; set; }
2014-03-23 16:17:41 +08:00
[JsonProperty]
public List<WebSearch> WebSearches { get; set; }
2014-03-23 16:17:41 +08:00
2014-06-16 14:06:24 +08:00
[JsonProperty]
public double WindowLeft { get; set; }
[JsonProperty]
public double WindowTop { get; set; }
public List<CustomizedPluginConfig> CustomizedPluginConfigs { get; set; }
2014-03-23 16:17:41 +08:00
[JsonProperty]
2014-02-22 15:52:20 +08:00
public List<CustomPluginHotkey> CustomPluginHotkeys { get; set; }
2014-03-23 16:17:41 +08:00
[JsonProperty]
public bool StartWoxOnSystemStartup { get; set; }
2014-03-23 16:17:41 +08:00
2014-03-26 17:34:19 +08:00
[JsonProperty]
public double Opacity { get; set; }
[JsonProperty]
public OpacityMode OpacityMode { get; set; }
[JsonProperty]
public bool EnableWebSearchSuggestion { get; set; }
[JsonProperty]
public string WebSearchSuggestionSource { get; set; }
2014-07-18 20:00:55 +08:00
[JsonProperty]
public bool LeaveCmdOpen { get; set; }
2014-04-13 10:08:33 +08:00
[JsonProperty]
public bool HideWhenDeactive { get; set; }
2014-07-18 20:00:55 +08:00
[JsonProperty]
public string ProxyServer { get; set; }
[JsonProperty]
public bool ProxyEnabled { get; set; }
[JsonProperty]
public int ProxyPort { get; set; }
[JsonProperty]
public string ProxyUserName { get; set; }
[JsonProperty]
public string ProxyPassword { get; set; }
2014-02-02 16:15:34 +08:00
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);
2014-03-23 16:17:41 +08:00
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);
2014-06-30 21:31:13 +08:00
WebSearch findIcon = new WebSearch()
{
Title = "FindIcon",
ActionWord = "findicon",
IconPath = Path.GetDirectoryName(Application.ExecutablePath) + @"\Images\websearch\pictures.png",
Url = "http://findicons.com/search/{q}",
Enabled = true
};
webSearches.Add(findIcon);
return webSearches;
}
protected override string ConfigFolder
{
get
{
string userProfilePath = Environment.GetEnvironmentVariable("USERPROFILE");
if (userProfilePath == null)
{
throw new ArgumentException("Environment variable USERPROFILE is empty");
}
return Path.Combine(Path.Combine(userProfilePath, ".Wox"), "Config");
}
}
2014-03-23 16:17:41 +08:00
protected override string ConfigName
{
get { return "config"; }
}
2014-03-23 18:14:46 +08:00
protected override UserSettingStorage LoadDefault()
2014-03-23 18:14:46 +08:00
{
2014-12-14 23:16:29 +08:00
DontPromptUpdateMsg = false;
2014-03-23 18:14:46 +08:00
Theme = "Dark";
Language = "en";
2014-03-23 18:14:46 +08:00
WebSearches = LoadDefaultWebSearches();
CustomizedPluginConfigs = new List<CustomizedPluginConfig>();
2014-03-23 18:14:46 +08:00
Hotkey = "Alt + Space";
QueryBoxFont = FontFamily.GenericSansSerif.Name;
ResultItemFont = FontFamily.GenericSansSerif.Name;
2014-03-26 17:34:19 +08:00
Opacity = 1;
2014-07-18 20:00:55 +08:00
OpacityMode = OpacityMode.Normal;
LeaveCmdOpen = false;
2014-04-13 10:08:33 +08:00
HideWhenDeactive = false;
CustomPluginHotkeys = new List<CustomPluginHotkey>()
{
new CustomPluginHotkey()
{
ActionKeyword = "history ",
Hotkey = "Alt + H"
}
};
return this;
2014-03-23 18:14:46 +08:00
}
2014-03-26 17:34:19 +08:00
protected override void OnAfterLoad(UserSettingStorage storage)
{
if (storage.CustomizedPluginConfigs == null)
{
storage.CustomizedPluginConfigs = new List<CustomizedPluginConfig>();
}
2014-12-27 12:34:51 +08:00
if (storage.QueryBoxFont == null)
{
storage.QueryBoxFont = FontFamily.GenericSansSerif.Name;
}
if (storage.ResultItemFont == null)
{
storage.ResultItemFont = FontFamily.GenericSansSerif.Name;
}
2015-01-02 16:16:09 +08:00
if (storage.Language == null)
{
storage.Language = "en";
2015-01-02 16:16:09 +08:00
}
}
2014-03-26 17:34:19 +08:00
}
public enum OpacityMode
{
Normal = 0,
LayeredWindow = 1,
DWM = 2
}
}