mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-13 00:01:45 +08:00
f987a48b3a
* [Quick Accent] change default input delay and default activation key * [Quick Accent] use default activation key 'Both' as before * [Quick Accent] use PowerAccentSettings.DefaultInputTimeMs * [Quick Accent] add more comments
37 lines
1.1 KiB
C#
37 lines
1.1 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.Text.Json.Serialization;
|
|
using Microsoft.PowerToys.Settings.UI.Library.Interfaces;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
|
{
|
|
public class PowerAccentSettings : BasePTModuleSettings, ISettingsConfig
|
|
{
|
|
public const string ModuleName = "QuickAccent";
|
|
public const string ModuleVersion = "0.0.1";
|
|
public const int DefaultInputTimeMs = 300; // PowerAccentKeyboardService.PowerAccentSettings.inputTime should be the same
|
|
|
|
[JsonPropertyName("properties")]
|
|
public PowerAccentProperties Properties { get; set; }
|
|
|
|
public PowerAccentSettings()
|
|
{
|
|
Name = ModuleName;
|
|
Version = ModuleVersion;
|
|
Properties = new PowerAccentProperties();
|
|
}
|
|
|
|
public string GetModuleName()
|
|
{
|
|
return Name;
|
|
}
|
|
|
|
public bool UpgradeSettingsConfiguration()
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
}
|