mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-20 06:47:56 +08:00
d85c3f8cc9
* [FancyZones] Clean up (#11893) * [FancyZones] Virtual desktop utils refactoring (#11925) * [FancyZones] IFancyZonesCallback refactoring (#11932) * [FancyZones] IZoneWindowHost refactoring (#12091) * [FancyZones] Rename ZoneWindow -> WorkArea (#12223) * [FancyZones] Clean up mutexes (#12228)
40 lines
1.1 KiB
C++
40 lines
1.1 KiB
C++
#pragma once
|
|
|
|
struct Settings;
|
|
interface IZoneSet;
|
|
|
|
class Trace
|
|
{
|
|
public:
|
|
static void RegisterProvider() noexcept;
|
|
static void UnregisterProvider() noexcept;
|
|
|
|
class FancyZones
|
|
{
|
|
public:
|
|
static void EnableFancyZones(bool enabled) noexcept;
|
|
static void OnKeyDown(DWORD vkCode, bool win, bool control, bool inMoveSize) noexcept;
|
|
static void DataChanged() noexcept;
|
|
static void EditorLaunched(int value) noexcept;
|
|
static void Error(const DWORD errorCode, std::wstring errorMessage, std::wstring methodName) noexcept;
|
|
static void QuickLayoutSwitched(bool shortcutUsed) noexcept;
|
|
};
|
|
|
|
static void SettingsTelemetry(const Settings& settings) noexcept;
|
|
static void VirtualDesktopChanged() noexcept;
|
|
|
|
class WorkArea
|
|
{
|
|
public:
|
|
enum class InputMode
|
|
{
|
|
Keyboard,
|
|
Mouse
|
|
};
|
|
|
|
static void KeyUp(WPARAM wparam) noexcept;
|
|
static void MoveSizeEnd(_In_opt_ winrt::com_ptr<IZoneSet> activeSet) noexcept;
|
|
static void CycleActiveZoneSet(_In_opt_ winrt::com_ptr<IZoneSet> activeSet, InputMode mode) noexcept;
|
|
};
|
|
};
|