mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-01-11 22:57:59 +08:00
c93eb92cd0
* rename dll -> FancyZonesModuleInterface (#11488) * [FancyZones] Rename "fancyzones/tests" -> "fancyzones/FancyZonesTests" (#11492) * [FancyZones] Rename "fancyzones/lib" -> "fancyzones/FancyZonesLib" (#11489) * [FancyZones] New FancyZones project. (#11544) * [FancyZones] Allow single instance of "PowerToys.FancyZones.exe" (#11558) * [FancyZones] Updated bug reports (#11571) * [FancyZones] Updated installer (#11572) * [FancyZones] Update string resources (#11596) * [FancyZones] Terminate FancyZones with runner (#11696) * [FancyZones] Drop support for the module interface API to save settings (#11661) * Settings telemetry for FancyZones (#11766) * commented out test * enable dpi awareness for the process
66 lines
2.6 KiB
C++
66 lines
2.6 KiB
C++
#pragma once
|
|
|
|
#include <common/SettingsAPI/settings_objects.h>
|
|
|
|
// Zoned window properties are not localized.
|
|
namespace ZonedWindowProperties
|
|
{
|
|
const wchar_t PropertyMultipleZoneID[] = L"FancyZones_zones";
|
|
const wchar_t PropertyRestoreSizeID[] = L"FancyZones_RestoreSize";
|
|
const wchar_t PropertyRestoreOriginID[] = L"FancyZones_RestoreOrigin";
|
|
|
|
const wchar_t MultiMonitorDeviceID[] = L"FancyZones#MultiMonitorDevice";
|
|
}
|
|
|
|
// in reality, this file needs to be kept in sync currently with src/settings-ui/Microsoft.PowerToys.Settings.UI.Library/FZConfigProperties.cs
|
|
struct Settings
|
|
{
|
|
enum struct OverlappingZonesAlgorithm : int
|
|
{
|
|
Smallest = 0,
|
|
Largest = 1,
|
|
Positional = 2,
|
|
ClosestCenter = 3,
|
|
EnumElements = 4, // number of elements in the enum, not counting this
|
|
};
|
|
|
|
// The values specified here are the defaults.
|
|
bool shiftDrag = true;
|
|
bool mouseSwitch = false;
|
|
bool displayChange_moveWindows = false;
|
|
bool zoneSetChange_flashZones = false;
|
|
bool zoneSetChange_moveWindows = false;
|
|
bool overrideSnapHotkeys = false;
|
|
bool moveWindowAcrossMonitors = false;
|
|
bool moveWindowsBasedOnPosition = false;
|
|
bool appLastZone_moveWindows = false;
|
|
bool openWindowOnActiveMonitor = false;
|
|
bool restoreSize = false;
|
|
bool quickLayoutSwitch = true;
|
|
bool flashZonesOnQuickSwitch = true;
|
|
bool use_cursorpos_editor_startupscreen = true;
|
|
bool showZonesOnAllMonitors = false;
|
|
bool spanZonesAcrossMonitors = false;
|
|
bool makeDraggedWindowTransparent = true;
|
|
std::wstring zoneColor = L"#AACDFF";
|
|
std::wstring zoneBorderColor = L"#FFFFFF";
|
|
std::wstring zoneHighlightColor = L"#008CFF";
|
|
int zoneHighlightOpacity = 50;
|
|
OverlappingZonesAlgorithm overlappingZonesAlgorithm = OverlappingZonesAlgorithm::Smallest;
|
|
PowerToysSettings::HotkeyObject editorHotkey = PowerToysSettings::HotkeyObject::from_settings(true, false, false, true, VK_OEM_3);
|
|
std::wstring excludedApps = L"";
|
|
std::vector<std::wstring> excludedAppsArray;
|
|
};
|
|
|
|
interface __declspec(uuid("{BA4E77C4-6F44-4C5D-93D3-CBDE880495C2}")) IFancyZonesSettings : public IUnknown
|
|
{
|
|
IFACEMETHOD_(void, SetCallback)(interface IFancyZonesCallback* callback) = 0;
|
|
IFACEMETHOD_(void, ResetCallback)() = 0;
|
|
IFACEMETHOD_(bool, GetConfig)(_Out_ PWSTR buffer, _Out_ int *buffer_size) = 0;
|
|
IFACEMETHOD_(void, SetConfig)(PCWSTR serializedPowerToysSettings) = 0;
|
|
IFACEMETHOD_(void, ReloadSettings)() = 0;
|
|
IFACEMETHOD_(const Settings*, GetSettings)() const = 0;
|
|
};
|
|
|
|
winrt::com_ptr<IFancyZonesSettings> MakeFancyZonesSettings(HINSTANCE hinstance, PCWSTR name, PCWSTR key) noexcept;
|