mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 10:16:24 +02:00
* [AdvancedPaste] Additional actions, including Image to text * Spellcheck issue * [AdvancedPaste] Paste as file and many other improvements * Fixed typo * Fixed typo * [AdvancedPaste] Improved paste window menu layout * [AdvancedPaste] Improved settings window layout * [AdvancedPaste] Removed AudioToText for the moment * Code cleanup * Minor fixes * [AdvancedPaste] Semantic Kernel support * Changed log-line with potentially sensitive info * Spellcheck issues * Various improvements for Semantic Kernel * Spellcheck issue * Refactored Clipboard routines * Added integration tests for KernelService * Extra telemetry for AdvancedPaste * Added 'Hotkey' suffix to AdvancedPaste_Settings telemetry event * Added IsSavedQuery * Added KernelQueryCache * Refactoring * Added KernelQueryCache to BugReportTool delete list * Added opt-n for Semantic Kernel * Fixed bug with KernelQueryCache * Ability to view last AI chat message on error * Improved kernel query cache * Used System.IO.Abstractions and improved tests * Fixed under-count of token usage * Used Semantic Kernel icon * Cleanup * Add missing EndProject line * Fix dependency version conflicts * Fix NOTICE.md * Correct place of SemanticKernel in NOTICE.md * Unlinked CustomPreview toggle from AI * Added Microsoft.Bcl.AsyncInterfaces dependency to AdvancedPaste * Fixed NOTICE.md order * Moved Custom Preview to behaviour section * Made Image to Text raise error on empty output * Added AIServiceBatchIntegrationTests * Updated AIServiceBatchIntegrationTests * Added prompt moderation * [AdvancedPaste] Media Transcoding support * Spellcheck issue * Improved transcoding output profile and added tests * Moved GPO Infobar to better location * Added cancel button and minor bug fixes * Fixed crash * Minor cleanups * Improved transcoding error messages * Used software back when transcoding fails with hardware accerlation * Added Reencode to spellcheck * Spellcheck issue --------- Co-authored-by: Jaime Bernardo <jaime@janeasystems.com> Co-authored-by: Dustin L. Howett <dustin@howett.net> Co-authored-by: Jeremy Sinclair <4016293+snickler@users.noreply.github.com>
57 lines
1.8 KiB
C#
57 lines
1.8 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.Collections.Generic;
|
|
using System.Text.Json.Serialization;
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library.Helpers;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library;
|
|
|
|
public sealed class AdvancedPastePasteAsFileAction : Observable, IAdvancedPasteAction
|
|
{
|
|
public static class PropertyNames
|
|
{
|
|
public const string PasteAsTxtFile = "paste-as-txt-file";
|
|
public const string PasteAsPngFile = "paste-as-png-file";
|
|
public const string PasteAsHtmlFile = "paste-as-html-file";
|
|
}
|
|
|
|
private AdvancedPasteAdditionalAction _pasteAsTxtFile = new();
|
|
private AdvancedPasteAdditionalAction _pasteAsPngFile = new();
|
|
private AdvancedPasteAdditionalAction _pasteAsHtmlFile = new();
|
|
private bool _isShown = true;
|
|
|
|
[JsonPropertyName("isShown")]
|
|
public bool IsShown
|
|
{
|
|
get => _isShown;
|
|
set => Set(ref _isShown, value);
|
|
}
|
|
|
|
[JsonPropertyName(PropertyNames.PasteAsTxtFile)]
|
|
public AdvancedPasteAdditionalAction PasteAsTxtFile
|
|
{
|
|
get => _pasteAsTxtFile;
|
|
init => Set(ref _pasteAsTxtFile, value);
|
|
}
|
|
|
|
[JsonPropertyName(PropertyNames.PasteAsPngFile)]
|
|
public AdvancedPasteAdditionalAction PasteAsPngFile
|
|
{
|
|
get => _pasteAsPngFile;
|
|
init => Set(ref _pasteAsPngFile, value);
|
|
}
|
|
|
|
[JsonPropertyName(PropertyNames.PasteAsHtmlFile)]
|
|
public AdvancedPasteAdditionalAction PasteAsHtmlFile
|
|
{
|
|
get => _pasteAsHtmlFile;
|
|
init => Set(ref _pasteAsHtmlFile, value);
|
|
}
|
|
|
|
[JsonIgnore]
|
|
public IEnumerable<IAdvancedPasteAction> SubActions => [PasteAsTxtFile, PasteAsPngFile, PasteAsHtmlFile];
|
|
}
|