mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
<!-- Enter a brief description/summary of your PR here. What does it fix/what does it change/how was it tested (even manually, if necessary)? --> ## Summary of the Pull Request This PR removes the ISettingsUtils and ISettingsPath interfaces to reduce some complexity. They only existed so the classes can be used with moq. But this is also possible by using virtual methods which is cleaner. <!-- Please review the items on the PR checklist before submitting--> ## PR Checklist - [ ] Closes: #xxx <!-- - [ ] Closes: #yyy (add separate lines for additional resolved issues) --> - [ ] **Communication:** I've discussed this with core contributors already. If the work hasn't been agreed, this work might be rejected - [x] **Tests:** Added/updated and all pass - [ ] **Localization:** All end-user-facing strings can be localized - [ ] **Dev docs:** Added/updated - [ ] **New binaries:** Added on the required places - [ ] [JSON for signing](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ESRPSigning_core.json) for new binaries - [ ] [WXS for installer](https://github.com/microsoft/PowerToys/blob/main/installer/PowerToysSetup/Product.wxs) for new binaries and localization folder - [ ] [YML for CI pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/ci/templates/build-powertoys-steps.yml) for new test projects - [ ] [YML for signed pipeline](https://github.com/microsoft/PowerToys/blob/main/.pipelines/release.yml) - [ ] **Documentation updated:** If checked, please file a pull request on [our docs repo](https://github.com/MicrosoftDocs/windows-uwp/tree/docs/hub/powertoys) and link it here: #xxx
110 lines
4.1 KiB
C#
110 lines
4.1 KiB
C#
// 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;
|
|
using System.Collections.Generic;
|
|
using System.Text.Json;
|
|
using System.Text.Json.Serialization;
|
|
using ManagedCommon;
|
|
using Microsoft.PowerToys.Settings.UI.Library.Helpers;
|
|
using Microsoft.PowerToys.Settings.UI.Library.Interfaces;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
|
{
|
|
public class AdvancedPasteSettings : BasePTModuleSettings, ISettingsConfig, IHotkeyConfig
|
|
{
|
|
public const string ModuleName = "AdvancedPaste";
|
|
|
|
private static readonly JsonSerializerOptions _serializerOptions = new JsonSerializerOptions
|
|
{
|
|
WriteIndented = true,
|
|
};
|
|
|
|
[JsonPropertyName("properties")]
|
|
public AdvancedPasteProperties Properties { get; set; }
|
|
|
|
public AdvancedPasteSettings()
|
|
{
|
|
Properties = new AdvancedPasteProperties();
|
|
Version = "1";
|
|
Name = ModuleName;
|
|
}
|
|
|
|
public virtual void Save(SettingsUtils settingsUtils)
|
|
{
|
|
// Save settings to file
|
|
var options = _serializerOptions;
|
|
|
|
ArgumentNullException.ThrowIfNull(settingsUtils);
|
|
|
|
settingsUtils.SaveSettings(JsonSerializer.Serialize(this, options), ModuleName);
|
|
}
|
|
|
|
public ModuleType GetModuleType() => ModuleType.AdvancedPaste;
|
|
|
|
public HotkeyAccessor[] GetAllHotkeyAccessors()
|
|
{
|
|
var hotkeyAccessors = new List<HotkeyAccessor>
|
|
{
|
|
new HotkeyAccessor(
|
|
() => Properties.PasteAsPlainTextShortcut,
|
|
value => Properties.PasteAsPlainTextShortcut = value ?? AdvancedPasteProperties.DefaultPasteAsPlainTextShortcut,
|
|
"PasteAsPlainText_Shortcut"),
|
|
new HotkeyAccessor(
|
|
() => Properties.AdvancedPasteUIShortcut,
|
|
value => Properties.AdvancedPasteUIShortcut = value ?? AdvancedPasteProperties.DefaultAdvancedPasteUIShortcut,
|
|
"AdvancedPasteUI_Shortcut"),
|
|
new HotkeyAccessor(
|
|
() => Properties.PasteAsMarkdownShortcut,
|
|
value => Properties.PasteAsMarkdownShortcut = value ?? new HotkeySettings(),
|
|
"PasteAsMarkdown_Shortcut"),
|
|
new HotkeyAccessor(
|
|
() => Properties.PasteAsJsonShortcut,
|
|
value => Properties.PasteAsJsonShortcut = value ?? new HotkeySettings(),
|
|
"PasteAsJson_Shortcut"),
|
|
};
|
|
|
|
string[] additionalActionHeaderKeys =
|
|
[
|
|
"ImageToText",
|
|
"PasteAsTxtFile",
|
|
"PasteAsPngFile",
|
|
"PasteAsHtmlFile",
|
|
"TranscodeToMp3",
|
|
"TranscodeToMp4",
|
|
];
|
|
int index = 0;
|
|
foreach (var action in Properties.AdditionalActions.GetAllActions())
|
|
{
|
|
if (action is AdvancedPasteAdditionalAction additionalAction)
|
|
{
|
|
hotkeyAccessors.Add(new HotkeyAccessor(
|
|
() => additionalAction.Shortcut,
|
|
value => additionalAction.Shortcut = value ?? new HotkeySettings(),
|
|
additionalActionHeaderKeys[index]));
|
|
index++;
|
|
}
|
|
}
|
|
|
|
// Custom actions do not have localization header, just use the action name.
|
|
foreach (var customAction in Properties.CustomActions.Value)
|
|
{
|
|
hotkeyAccessors.Add(new HotkeyAccessor(
|
|
() => customAction.Shortcut,
|
|
value => customAction.Shortcut = value ?? new HotkeySettings(),
|
|
customAction.Name));
|
|
}
|
|
|
|
return hotkeyAccessors.ToArray();
|
|
}
|
|
|
|
public string GetModuleName()
|
|
=> Name;
|
|
|
|
// This can be utilized in the future if the settings.json file is to be modified/deleted.
|
|
public bool UpgradeSettingsConfiguration()
|
|
=> false;
|
|
}
|
|
}
|