2025-02-25 02:48:54 +08: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.
|
|
|
|
|
|
|
|
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.Linq;
|
|
|
|
|
|
using System.Text;
|
|
|
|
|
|
using System.Text.Json.Serialization;
|
|
|
|
|
|
using System.Threading.Tasks;
|
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Helpers;
|
|
|
|
|
|
using Microsoft.PowerToys.Settings.UI.Library;
|
|
|
|
|
|
|
|
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.SerializationContext;
|
|
|
|
|
|
|
2025-08-20 09:31:52 +08:00
|
|
|
|
[JsonSerializable(typeof(ActionMessage))]
|
2025-02-25 02:48:54 +08:00
|
|
|
|
[JsonSerializable(typeof(AdvancedPasteSettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(AlwaysOnTopSettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(ColorPickerSettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(CropAndLockSettings))]
|
2026-02-03 13:53:25 +08:00
|
|
|
|
[JsonSerializable(typeof(CursorWrapSettings))]
|
2025-08-20 09:31:52 +08:00
|
|
|
|
[JsonSerializable(typeof(Dictionary<string, List<string>>))]
|
2025-02-25 02:48:54 +08:00
|
|
|
|
[JsonSerializable(typeof(FileLocksmithSettings))]
|
2025-08-20 09:31:52 +08:00
|
|
|
|
[JsonSerializable(typeof(FindMyMouseSettings))]
|
2026-07-30 22:42:05 -07:00
|
|
|
|
[JsonSerializable(typeof(AltWindowCycleSettings))]
|
2025-08-20 09:31:52 +08:00
|
|
|
|
[JsonSerializable(typeof(IList<PowerToysReleaseInfo>))]
|
2026-02-12 04:01:40 -08:00
|
|
|
|
[JsonSerializable(typeof(KeyboardManagerSettings))]
|
2026-01-09 10:28:54 -05:00
|
|
|
|
[JsonSerializable(typeof(LightSwitchSettings))]
|
2025-02-25 02:48:54 +08:00
|
|
|
|
[JsonSerializable(typeof(MeasureToolSettings))]
|
2025-08-20 09:31:52 +08:00
|
|
|
|
[JsonSerializable(typeof(MouseHighlighterSettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(MouseJumpSettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(MousePointerCrosshairsSettings))]
|
2025-02-25 02:48:54 +08:00
|
|
|
|
[JsonSerializable(typeof(MouseWithoutBordersSettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(NewPlusSettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(PeekSettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(PowerLauncherSettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(PowerOcrSettings))]
|
2025-08-20 09:31:52 +08:00
|
|
|
|
[JsonSerializable(typeof(PowerOcrSettings))]
|
2026-02-03 13:53:25 +08:00
|
|
|
|
[JsonSerializable(typeof(PowerDisplaySettings))]
|
2025-02-25 02:48:54 +08:00
|
|
|
|
[JsonSerializable(typeof(RegistryPreviewSettings))]
|
2025-09-29 08:53:07 +08:00
|
|
|
|
[JsonSerializable(typeof(ShortcutConflictProperties))]
|
2025-08-20 09:31:52 +08:00
|
|
|
|
[JsonSerializable(typeof(ShortcutGuideSettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(WINDOWPLACEMENT))]
|
2025-02-25 02:48:54 +08:00
|
|
|
|
[JsonSerializable(typeof(WorkspacesSettings))]
|
2026-04-15 15:13:56 +08:00
|
|
|
|
[JsonSerializable(typeof(GrabAndMoveSettings))]
|
2026-02-03 13:53:25 +08:00
|
|
|
|
[JsonSerializable(typeof(ZoomItSettings))]
|
|
|
|
|
|
[JsonSerializable(typeof(PasteAIConfiguration))]
|
|
|
|
|
|
[JsonSerializable(typeof(PasteAIProviderDefinition))]
|
|
|
|
|
|
[JsonSerializable(typeof(System.Collections.ObjectModel.ObservableCollection<PasteAIProviderDefinition>))]
|
2025-02-25 02:48:54 +08:00
|
|
|
|
public sealed partial class SourceGenerationContextContext : JsonSerializerContext
|
|
|
|
|
|
{
|
|
|
|
|
|
}
|