mirror of
https://github.com/microsoft/PowerToys.git
synced 2026-04-07 11:46:30 +02:00
* popup windows check
* use minimize maximize buttons check
* update test utils
* added tests
* define types for easier testing
* changed checks order
* remove option check
* upd test
* remove FZ popup option
* max min buttons -> caption
* calculator test
* updated excluded tests
* add asserts to child window test
* update window creation
* splash screen refactor
* remove hotfix part
* replace style checking functions
* remove no longer necessary check
* tool window check fix
* fix mouse snapping check
* added check and test for non-root window
* spelling
* Revert "remove FZ popup option"
This reverts commit 26732ad683.
* skip child window tests in CI
* remove the option
* remove the constant
* updated tests
211 lines
5.4 KiB
C++
211 lines
5.4 KiB
C++
#include "pch.h"
|
|
#include "Util.h"
|
|
|
|
static int s_classId = 0;
|
|
|
|
namespace Mocks
|
|
{
|
|
class HwndCreator
|
|
{
|
|
public:
|
|
HwndCreator(const std::wstring& title, const std::wstring& className, DWORD exStyle, DWORD style, HWND parentWindow);
|
|
~HwndCreator();
|
|
|
|
HWND operator()(HINSTANCE hInst);
|
|
|
|
void setHwnd(HWND val);
|
|
void setCondition(bool cond);
|
|
|
|
inline HINSTANCE getHInstance() const { return m_hInst; }
|
|
inline const std::wstring& getTitle() const { return m_windowTitle; }
|
|
inline const std::wstring& getWindowClassName() const { return m_windowClassName; }
|
|
inline DWORD getExStyle() const noexcept { return m_exStyle; }
|
|
inline DWORD getStyle() const noexcept { return m_style; }
|
|
inline HWND getParentWindow() const noexcept { return m_parentWindow; }
|
|
|
|
private:
|
|
std::wstring m_windowTitle;
|
|
std::wstring m_windowClassName;
|
|
DWORD m_exStyle{ 0 };
|
|
DWORD m_style{ 0 };
|
|
HWND m_parentWindow{ NULL };
|
|
|
|
std::mutex m_mutex;
|
|
std::condition_variable m_conditionVar;
|
|
bool m_conditionFlag;
|
|
HANDLE m_thread;
|
|
|
|
HINSTANCE m_hInst{};
|
|
HWND m_hWnd;
|
|
};
|
|
|
|
HWND WindowCreate(HINSTANCE hInst, const std::wstring& title /*= L""*/, const std::wstring& className /*= L""*/,
|
|
DWORD exStyle, DWORD style, HWND parentWindow)
|
|
{
|
|
return HwndCreator(title, className, exStyle, style, parentWindow)(hInst);
|
|
}
|
|
}
|
|
|
|
LRESULT CALLBACK DLLWindowProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
if (message == WM_DESTROY)
|
|
{
|
|
PostQuitMessage(0);
|
|
return 0;
|
|
}
|
|
|
|
return DefWindowProc(hwnd, message, wParam, lParam);
|
|
}
|
|
|
|
BOOL RegisterDLLWindowClass(LPCWSTR szClassName, Mocks::HwndCreator* creator)
|
|
{
|
|
if (!creator)
|
|
return false;
|
|
|
|
WNDCLASSEX wc;
|
|
|
|
wc.hInstance = creator->getHInstance();
|
|
wc.lpszClassName = szClassName;
|
|
wc.lpfnWndProc = DLLWindowProc;
|
|
wc.cbSize = sizeof(WNDCLASSEX);
|
|
|
|
wc.style = CS_DBLCLKS;
|
|
wc.hIcon = LoadIcon(NULL, IDI_APPLICATION);
|
|
wc.hIconSm = LoadIcon(NULL, IDI_APPLICATION);
|
|
wc.hCursor = LoadCursor(NULL, IDC_ARROW);
|
|
wc.lpszMenuName = NULL;
|
|
wc.cbClsExtra = 0;
|
|
wc.cbWndExtra = 0;
|
|
wc.hbrBackground = reinterpret_cast<HBRUSH>(COLOR_BACKGROUND);
|
|
|
|
auto regRes = RegisterClassEx(&wc);
|
|
return regRes;
|
|
}
|
|
|
|
DWORD WINAPI ThreadProc(LPVOID lpParam)
|
|
{
|
|
MSG messages;
|
|
Mocks::HwndCreator* creator = static_cast<Mocks::HwndCreator*>(lpParam);
|
|
if (!creator)
|
|
return static_cast<DWORD>(-1);
|
|
|
|
if (RegisterDLLWindowClass(creator->getWindowClassName().c_str(), creator) != 0)
|
|
{
|
|
auto hWnd = CreateWindowEx(creator->getExStyle(),
|
|
creator->getWindowClassName().c_str(),
|
|
creator->getTitle().c_str(),
|
|
creator->getStyle(),
|
|
CW_USEDEFAULT, CW_USEDEFAULT,
|
|
CW_USEDEFAULT, CW_USEDEFAULT,
|
|
creator->getParentWindow(),
|
|
nullptr,
|
|
creator->getHInstance(),
|
|
NULL);
|
|
|
|
ShowWindow(hWnd, SW_SHOW);
|
|
// wait after ShowWindow to make sure that it's finished and shown
|
|
std::this_thread::sleep_for(std::chrono::milliseconds(100));
|
|
|
|
creator->setHwnd(hWnd);
|
|
creator->setCondition(true);
|
|
|
|
while (GetMessage(&messages, NULL, 0, 0))
|
|
{
|
|
TranslateMessage(&messages);
|
|
DispatchMessage(&messages);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
creator->setCondition(true);
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
|
|
namespace Mocks
|
|
{
|
|
HwndCreator::HwndCreator(const std::wstring& title, const std::wstring& className, DWORD exStyle, DWORD style, HWND parentWindow) :
|
|
m_windowTitle(title),
|
|
m_windowClassName(className.empty() ? std::to_wstring(++s_classId) : className),
|
|
m_exStyle(exStyle),
|
|
m_style(style),
|
|
m_parentWindow(parentWindow),
|
|
m_conditionFlag(false),
|
|
m_thread(nullptr),
|
|
m_hInst(HINSTANCE{}),
|
|
m_hWnd(nullptr)
|
|
{
|
|
}
|
|
|
|
HwndCreator::~HwndCreator()
|
|
{
|
|
std::unique_lock<std::mutex> lock(m_mutex);
|
|
m_conditionVar.wait(lock, [this] { return m_conditionFlag; });
|
|
|
|
if (m_thread)
|
|
{
|
|
CloseHandle(m_thread);
|
|
}
|
|
}
|
|
|
|
HWND HwndCreator::operator()(HINSTANCE hInst)
|
|
{
|
|
m_hInst = hInst;
|
|
m_conditionFlag = false;
|
|
std::unique_lock<std::mutex> lock(m_mutex);
|
|
|
|
m_thread = CreateThread(0, NULL, ThreadProc, reinterpret_cast<LPVOID>(this), NULL, NULL);
|
|
m_conditionVar.wait(lock, [this] { return m_conditionFlag; });
|
|
|
|
return m_hWnd;
|
|
}
|
|
|
|
void HwndCreator::setHwnd(HWND val)
|
|
{
|
|
m_hWnd = val;
|
|
}
|
|
|
|
void HwndCreator::setCondition(bool cond)
|
|
{
|
|
m_conditionFlag = cond;
|
|
m_conditionVar.notify_one();
|
|
}
|
|
|
|
}
|
|
|
|
std::wstring Helpers::GuidToString(const GUID& guid)
|
|
{
|
|
OLECHAR* guidString;
|
|
if (StringFromCLSID(guid, &guidString) == S_OK)
|
|
{
|
|
std::wstring guidStr{ guidString };
|
|
CoTaskMemFree(guidString);
|
|
return guidStr;
|
|
}
|
|
|
|
return L"";
|
|
}
|
|
|
|
std::wstring Helpers::CreateGuidString()
|
|
{
|
|
GUID guid;
|
|
if (CoCreateGuid(&guid) == S_OK)
|
|
{
|
|
return GuidToString(guid);
|
|
}
|
|
|
|
return L"";
|
|
}
|
|
|
|
std::optional<GUID> Helpers::StringToGuid(const std::wstring& str)
|
|
{
|
|
GUID guid;
|
|
if (CLSIDFromString(str.c_str(), &guid) == S_OK)
|
|
{
|
|
return guid;
|
|
}
|
|
|
|
return std::nullopt;
|
|
}
|