mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-06 19:26:39 +02:00
* popup windows check
* use minimize maximize buttons check
* update test utils
* added tests
* define types for easier testing
* changed checks order
* remove option check
* upd test
* remove FZ popup option
* max min buttons -> caption
* calculator test
* updated excluded tests
* add asserts to child window test
* update window creation
* splash screen refactor
* remove hotfix part
* replace style checking functions
* remove no longer necessary check
* tool window check fix
* fix mouse snapping check
* added check and test for non-root window
* spelling
* Revert "remove FZ popup option"
This reverts commit 26732ad683.
* skip child window tests in CI
* remove the option
* remove the constant
* updated tests
37 lines
871 B
C
37 lines
871 B
C
#pragma once
|
|
|
|
enum class SettingId
|
|
{
|
|
ShiftDrag = 0,
|
|
MouseSwitch,
|
|
MouseMiddleClickSpanningMultipleZones,
|
|
OverrideSnapHotkeys,
|
|
MoveWindowAcrossMonitors,
|
|
MoveWindowsBasedOnPosition,
|
|
OverlappingZonesAlgorithm,
|
|
DisplayOrWorkAreaChangeMoveWindows,
|
|
ZoneSetChangeMoveWindows,
|
|
AppLastZoneMoveWindows,
|
|
OpenWindowOnActiveMonitor,
|
|
RestoreWindowSize,
|
|
QuickLayoutSwitch,
|
|
FlashZonesOnQuickSwitch,
|
|
LaunchEditorOnScreenWhereCursorPlaced,
|
|
ShowOnAllMonitors,
|
|
SpanZonesAcrossMonitors,
|
|
MakeDraggedWindowsTransparent,
|
|
ZoneHighlightColor,
|
|
ZoneHighlightOpacity,
|
|
ZoneBorderColor,
|
|
ZoneColor,
|
|
ZoneNumberColor,
|
|
SystemTheme,
|
|
ShowZoneNumber,
|
|
EditorHotkey,
|
|
WindowSwitching,
|
|
NextTabHotkey,
|
|
PrevTabHotkey,
|
|
ExcludedApps,
|
|
AllowSnapChildWindows,
|
|
DisableRoundCornersOnSnapping,
|
|
}; |