mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
* Add Delete functionality for Peek. * Updated the "No More Files" text block to use a Uid to load its resource text. Also altered the text style to be consistent with the FailedFallbackPreviewControl error page. * Revert "Delete Directory.Packages.props" This reverts commit 3a10918c9f91de64785722e4bdb33c58d1c2daea. * Attempt to appease the spell-checking bot by renaming flag const. * Show error message InfoBar if file deletion failed. * Resolve XAML styling. * XAML styling fix. * Settings app updates for new delete confirmation setting. * Add delete confirmation dialog and settings to Peek. Add shell notification event after delete operation. * Spelling updates. * Spelling update. * Remove permanent delete parameter, YAGNI. Add hwnd parameter to delete so warning dialogs are correctly parented. Fix flags to not hide permanent delete warning. * Simplify delete confirmation dialog. Remove workaround for focus visual issue. Ensure delete confirmation dialog is closed when the main window visibility is toggled. * Fix delete delay. Do not regard user cancellations of permanent deletes as an error, but log them as info anyway. More descriptive name for delete confirmation dialog checkbox. * Fix multiple Content_KeyUp events being raised for MainWindow. * Synchronise ConfirmFileDelete setting between Peek and Settings app. * Update following review: split System usings from others; do not log deleted item name. * Fix XAML style
34 lines
1.2 KiB
C#
34 lines
1.2 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 Microsoft.PowerToys.Settings.UI.Library.Interfaces;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
|
{
|
|
public interface ISettingsUtils
|
|
{
|
|
public const string DefaultFileName = "settings.json";
|
|
|
|
T GetSettings<T>(string powertoy = "", string fileName = DefaultFileName)
|
|
where T : ISettingsConfig, new();
|
|
|
|
T GetSettingsOrDefault<T>(string powertoy = "", string fileName = DefaultFileName)
|
|
where T : ISettingsConfig, new();
|
|
|
|
void SaveSettings(string jsonSettings, string powertoy = "", string fileName = DefaultFileName);
|
|
|
|
bool SettingsExists(string powertoy = "", string fileName = DefaultFileName);
|
|
|
|
void DeleteSettings(string powertoy = "");
|
|
|
|
string GetSettingsFilePath(string powertoy = "", string fileName = DefaultFileName);
|
|
|
|
T GetSettingsOrDefault<T, T2>(string powertoy = "", string fileName = DefaultFileName, Func<object, object> settingsUpgrader = null)
|
|
where T : ISettingsConfig, new()
|
|
where T2 : ISettingsConfig, new();
|
|
}
|
|
}
|