mirror of
https://github.com/microsoft/PowerToys.git
synced 2024-12-26 02:28:17 +08:00
59 lines
1.4 KiB
C++
59 lines
1.4 KiB
C++
#pragma once
|
|
|
|
#include <map>
|
|
#include <vector>
|
|
#include <wil\resource.h>
|
|
#include <winrt/base.h>
|
|
#include <d2d1.h>
|
|
#include <dwrite.h>
|
|
|
|
#include "util.h"
|
|
#include "Zone.h"
|
|
#include "ZoneSet.h"
|
|
|
|
class ZoneWindowDrawing
|
|
{
|
|
struct DrawableRect
|
|
{
|
|
D2D1_RECT_F rect;
|
|
D2D1_COLOR_F borderColor;
|
|
D2D1_COLOR_F fillColor;
|
|
size_t id;
|
|
};
|
|
|
|
HWND m_window;
|
|
RECT m_clientRect;
|
|
// winrt::com_ptr<IZoneWindowHost> m_host;
|
|
ID2D1HwndRenderTarget* m_renderTarget;
|
|
std::optional<std::chrono::steady_clock::time_point> m_tAnimationStart;
|
|
unsigned m_animationDuration;
|
|
|
|
std::mutex m_mutex;
|
|
std::vector<DrawableRect> m_sceneRects;
|
|
|
|
float GetAnimationAlpha();
|
|
static ID2D1Factory* GetD2DFactory();
|
|
static IDWriteFactory* GetWriteFactory();
|
|
static D2D1_COLOR_F ConvertColor(COLORREF color);
|
|
static D2D1_RECT_F ConvertRect(RECT rect);
|
|
void Render();
|
|
void StopRendering();
|
|
|
|
std::atomic<bool> m_shouldRender;
|
|
std::atomic<bool> m_abortThread;
|
|
std::atomic<bool> m_lowLatencyLock;
|
|
std::condition_variable m_cv;
|
|
std::thread m_renderThread;
|
|
|
|
public:
|
|
|
|
~ZoneWindowDrawing();
|
|
ZoneWindowDrawing(HWND window);
|
|
void Hide();
|
|
void Show(unsigned animationMillis);
|
|
void ForceRender();
|
|
void DrawActiveZoneSet(const IZoneSet::ZonesMap& zones,
|
|
const std::vector<size_t>& highlightZones,
|
|
winrt::com_ptr<IZoneWindowHost> host);
|
|
};
|