2020-04-07 10:19:14 -07: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.
|
|
|
|
|
|
|
2020-04-02 06:08:56 -07:00
|
|
|
|
using System.Text.Json;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Lib
|
|
|
|
|
|
{
|
|
|
|
|
|
public class PowerRenameSettings : BasePTModuleSettings
|
|
|
|
|
|
{
|
|
|
|
|
|
public PowerRenameProperties properties { get; set; }
|
|
|
|
|
|
|
|
|
|
|
|
public PowerRenameSettings()
|
|
|
|
|
|
{
|
2020-04-10 15:22:07 -07:00
|
|
|
|
properties = new PowerRenameProperties();
|
|
|
|
|
|
version = "1";
|
2020-04-17 15:25:08 -07:00
|
|
|
|
name = "PowerRename";
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public PowerRenameSettings(PowerRenameLocalProperties localProperties)
|
|
|
|
|
|
{
|
|
|
|
|
|
properties = new PowerRenameProperties();
|
|
|
|
|
|
properties.PersistState.Value = localProperties.PersistState;
|
|
|
|
|
|
properties.MRUEnabled.Value = localProperties.MRUEnabled;
|
|
|
|
|
|
properties.MaxMRUSize.Value = localProperties.MaxMRUSize;
|
|
|
|
|
|
properties.ShowIcon.Value = localProperties.ShowIcon;
|
|
|
|
|
|
properties.ExtendedContextMenuOnly.Value = localProperties.ExtendedContextMenuOnly;
|
|
|
|
|
|
|
|
|
|
|
|
version = "1";
|
|
|
|
|
|
name = "PowerRename";
|
2020-04-02 06:08:56 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public PowerRenameSettings(string ptName)
|
|
|
|
|
|
{
|
2020-04-10 15:22:07 -07:00
|
|
|
|
properties = new PowerRenameProperties();
|
|
|
|
|
|
version = "1";
|
|
|
|
|
|
name = ptName;
|
2020-04-02 06:08:56 -07:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public override string ToJsonString()
|
|
|
|
|
|
{
|
|
|
|
|
|
return JsonSerializer.Serialize(this);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
2020-04-08 00:19:00 -07:00
|
|
|
|
}
|