2020-08-18 01:00:56 +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.
|
|
|
|
|
|
|
|
|
|
using System.Text.Json;
|
|
|
|
|
using System.Text.Json.Serialization;
|
2020-09-24 04:20:32 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Lib.Interface;
|
2020-08-18 01:00:56 +08:00
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|
|
|
|
{
|
2020-09-24 04:20:32 +08:00
|
|
|
|
public class PowerLauncherSettings : BasePTModuleSettings, ISettingsConfig
|
2020-08-18 01:00:56 +08:00
|
|
|
|
{
|
|
|
|
|
public const string ModuleName = "PowerToys Run";
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("properties")]
|
|
|
|
|
public PowerLauncherProperties Properties { get; set; }
|
|
|
|
|
|
|
|
|
|
public PowerLauncherSettings()
|
|
|
|
|
{
|
|
|
|
|
Properties = new PowerLauncherProperties();
|
2020-09-09 01:04:17 +08:00
|
|
|
|
Version = "1.0";
|
2020-08-18 01:00:56 +08:00
|
|
|
|
Name = ModuleName;
|
|
|
|
|
}
|
|
|
|
|
|
2020-09-22 01:14:44 +08:00
|
|
|
|
public virtual void Save(ISettingsUtils settingsUtils)
|
2020-08-18 01:00:56 +08:00
|
|
|
|
{
|
|
|
|
|
// Save settings to file
|
|
|
|
|
var options = new JsonSerializerOptions
|
|
|
|
|
{
|
|
|
|
|
WriteIndented = true,
|
|
|
|
|
};
|
|
|
|
|
|
2020-09-22 01:14:44 +08:00
|
|
|
|
settingsUtils.SaveSettings(JsonSerializer.Serialize(this, options), ModuleName);
|
2020-08-18 01:00:56 +08:00
|
|
|
|
}
|
2020-09-24 04:20:32 +08:00
|
|
|
|
|
|
|
|
|
public string GetModuleName()
|
|
|
|
|
{
|
|
|
|
|
return Name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// This can be utilized in the future if the settings.json file is to be modified/deleted.
|
|
|
|
|
public bool UpgradeSettingsConfiguration()
|
|
|
|
|
{
|
|
|
|
|
return false;
|
|
|
|
|
}
|
2020-08-18 01:00:56 +08:00
|
|
|
|
}
|
|
|
|
|
}
|