2020-04-20 21:03:26 +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.Text.Json.Serialization;
|
|
|
|
|
|
2020-10-23 00:45:48 +08:00
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
2020-04-20 21:03:26 +08:00
|
|
|
|
{
|
|
|
|
|
public class ShortcutGuideProperties
|
|
|
|
|
{
|
|
|
|
|
public ShortcutGuideProperties()
|
|
|
|
|
{
|
2020-05-08 23:22:57 +08:00
|
|
|
|
OverlayOpacity = new IntProperty(90);
|
2021-09-23 21:23:22 +08:00
|
|
|
|
UseLegacyPressWinKeyBehavior = new BoolProperty(false);
|
2020-05-08 23:22:57 +08:00
|
|
|
|
PressTime = new IntProperty(900);
|
2020-09-29 03:44:18 +08:00
|
|
|
|
Theme = new StringProperty("system");
|
2021-04-02 22:29:48 +08:00
|
|
|
|
DisabledApps = new StringProperty();
|
2021-05-20 20:07:34 +08:00
|
|
|
|
OpenShortcutGuide = new HotkeySettings(true, false, false, true, 0xBF);
|
2020-04-20 21:03:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
2021-05-20 20:07:34 +08:00
|
|
|
|
[JsonPropertyName("open_shortcutguide")]
|
|
|
|
|
public HotkeySettings OpenShortcutGuide { get; set; }
|
|
|
|
|
|
2020-04-20 21:03:26 +08:00
|
|
|
|
[JsonPropertyName("overlay_opacity")]
|
|
|
|
|
public IntProperty OverlayOpacity { get; set; }
|
|
|
|
|
|
2021-09-23 21:23:22 +08:00
|
|
|
|
[JsonPropertyName("use_legacy_press_win_key_behavior")]
|
|
|
|
|
public BoolProperty UseLegacyPressWinKeyBehavior { get; set; }
|
|
|
|
|
|
2020-04-20 21:03:26 +08:00
|
|
|
|
[JsonPropertyName("press_time")]
|
|
|
|
|
public IntProperty PressTime { get; set; }
|
|
|
|
|
|
|
|
|
|
[JsonPropertyName("theme")]
|
|
|
|
|
public StringProperty Theme { get; set; }
|
2021-04-02 22:29:48 +08:00
|
|
|
|
|
|
|
|
|
[JsonPropertyName("disabled_apps")]
|
|
|
|
|
public StringProperty DisabledApps { get; set; }
|
2020-04-20 21:03:26 +08:00
|
|
|
|
}
|
|
|
|
|
}
|