mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-26 02:28:17 +08:00
1f44085e41
* #19638 Added the option to Mouse Crosshairs to fix the lengths of the crosshairs. Some discussion about design in the issue but currently implemented as a configuration toggle and separate length input. * Fixed crosshairs fixed lengthed enabled not being read on view model initialization
58 lines
2.2 KiB
C#
58 lines
2.2 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;
|
|
|
|
namespace Microsoft.PowerToys.Settings.UI.Library
|
|
{
|
|
public class MousePointerCrosshairsProperties
|
|
{
|
|
public HotkeySettings DefaultActivationShortcut => new HotkeySettings(true, false, true, false, 0x50); // Win + Alt + P
|
|
|
|
[JsonPropertyName("activation_shortcut")]
|
|
public HotkeySettings ActivationShortcut { get; set; }
|
|
|
|
[JsonPropertyName("crosshairs_color")]
|
|
public StringProperty CrosshairsColor { get; set; }
|
|
|
|
[JsonPropertyName("crosshairs_opacity")]
|
|
public IntProperty CrosshairsOpacity { get; set; }
|
|
|
|
[JsonPropertyName("crosshairs_radius")]
|
|
public IntProperty CrosshairsRadius { get; set; }
|
|
|
|
[JsonPropertyName("crosshairs_thickness")]
|
|
public IntProperty CrosshairsThickness { get; set; }
|
|
|
|
[JsonPropertyName("crosshairs_border_color")]
|
|
public StringProperty CrosshairsBorderColor { get; set; }
|
|
|
|
[JsonPropertyName("crosshairs_border_size")]
|
|
public IntProperty CrosshairsBorderSize { get; set; }
|
|
|
|
[JsonPropertyName("crosshairs_auto_hide")]
|
|
public BoolProperty CrosshairsAutoHide { get; set; }
|
|
|
|
[JsonPropertyName("crosshairs_is_fixed_length_enabled")]
|
|
public BoolProperty CrosshairsIsFixedLengthEnabled { get; set; }
|
|
|
|
[JsonPropertyName("crosshairs_fixed_length")]
|
|
public IntProperty CrosshairsFixedLength { get; set; }
|
|
|
|
public MousePointerCrosshairsProperties()
|
|
{
|
|
ActivationShortcut = DefaultActivationShortcut;
|
|
CrosshairsColor = new StringProperty("#FF0000");
|
|
CrosshairsOpacity = new IntProperty(75);
|
|
CrosshairsRadius = new IntProperty(20);
|
|
CrosshairsThickness = new IntProperty(5);
|
|
CrosshairsBorderColor = new StringProperty("#FFFFFF");
|
|
CrosshairsBorderSize = new IntProperty(1);
|
|
CrosshairsAutoHide = new BoolProperty(false);
|
|
CrosshairsIsFixedLengthEnabled = new BoolProperty(false);
|
|
CrosshairsFixedLength = new IntProperty(1);
|
|
}
|
|
}
|
|
}
|