mirror of
https://github.com/microsoft/PowerToys.git
synced 2025-12-15 19:27:56 +01:00
[FancyZones] FancyZones draw layout test tool (#6358)
* FancyZones draw layout test tool * Fix formatting in resource file
This commit is contained in:
456
tools/FancyZones_DrawLayoutTest/FancyZones_DrawLayoutTest.cpp
Normal file
456
tools/FancyZones_DrawLayoutTest/FancyZones_DrawLayoutTest.cpp
Normal file
@@ -0,0 +1,456 @@
|
|||||||
|
#include "framework.h"
|
||||||
|
#include "FancyZones_DrawLayoutTest.h"
|
||||||
|
|
||||||
|
#include <Uxtheme.h>
|
||||||
|
#include <objidl.h>
|
||||||
|
#include <gdiplus.h>
|
||||||
|
#include <Dwmapi.h>
|
||||||
|
#include <shellscalingapi.h>
|
||||||
|
|
||||||
|
#include <vector>
|
||||||
|
#include <thread>
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
using namespace Gdiplus;
|
||||||
|
|
||||||
|
#pragma comment (lib,"Gdiplus.lib")
|
||||||
|
#pragma comment (lib,"UXTheme.lib")
|
||||||
|
#pragma comment (lib,"Dwmapi.lib")
|
||||||
|
#pragma comment (lib,"Shcore.lib")
|
||||||
|
|
||||||
|
constexpr int ZONE_COUNT = 4;
|
||||||
|
constexpr int ANIMATION_TIME = 200; // milliseconds
|
||||||
|
constexpr int DISPLAY_REFRESH_TIME = 10; // milliseconds
|
||||||
|
constexpr DWORD Q_KEY_CODE = 0x51;
|
||||||
|
constexpr DWORD W_KEY_CODE = 0x57;
|
||||||
|
|
||||||
|
HWND mainWindow;
|
||||||
|
HHOOK keyboardHook;
|
||||||
|
bool showZoneLayout = false;
|
||||||
|
|
||||||
|
LRESULT CALLBACK WndProc(HWND, UINT, WPARAM, LPARAM);
|
||||||
|
|
||||||
|
std::vector<RECT> zones{};
|
||||||
|
std::vector<bool> highlighted{};
|
||||||
|
|
||||||
|
inline const int RectWidth(const RECT& rect)
|
||||||
|
{
|
||||||
|
return rect.right - rect.left;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline const int RectHeight(const RECT& rect)
|
||||||
|
{
|
||||||
|
return rect.bottom - rect.top;
|
||||||
|
}
|
||||||
|
|
||||||
|
std::vector<RECT> BuildColumnZoneLayout(int zoneCount, const RECT& workArea)
|
||||||
|
{
|
||||||
|
// Builds column layout with specified number of zones (columns).
|
||||||
|
int zoneWidth = RectWidth(workArea) / zoneCount;
|
||||||
|
int zoneHeight = RectHeight(workArea);
|
||||||
|
std::vector<RECT> zones(zoneCount);
|
||||||
|
for (int i = 0; i < zoneCount; ++i)
|
||||||
|
{
|
||||||
|
int left = workArea.left + i * zoneWidth;
|
||||||
|
int top = workArea.top;
|
||||||
|
int right = left + zoneWidth;
|
||||||
|
int bottom = top + zoneHeight;
|
||||||
|
|
||||||
|
zones[i] = { left, top, right, bottom };
|
||||||
|
}
|
||||||
|
return zones;
|
||||||
|
}
|
||||||
|
|
||||||
|
int GetHighlightedZoneIdx(const std::vector<RECT>& zones, const POINT& cursorPosition)
|
||||||
|
{
|
||||||
|
// Determine which zone should be highlighted based on cursor position.
|
||||||
|
for (size_t i = 0; i < zones.size(); ++i)
|
||||||
|
{
|
||||||
|
if (cursorPosition.x >= zones[i].left && cursorPosition.x < zones[i].right)
|
||||||
|
{
|
||||||
|
return i;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
void ShowZoneWindow()
|
||||||
|
{
|
||||||
|
// InvalidateRect will esentially send WM_PAINT to main window.
|
||||||
|
UINT flags = SWP_NOSIZE | SWP_NOMOVE | SWP_NOACTIVATE;
|
||||||
|
SetWindowPos(mainWindow, nullptr, 0, 0, 0, 0, flags);
|
||||||
|
|
||||||
|
std::thread{ [=]() {
|
||||||
|
AnimateWindow(mainWindow, ANIMATION_TIME, AW_BLEND);
|
||||||
|
InvalidateRect(mainWindow, nullptr, true);
|
||||||
|
} }.detach();
|
||||||
|
}
|
||||||
|
|
||||||
|
void HideZoneWindow()
|
||||||
|
{
|
||||||
|
highlighted = std::vector<bool>(ZONE_COUNT, false);
|
||||||
|
ShowWindow(mainWindow, SW_HIDE);
|
||||||
|
}
|
||||||
|
|
||||||
|
void RefreshMainWindow()
|
||||||
|
{
|
||||||
|
while (1)
|
||||||
|
{
|
||||||
|
std::this_thread::sleep_for(std::chrono::milliseconds(DISPLAY_REFRESH_TIME));
|
||||||
|
|
||||||
|
POINT cursorPosition{};
|
||||||
|
if (GetCursorPos(&cursorPosition))
|
||||||
|
{
|
||||||
|
if (showZoneLayout)
|
||||||
|
{
|
||||||
|
int idx = GetHighlightedZoneIdx(zones, cursorPosition);
|
||||||
|
if (idx != -1)
|
||||||
|
{
|
||||||
|
if (highlighted[idx]) {
|
||||||
|
// Same zone is active as in previous check, skip invalidating rect.
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
highlighted = std::vector<bool>(ZONE_COUNT, false);
|
||||||
|
highlighted[idx] = true;
|
||||||
|
|
||||||
|
ShowZoneWindow();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
LRESULT CALLBACK LowLevelKeyboardProc(int nCode, WPARAM wParam, LPARAM lParam)
|
||||||
|
{
|
||||||
|
if (nCode == HC_ACTION && wParam == WM_KEYDOWN)
|
||||||
|
{
|
||||||
|
PKBDLLHOOKSTRUCT info = reinterpret_cast<KBDLLHOOKSTRUCT*>(lParam);
|
||||||
|
if (info->vkCode == Q_KEY_CODE)
|
||||||
|
{
|
||||||
|
PostQuitMessage(0);
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
else if (info->vkCode == W_KEY_CODE)
|
||||||
|
{
|
||||||
|
// Toggle zone layout display.
|
||||||
|
showZoneLayout = !showZoneLayout;
|
||||||
|
if (showZoneLayout)
|
||||||
|
{
|
||||||
|
ShowZoneWindow();
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
HideZoneWindow();
|
||||||
|
}
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
return CallNextHookEx(nullptr, nCode, wParam, lParam);
|
||||||
|
}
|
||||||
|
|
||||||
|
void StartLowLevelKeyboardHook()
|
||||||
|
{
|
||||||
|
keyboardHook = SetWindowsHookEx(WH_KEYBOARD_LL, LowLevelKeyboardProc, GetModuleHandle(nullptr), 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
void StopLowLevelKeyboardHook()
|
||||||
|
{
|
||||||
|
if (keyboardHook)
|
||||||
|
{
|
||||||
|
UnhookWindowsHookEx(keyboardHook);
|
||||||
|
keyboardHook = nullptr;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
inline void MakeWindowTransparent(HWND window)
|
||||||
|
{
|
||||||
|
int const pos = -GetSystemMetrics(SM_CXVIRTUALSCREEN) - 8;
|
||||||
|
if (HRGN hrgn{ CreateRectRgn(pos, 0, (pos + 1), 1) })
|
||||||
|
{
|
||||||
|
DWM_BLURBEHIND bh = { DWM_BB_ENABLE | DWM_BB_BLURREGION, TRUE, hrgn, FALSE };
|
||||||
|
DwmEnableBlurBehindWindow(window, &bh);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
void RegisterClass(HINSTANCE hInstance)
|
||||||
|
{
|
||||||
|
WNDCLASSEXW wcex{};
|
||||||
|
|
||||||
|
wcex.cbSize = sizeof(WNDCLASSEX);
|
||||||
|
wcex.lpfnWndProc = WndProc;
|
||||||
|
wcex.hInstance = hInstance;
|
||||||
|
wcex.lpszClassName = L"DrawRectangle_Test";
|
||||||
|
wcex.hCursor = LoadCursor(nullptr, IDC_ARROW);
|
||||||
|
|
||||||
|
RegisterClassExW(&wcex);
|
||||||
|
}
|
||||||
|
|
||||||
|
bool InitInstance(HINSTANCE hInstance, int nCmdShow)
|
||||||
|
{
|
||||||
|
MONITORINFO mi{};
|
||||||
|
mi.cbSize = sizeof(mi);
|
||||||
|
if (!GetMonitorInfo(MonitorFromWindow(nullptr, MONITOR_DEFAULTTOPRIMARY), &mi)) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
mainWindow = CreateWindowExW(WS_EX_TOOLWINDOW,
|
||||||
|
L"DrawRectangle_Test",
|
||||||
|
L"",
|
||||||
|
WS_POPUP,
|
||||||
|
mi.rcWork.left,
|
||||||
|
mi.rcWork.top,
|
||||||
|
RectWidth(mi.rcWork),
|
||||||
|
RectHeight(mi.rcWork),
|
||||||
|
nullptr,
|
||||||
|
nullptr,
|
||||||
|
hInstance,
|
||||||
|
nullptr);
|
||||||
|
|
||||||
|
if (mainWindow)
|
||||||
|
{
|
||||||
|
MakeWindowTransparent(mainWindow);
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
|
int APIENTRY wWinMain(_In_ HINSTANCE hInstance,
|
||||||
|
_In_opt_ HINSTANCE hPrevInstance,
|
||||||
|
_In_ LPWSTR lpCmdLine,
|
||||||
|
_In_ int nCmdShow)
|
||||||
|
{
|
||||||
|
UNREFERENCED_PARAMETER(hPrevInstance);
|
||||||
|
UNREFERENCED_PARAMETER(lpCmdLine);
|
||||||
|
|
||||||
|
GdiplusStartupInput gdiplusStartupInput;
|
||||||
|
ULONG_PTR gdiplusToken;
|
||||||
|
GdiplusStartup(&gdiplusToken, &gdiplusStartupInput, nullptr);
|
||||||
|
|
||||||
|
SetProcessDpiAwareness(PROCESS_DPI_UNAWARE);
|
||||||
|
StartLowLevelKeyboardHook();
|
||||||
|
|
||||||
|
RegisterClass(hInstance);
|
||||||
|
|
||||||
|
if (!InitInstance(hInstance, nCmdShow))
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
RECT clientRect{};
|
||||||
|
GetClientRect(mainWindow, &clientRect);
|
||||||
|
zones = BuildColumnZoneLayout(ZONE_COUNT, clientRect);
|
||||||
|
highlighted = std::vector<bool>(ZONE_COUNT, false);
|
||||||
|
|
||||||
|
// Invoke main window re-drawing from separate thread (based on changes in cursor position).
|
||||||
|
std::thread refreshThread = std::thread(RefreshMainWindow);
|
||||||
|
refreshThread.detach();
|
||||||
|
|
||||||
|
|
||||||
|
HACCEL hAccelTable = LoadAccelerators(hInstance, MAKEINTRESOURCE(IDC_FANCYZONESDRAWLAYOUTTEST));
|
||||||
|
MSG msg{};
|
||||||
|
while (GetMessage(&msg, nullptr, 0, 0))
|
||||||
|
{
|
||||||
|
if (!TranslateAccelerator(msg.hwnd, hAccelTable, &msg))
|
||||||
|
{
|
||||||
|
TranslateMessage(&msg);
|
||||||
|
DispatchMessage(&msg);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
StopLowLevelKeyboardHook();
|
||||||
|
GdiplusShutdown(gdiplusToken);
|
||||||
|
|
||||||
|
return (int)msg.wParam;
|
||||||
|
}
|
||||||
|
|
||||||
|
struct ColorSetting
|
||||||
|
{
|
||||||
|
BYTE fillAlpha{};
|
||||||
|
COLORREF fill{};
|
||||||
|
BYTE borderAlpha{};
|
||||||
|
COLORREF border{};
|
||||||
|
int thickness{};
|
||||||
|
};
|
||||||
|
|
||||||
|
inline void InitRGB(_Out_ RGBQUAD* quad, BYTE alpha, COLORREF color)
|
||||||
|
{
|
||||||
|
ZeroMemory(quad, sizeof(*quad));
|
||||||
|
quad->rgbReserved = alpha;
|
||||||
|
quad->rgbRed = GetRValue(color) * alpha / 255;
|
||||||
|
quad->rgbGreen = GetGValue(color) * alpha / 255;
|
||||||
|
quad->rgbBlue = GetBValue(color) * alpha / 255;
|
||||||
|
}
|
||||||
|
|
||||||
|
inline void FillRectARGB(HDC hdc, const RECT& prcFill, BYTE alpha, COLORREF color, bool blendAlpha)
|
||||||
|
{
|
||||||
|
BITMAPINFO bi;
|
||||||
|
ZeroMemory(&bi, sizeof(bi));
|
||||||
|
bi.bmiHeader.biSize = sizeof(BITMAPINFOHEADER);
|
||||||
|
bi.bmiHeader.biWidth = 1;
|
||||||
|
bi.bmiHeader.biHeight = 1;
|
||||||
|
bi.bmiHeader.biPlanes = 1;
|
||||||
|
bi.bmiHeader.biBitCount = 32;
|
||||||
|
bi.bmiHeader.biCompression = BI_RGB;
|
||||||
|
|
||||||
|
RECT fillRect;
|
||||||
|
CopyRect(&fillRect, &prcFill);
|
||||||
|
|
||||||
|
RGBQUAD bitmapBits;
|
||||||
|
InitRGB(&bitmapBits, alpha, color);
|
||||||
|
StretchDIBits(
|
||||||
|
hdc,
|
||||||
|
fillRect.left,
|
||||||
|
fillRect.top,
|
||||||
|
fillRect.right - fillRect.left,
|
||||||
|
fillRect.bottom - fillRect.top,
|
||||||
|
0,
|
||||||
|
0,
|
||||||
|
1,
|
||||||
|
1,
|
||||||
|
&bitmapBits,
|
||||||
|
&bi,
|
||||||
|
DIB_RGB_COLORS,
|
||||||
|
SRCCOPY);
|
||||||
|
}
|
||||||
|
|
||||||
|
void DrawBackdrop(HDC& hdc, const RECT& clientRect)
|
||||||
|
{
|
||||||
|
FillRectARGB(hdc, clientRect, 0, RGB(0, 0, 0), false);
|
||||||
|
}
|
||||||
|
|
||||||
|
void DrawIndex(HDC hdc, const RECT& rect, size_t index)
|
||||||
|
{
|
||||||
|
Gdiplus::Graphics g(hdc);
|
||||||
|
|
||||||
|
Gdiplus::FontFamily fontFamily(L"Segoe ui");
|
||||||
|
Gdiplus::Font font(&fontFamily, 80, Gdiplus::FontStyleRegular, Gdiplus::UnitPixel);
|
||||||
|
Gdiplus::SolidBrush solidBrush(Gdiplus::Color(255, 0, 0, 0));
|
||||||
|
|
||||||
|
std::wstring text = std::to_wstring(index);
|
||||||
|
|
||||||
|
g.SetTextRenderingHint(Gdiplus::TextRenderingHintAntiAlias);
|
||||||
|
Gdiplus::StringFormat stringFormat = new Gdiplus::StringFormat();
|
||||||
|
stringFormat.SetAlignment(Gdiplus::StringAlignmentCenter);
|
||||||
|
stringFormat.SetLineAlignment(Gdiplus::StringAlignmentCenter);
|
||||||
|
|
||||||
|
Gdiplus::RectF gdiRect(
|
||||||
|
static_cast<Gdiplus::REAL>(rect.left),
|
||||||
|
static_cast<Gdiplus::REAL>(rect.top),
|
||||||
|
static_cast<Gdiplus::REAL>(RectWidth(rect)),
|
||||||
|
static_cast<Gdiplus::REAL>(RectHeight(rect)));
|
||||||
|
|
||||||
|
g.DrawString(text.c_str(), -1, &font, gdiRect, &stringFormat, &solidBrush);
|
||||||
|
}
|
||||||
|
|
||||||
|
void DrawZone(HDC hdc, const ColorSetting& colorSetting, const RECT& rect, size_t index)
|
||||||
|
{
|
||||||
|
Gdiplus::Graphics g(hdc);
|
||||||
|
Gdiplus::Color fillColor(colorSetting.fillAlpha, GetRValue(colorSetting.fill), GetGValue(colorSetting.fill), GetBValue(colorSetting.fill));
|
||||||
|
Gdiplus::Color borderColor(colorSetting.borderAlpha, GetRValue(colorSetting.border), GetGValue(colorSetting.border), GetBValue(colorSetting.border));
|
||||||
|
|
||||||
|
Gdiplus::Rect rectangle(rect.left, rect.top, RectWidth(rect), RectHeight(rect));
|
||||||
|
|
||||||
|
Gdiplus::Pen pen(borderColor, static_cast<Gdiplus::REAL>(colorSetting.thickness));
|
||||||
|
g.FillRectangle(new Gdiplus::SolidBrush(fillColor), rectangle);
|
||||||
|
g.DrawRectangle(&pen, rectangle);
|
||||||
|
|
||||||
|
DrawIndex(hdc, rect, index);
|
||||||
|
}
|
||||||
|
|
||||||
|
inline BYTE OpacitySettingToAlpha(int opacity)
|
||||||
|
{
|
||||||
|
return static_cast<BYTE>(opacity * 2.55);
|
||||||
|
}
|
||||||
|
|
||||||
|
COLORREF ParseColor(const std::wstring& zoneColor)
|
||||||
|
{
|
||||||
|
// Skip the leading # and convert to long
|
||||||
|
const auto color = zoneColor;
|
||||||
|
const auto tmp = std::stol(color.substr(1), nullptr, 16);
|
||||||
|
const auto nR = (tmp & 0xFF0000) >> 16;
|
||||||
|
const auto nG = (tmp & 0xFF00) >> 8;
|
||||||
|
const auto nB = (tmp & 0xFF);
|
||||||
|
return RGB(nR, nG, nB);
|
||||||
|
}
|
||||||
|
|
||||||
|
static int highlightedIdx = -1;
|
||||||
|
|
||||||
|
void OnPaint(HDC hdc)
|
||||||
|
{
|
||||||
|
int zoneOpacity = 50;
|
||||||
|
std::wstring zoneColor = L"#0078D7";
|
||||||
|
std::wstring zoneBorderColor = L"#FFFFFF";
|
||||||
|
std::wstring zoneHighlightColor = L"#F5FCFF";
|
||||||
|
|
||||||
|
ColorSetting color{ OpacitySettingToAlpha(zoneOpacity),
|
||||||
|
ParseColor(zoneColor),
|
||||||
|
255,
|
||||||
|
ParseColor(zoneBorderColor),
|
||||||
|
-2 };
|
||||||
|
|
||||||
|
ColorSetting highlight{ OpacitySettingToAlpha(zoneOpacity),
|
||||||
|
ParseColor(zoneHighlightColor),
|
||||||
|
255,
|
||||||
|
ParseColor(zoneBorderColor),
|
||||||
|
-2 };
|
||||||
|
|
||||||
|
HMONITOR monitor = MonitorFromWindow(nullptr, MONITOR_DEFAULTTOPRIMARY);
|
||||||
|
MONITORINFOEX mi;
|
||||||
|
mi.cbSize = sizeof(mi);
|
||||||
|
GetMonitorInfo(monitor, &mi);
|
||||||
|
|
||||||
|
HDC hdcMem{ nullptr };
|
||||||
|
HPAINTBUFFER bufferedPaint = BeginBufferedPaint(hdc, &mi.rcWork, BPBF_TOPDOWNDIB, nullptr, &hdcMem);
|
||||||
|
if (bufferedPaint)
|
||||||
|
{
|
||||||
|
DrawBackdrop(hdcMem, mi.rcWork);
|
||||||
|
for (size_t i = 0; i < zones.size(); ++i)
|
||||||
|
{
|
||||||
|
if (highlighted[i])
|
||||||
|
{
|
||||||
|
DrawZone(hdcMem, color, zones[i], i);
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
DrawZone(hdcMem, highlight, zones[i], i);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
EndBufferedPaint(bufferedPaint, TRUE);
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
LRESULT CALLBACK WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam)
|
||||||
|
{
|
||||||
|
switch (message)
|
||||||
|
{
|
||||||
|
case WM_NCDESTROY:
|
||||||
|
{
|
||||||
|
DefWindowProc(mainWindow, message, wParam, lParam);
|
||||||
|
SetWindowLongPtr(mainWindow, GWLP_USERDATA, 0);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
|
||||||
|
case WM_ERASEBKGND:
|
||||||
|
return 1;
|
||||||
|
|
||||||
|
case WM_PRINTCLIENT:
|
||||||
|
case WM_PAINT:
|
||||||
|
{
|
||||||
|
PAINTSTRUCT ps;
|
||||||
|
HDC hdc = BeginPaint(hWnd, &ps);
|
||||||
|
OnPaint(hdc);
|
||||||
|
EndPaint(hWnd, &ps);
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
case WM_DESTROY:
|
||||||
|
PostQuitMessage(0);
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
return DefWindowProc(hWnd, message, wParam, lParam);
|
||||||
|
}
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
@@ -0,0 +1,3 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#include "Resource.h"
|
||||||
BIN
tools/FancyZones_DrawLayoutTest/FancyZones_DrawLayoutTest.rc
Normal file
BIN
tools/FancyZones_DrawLayoutTest/FancyZones_DrawLayoutTest.rc
Normal file
Binary file not shown.
@@ -0,0 +1,31 @@
|
|||||||
|
|
||||||
|
Microsoft Visual Studio Solution File, Format Version 12.00
|
||||||
|
# Visual Studio Version 16
|
||||||
|
VisualStudioVersion = 16.0.30413.136
|
||||||
|
MinimumVisualStudioVersion = 10.0.40219.1
|
||||||
|
Project("{8BC9CEB8-8B4A-11D0-8D11-00A0C91BC942}") = "FancyZones_DrawLayoutTest", "FancyZones_DrawLayoutTest.vcxproj", "{AB0F7153-208E-433D-A14F-311E09FDC0A0}"
|
||||||
|
EndProject
|
||||||
|
Global
|
||||||
|
GlobalSection(SolutionConfigurationPlatforms) = preSolution
|
||||||
|
Debug|x64 = Debug|x64
|
||||||
|
Debug|x86 = Debug|x86
|
||||||
|
Release|x64 = Release|x64
|
||||||
|
Release|x86 = Release|x86
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ProjectConfigurationPlatforms) = postSolution
|
||||||
|
{AB0F7153-208E-433D-A14F-311E09FDC0A0}.Debug|x64.ActiveCfg = Debug|x64
|
||||||
|
{AB0F7153-208E-433D-A14F-311E09FDC0A0}.Debug|x64.Build.0 = Debug|x64
|
||||||
|
{AB0F7153-208E-433D-A14F-311E09FDC0A0}.Debug|x86.ActiveCfg = Debug|Win32
|
||||||
|
{AB0F7153-208E-433D-A14F-311E09FDC0A0}.Debug|x86.Build.0 = Debug|Win32
|
||||||
|
{AB0F7153-208E-433D-A14F-311E09FDC0A0}.Release|x64.ActiveCfg = Release|x64
|
||||||
|
{AB0F7153-208E-433D-A14F-311E09FDC0A0}.Release|x64.Build.0 = Release|x64
|
||||||
|
{AB0F7153-208E-433D-A14F-311E09FDC0A0}.Release|x86.ActiveCfg = Release|Win32
|
||||||
|
{AB0F7153-208E-433D-A14F-311E09FDC0A0}.Release|x86.Build.0 = Release|Win32
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(SolutionProperties) = preSolution
|
||||||
|
HideSolutionNode = FALSE
|
||||||
|
EndGlobalSection
|
||||||
|
GlobalSection(ExtensibilityGlobals) = postSolution
|
||||||
|
SolutionGuid = {B8997617-5BA5-4762-9DD0-E133E4138D08}
|
||||||
|
EndGlobalSection
|
||||||
|
EndGlobal
|
||||||
@@ -0,0 +1,155 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project DefaultTargets="Build" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup Label="ProjectConfigurations">
|
||||||
|
<ProjectConfiguration Include="Debug|Win32">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|Win32">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>Win32</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Debug|x64">
|
||||||
|
<Configuration>Debug</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
<ProjectConfiguration Include="Release|x64">
|
||||||
|
<Configuration>Release</Configuration>
|
||||||
|
<Platform>x64</Platform>
|
||||||
|
</ProjectConfiguration>
|
||||||
|
</ItemGroup>
|
||||||
|
<PropertyGroup Label="Globals">
|
||||||
|
<VCProjectVersion>16.0</VCProjectVersion>
|
||||||
|
<Keyword>Win32Proj</Keyword>
|
||||||
|
<ProjectGuid>{ab0f7153-208e-433d-a14f-311e09fdc0a0}</ProjectGuid>
|
||||||
|
<RootNamespace>FancyZonesDrawLayoutTest</RootNamespace>
|
||||||
|
<WindowsTargetPlatformVersion>10.0</WindowsTargetPlatformVersion>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.Default.props" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>true</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'" Label="Configuration">
|
||||||
|
<ConfigurationType>Application</ConfigurationType>
|
||||||
|
<UseDebugLibraries>false</UseDebugLibraries>
|
||||||
|
<PlatformToolset>v142</PlatformToolset>
|
||||||
|
<WholeProgramOptimization>true</WholeProgramOptimization>
|
||||||
|
<CharacterSet>Unicode</CharacterSet>
|
||||||
|
</PropertyGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.props" />
|
||||||
|
<ImportGroup Label="ExtensionSettings">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="Shared">
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<ImportGroup Label="PropertySheets" Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<Import Project="$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props" Condition="exists('$(UserRootDir)\Microsoft.Cpp.$(Platform).user.props')" Label="LocalAppDataPlatform" />
|
||||||
|
</ImportGroup>
|
||||||
|
<PropertyGroup Label="UserMacros" />
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<LinkIncremental>true</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<LinkIncremental>false</LinkIncremental>
|
||||||
|
</PropertyGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|Win32'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>WIN32;NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Debug|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>_DEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemDefinitionGroup Condition="'$(Configuration)|$(Platform)'=='Release|x64'">
|
||||||
|
<ClCompile>
|
||||||
|
<WarningLevel>Level3</WarningLevel>
|
||||||
|
<FunctionLevelLinking>true</FunctionLevelLinking>
|
||||||
|
<IntrinsicFunctions>true</IntrinsicFunctions>
|
||||||
|
<SDLCheck>true</SDLCheck>
|
||||||
|
<PreprocessorDefinitions>NDEBUG;_WINDOWS;%(PreprocessorDefinitions)</PreprocessorDefinitions>
|
||||||
|
<ConformanceMode>true</ConformanceMode>
|
||||||
|
</ClCompile>
|
||||||
|
<Link>
|
||||||
|
<SubSystem>Windows</SubSystem>
|
||||||
|
<EnableCOMDATFolding>true</EnableCOMDATFolding>
|
||||||
|
<OptimizeReferences>true</OptimizeReferences>
|
||||||
|
<GenerateDebugInformation>true</GenerateDebugInformation>
|
||||||
|
</Link>
|
||||||
|
</ItemDefinitionGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="FancyZones_DrawLayoutTest.h" />
|
||||||
|
<ClInclude Include="framework.h" />
|
||||||
|
<ClInclude Include="Resource.h" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="FancyZones_DrawLayoutTest.cpp" />
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ResourceCompile Include="FancyZones_DrawLayoutTest.rc" />
|
||||||
|
</ItemGroup>
|
||||||
|
<Import Project="$(VCTargetsPath)\Microsoft.Cpp.targets" />
|
||||||
|
<ImportGroup Label="ExtensionTargets">
|
||||||
|
</ImportGroup>
|
||||||
|
</Project>
|
||||||
@@ -0,0 +1,38 @@
|
|||||||
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
|
<Project ToolsVersion="4.0" xmlns="http://schemas.microsoft.com/developer/msbuild/2003">
|
||||||
|
<ItemGroup>
|
||||||
|
<Filter Include="Source Files">
|
||||||
|
<UniqueIdentifier>{4FC737F1-C7A5-4376-A066-2A32D752A2FF}</UniqueIdentifier>
|
||||||
|
<Extensions>cpp;c;cc;cxx;c++;cppm;ixx;def;odl;idl;hpj;bat;asm;asmx</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Header Files">
|
||||||
|
<UniqueIdentifier>{93995380-89BD-4b04-88EB-625FBE52EBFB}</UniqueIdentifier>
|
||||||
|
<Extensions>h;hh;hpp;hxx;h++;hm;inl;inc;ipp;xsd</Extensions>
|
||||||
|
</Filter>
|
||||||
|
<Filter Include="Resource Files">
|
||||||
|
<UniqueIdentifier>{67DA6AB6-F800-4c08-8B7A-83BB121AAD01}</UniqueIdentifier>
|
||||||
|
<Extensions>rc;ico;cur;bmp;dlg;rc2;rct;bin;rgs;gif;jpg;jpeg;jpe;resx;tiff;tif;png;wav;mfcribbon-ms</Extensions>
|
||||||
|
</Filter>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClInclude Include="framework.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="Resource.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
<ClInclude Include="FancyZones_DrawLayoutTest.h">
|
||||||
|
<Filter>Header Files</Filter>
|
||||||
|
</ClInclude>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ClCompile Include="FancyZones_DrawLayoutTest.cpp">
|
||||||
|
<Filter>Source Files</Filter>
|
||||||
|
</ClCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
<ItemGroup>
|
||||||
|
<ResourceCompile Include="FancyZones_DrawLayoutTest.rc">
|
||||||
|
<Filter>Resource Files</Filter>
|
||||||
|
</ResourceCompile>
|
||||||
|
</ItemGroup>
|
||||||
|
</Project>
|
||||||
7
tools/FancyZones_DrawLayoutTest/README.md
Normal file
7
tools/FancyZones_DrawLayoutTest/README.md
Normal file
@@ -0,0 +1,7 @@
|
|||||||
|
## Testing tool for drawing zone layout
|
||||||
|
|
||||||
|
This test tool is created in order to debug issues related to the drawing of zone layout on screen.
|
||||||
|
|
||||||
|
Currently, only column layout is supported with modifiable number of zones. Pressing **w** key toggles zone appearance on primary screen (multi monitor support not yet in place). Pressing **q** key exits application.
|
||||||
|
|
||||||
|
Application is DPI unaware which means that application does not scale for DPI changes and it always assumes to have a scale factor of 100% (96 DPI). Scaling will be automatically performed by the system.
|
||||||
3
tools/FancyZones_DrawLayoutTest/Resource.h
Normal file
3
tools/FancyZones_DrawLayoutTest/Resource.h
Normal file
@@ -0,0 +1,3 @@
|
|||||||
|
#define IDS_APP_TITLE 101
|
||||||
|
#define IDM_ABOUT 102
|
||||||
|
#define IDC_FANCYZONESDRAWLAYOUTTEST 103
|
||||||
5
tools/FancyZones_DrawLayoutTest/framework.h
Normal file
5
tools/FancyZones_DrawLayoutTest/framework.h
Normal file
@@ -0,0 +1,5 @@
|
|||||||
|
#pragma once
|
||||||
|
|
||||||
|
#define WIN32_LEAN_AND_MEAN // Exclude rarely-used stuff from Windows headers
|
||||||
|
// Windows Header Files
|
||||||
|
#include <windows.h>
|
||||||
Reference in New Issue
Block a user