mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-08 12:18:50 +02:00
Adjusting settings to leverage base class (#5127)
* renaming / deleting file * adding in base class Co-authored-by: Clint Rutkas <crutkas@microsoft.com>
This commit is contained in:
@@ -2,45 +2,42 @@
|
||||
// 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;
|
||||
|
||||
namespace Microsoft.PowerToys.Settings.UI.Lib
|
||||
{
|
||||
public class PowerRenameSettings : BasePTModuleSettings
|
||||
{
|
||||
public PowerRenameProperties properties { get; set; }
|
||||
public const string ModuleName = "PowerRename";
|
||||
|
||||
[JsonPropertyName("properties")]
|
||||
public PowerRenameProperties Properties { get; set; }
|
||||
|
||||
public PowerRenameSettings()
|
||||
{
|
||||
properties = new PowerRenameProperties();
|
||||
version = "1";
|
||||
name = "PowerRename";
|
||||
Properties = new PowerRenameProperties();
|
||||
Version = "1";
|
||||
Name = ModuleName;
|
||||
}
|
||||
|
||||
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;
|
||||
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";
|
||||
Version = "1";
|
||||
Name = ModuleName;
|
||||
}
|
||||
|
||||
public PowerRenameSettings(string ptName)
|
||||
{
|
||||
properties = new PowerRenameProperties();
|
||||
version = "1";
|
||||
name = ptName;
|
||||
}
|
||||
|
||||
public override string ToJsonString()
|
||||
{
|
||||
return JsonSerializer.Serialize(this);
|
||||
Properties = new PowerRenameProperties();
|
||||
Version = "1";
|
||||
Name = ptName;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user