2020-04-27 08:34:03 +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.
|
|
|
|
|
|
2021-01-14 20:14:29 +08:00
|
|
|
|
using System;
|
2020-04-27 08:34:03 +08:00
|
|
|
|
using System.Text.Json;
|
|
|
|
|
using System.Text.Json.Serialization;
|
2020-10-23 00:45:48 +08:00
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library.Interfaces;
|
2020-04-27 08:34:03 +08:00
|
|
|
|
|
2020-10-23 00:45:48 +08:00
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
2020-04-27 08:34:03 +08:00
|
|
|
|
{
|
2020-09-24 04:20:32 +08:00
|
|
|
|
public class ImageResizerSettings : BasePTModuleSettings, ISettingsConfig
|
2020-04-27 08:34:03 +08:00
|
|
|
|
{
|
2020-10-09 07:34:19 +08:00
|
|
|
|
public const string ModuleName = "ImageResizer";
|
2020-04-27 08:34:03 +08:00
|
|
|
|
|
|
|
|
|
[JsonPropertyName("properties")]
|
|
|
|
|
public ImageResizerProperties Properties { get; set; }
|
|
|
|
|
|
|
|
|
|
public ImageResizerSettings()
|
|
|
|
|
{
|
2020-07-22 05:06:39 +08:00
|
|
|
|
Version = "1";
|
|
|
|
|
Name = ModuleName;
|
|
|
|
|
Properties = new ImageResizerProperties();
|
2020-04-27 08:34:03 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-01-14 20:14:29 +08:00
|
|
|
|
public ImageResizerSettings(Func<string, string> resourceLoader)
|
|
|
|
|
: this()
|
|
|
|
|
{
|
|
|
|
|
Properties = new ImageResizerProperties(resourceLoader);
|
|
|
|
|
}
|
|
|
|
|
|
2020-07-22 05:06:39 +08:00
|
|
|
|
public override string ToJsonString()
|
2020-04-27 08:34:03 +08:00
|
|
|
|
{
|
|
|
|
|
var options = new JsonSerializerOptions
|
|
|
|
|
{
|
|
|
|
|
WriteIndented = true,
|
|
|
|
|
};
|
|
|
|
|
return JsonSerializer.Serialize(this, options);
|
|
|
|
|
}
|
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-04-27 08:34:03 +08:00
|
|
|
|
}
|
|
|
|
|
}
|