mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-14 03:37:10 +08:00
43 lines
1.3 KiB
C#
43 lines
1.3 KiB
C#
using System.Collections.Generic;
|
|
using System.ComponentModel;
|
|
using Newtonsoft.Json;
|
|
using Wox.Infrastructure.Storage;
|
|
|
|
namespace Wox.Plugin.Program
|
|
{
|
|
public class ProgramStorage : JsonStrorage<ProgramStorage>
|
|
{
|
|
[JsonProperty]
|
|
public List<ProgramSource> ProgramSources { get; set; }
|
|
|
|
[JsonProperty]
|
|
public string ProgramSuffixes { get; set; }
|
|
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)]
|
|
[DefaultValue(true)]
|
|
public bool EnableStartMenuSource { get; set; }
|
|
|
|
[JsonProperty(DefaultValueHandling = DefaultValueHandling.Populate)]
|
|
[DefaultValue(true)]
|
|
public bool EnableRegistrySource { get; set; }
|
|
|
|
protected override ProgramStorage LoadDefault()
|
|
{
|
|
ProgramSources = new List<ProgramSource>();
|
|
EnableStartMenuSource = true;
|
|
EnableRegistrySource = true;
|
|
return this;
|
|
}
|
|
|
|
protected override void OnAfterLoad(ProgramStorage storage)
|
|
{
|
|
if (string.IsNullOrEmpty(storage.ProgramSuffixes))
|
|
{
|
|
storage.ProgramSuffixes = "lnk;exe;appref-ms;bat";
|
|
}
|
|
}
|
|
|
|
protected override string FileName { get; } = "settings_plugin_program";
|
|
}
|
|
}
|