mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-26 10:48:23 +08:00
32 lines
886 B
C
32 lines
886 B
C
|
#pragma once
|
||
|
|
||
|
#include <vector>
|
||
|
#include <wil\resource.h>
|
||
|
#include <winrt/base.h>
|
||
|
|
||
|
#include "util.h"
|
||
|
#include "Zone.h"
|
||
|
|
||
|
namespace ZoneWindowDrawing
|
||
|
{
|
||
|
struct ColorSetting
|
||
|
{
|
||
|
BYTE fillAlpha{};
|
||
|
COLORREF fill{};
|
||
|
BYTE borderAlpha{};
|
||
|
COLORREF border{};
|
||
|
int thickness{};
|
||
|
};
|
||
|
|
||
|
void DrawBackdrop(wil::unique_hdc& hdc, RECT const& clientRect) noexcept;
|
||
|
void DrawActiveZoneSet(wil::unique_hdc& hdc,
|
||
|
COLORREF zoneColor,
|
||
|
COLORREF zoneBorderColor,
|
||
|
COLORREF highlightColor,
|
||
|
int zoneOpacity,
|
||
|
const std::vector<winrt::com_ptr<IZone>>& zones,
|
||
|
const std::vector<size_t>& highlightZones,
|
||
|
bool flashMode,
|
||
|
bool drawHints) noexcept;
|
||
|
}
|