mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-04 18:26:39 +02:00
* fix corners * save corner preference * added fz setting * add option to settings * return original preference despite the setting * removed reset to default corner preference
37 lines
845 B
C
37 lines
845 B
C
#pragma once
|
|
|
|
enum class SettingId
|
|
{
|
|
ShiftDrag = 0,
|
|
MouseSwitch,
|
|
OverrideSnapHotkeys,
|
|
MoveWindowAcrossMonitors,
|
|
MoveWindowsBasedOnPosition,
|
|
OverlappingZonesAlgorithm,
|
|
DisplayChangeMoveWindows,
|
|
ZoneSetChangeMoveWindows,
|
|
AppLastZoneMoveWindows,
|
|
OpenWindowOnActiveMonitor,
|
|
RestoreWindowSize,
|
|
QuickLayoutSwitch,
|
|
FlashZonesOnQuickSwitch,
|
|
LaunchEditorOnScreenWhereCursorPlaced,
|
|
ShowOnAllMonitors,
|
|
SpanZonesAcrossMonitors,
|
|
MakeDraggedWindowsTransparent,
|
|
ZoneHighlightColor,
|
|
ZoneHighlightOpacity,
|
|
ZoneBorderColor,
|
|
ZoneColor,
|
|
ZoneNumberColor,
|
|
SystemTheme,
|
|
ShowZoneNumber,
|
|
EditorHotkey,
|
|
WindowSwitching,
|
|
NextTabHotkey,
|
|
PrevTabHotkey,
|
|
ExcludedApps,
|
|
AllowSnapPopupWindows,
|
|
AllowSnapChildWindows,
|
|
DisableRoundCornersOnSnapping,
|
|
}; |