79031da543
Spell checking / Check Spelling (push) Has been cancelled
Spell checking / Update PR (push) Has been cancelled
Publish Dev Docs Website / build (push) Failing after 1s
Publish Dev Docs Website / deploy (push) Has been skipped
Spell checking / Report (Push) (push) Has been cancelled
Spell checking / Report (PR) (push) Has been cancelled
30 lines
937 B
C#
30 lines
937 B
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.Text.Json;
|
|
|
|
using Settings.UI.Library.Attributes;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
|
{
|
|
public class PowerOcrProperties
|
|
{
|
|
[CmdConfigureIgnore]
|
|
public HotkeySettings DefaultActivationShortcut => new HotkeySettings(true, false, false, true, 0x54); // Win+Shift+T
|
|
|
|
public PowerOcrProperties()
|
|
{
|
|
ActivationShortcut = DefaultActivationShortcut;
|
|
PreferredLanguage = string.Empty;
|
|
}
|
|
|
|
public HotkeySettings ActivationShortcut { get; set; }
|
|
|
|
public string PreferredLanguage { get; set; }
|
|
|
|
public override string ToString()
|
|
=> JsonSerializer.Serialize(this, SettingsSerializationContext.Default.PowerOcrProperties);
|
|
}
|
|
}
|