Table of Contents

Interface IWindowSector

Namespace
Whim
Assembly
Whim.dll
The sector containing windows.
public interface IWindowSector

Properties

IsLeftMouseButtonDown

Whether the user currently has the left mouse button down. Used for window movement.
bool IsLeftMouseButtonDown { get; }

Property Value

bool

IsMovingWindow

Whether a window is currently moving.
bool IsMovingWindow { get; }

Property Value

bool

StartupWindows

The windows which were open when Whim started.
ImmutableHashSet<HWND> StartupWindows { get; }

Property Value

ImmutableHashSet<HWND>

Windows

All the windows currently tracked by Whim.
ImmutableDictionary<HWND, IWindow> Windows { get; }

Property Value

ImmutableDictionary<HWND, IWindow>