複数のウィンドウを持つ、作成中のユーザーインターフェイスシステムの一部であるこのコードがあります
bool UISystem::HandleMessage(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
UIWindow* target = NULL;
for(vector<UIWindow*>::iterator it = windowList.begin(); it < windowList.end(); it++)
{
if((*it)->windowHandle == hwnd)
{
target = *it;
break;
}
}
if(target == NULL)
{ return false; }
switch(msg)
{
case WM_DESTROY:
return true;
case WM_PAINT:
return true;
default:
return false;
}
}
LRESULT WINAPI UISystem::WndProc(HWND hwnd, UINT msg, WPARAM wParam, LPARAM lParam)
{
/*if(UISYSTEM->HandleMessage(hwnd, msg, wParam, lParam))
{
}*/
return DefWindowProc(hwnd, msg, wParam, lParam);
}
UISystem::WndProc のコメント ブロックを含めてこのコードをそのまま実装すると、ウィンドウは正しく表示されますが、UISystem::WndProc でこのブロックのコメントを外すと、CreateWindow から無効なハンドルが返されます。これは本当に私を混乱させます.UISystem::WndProcで他のコードを実行する前にDefWindowProcを呼び出そうとしましたが、すべての試行が失敗しました
これは UIWindow のコンストラクタです。
UIWindow::UIWindow(int x, int y, int width, int height, string & text)
{
int frameWidth = GetSystemMetrics(SM_CXSIZEFRAME);
int frameHeight = GetSystemMetrics(SM_CYSIZEFRAME);
int menuHeight = GetSystemMetrics(SM_CYMENU);
int windowXPos = (GetSystemMetrics(SM_CXSCREEN) - width) / 2;
int windowYPos = (GetSystemMetrics(SM_CYSCREEN) - height) / 2;
int windowWidth = width + frameWidth * 2;
int windowHeight = height + frameHeight * 2 + menuHeight;
bounds.X = x;
bounds.Y = y;
bounds.Width = width;
bounds.Height = height;
title = text;
MSG msg;
WNDCLASSEX wc = {sizeof(WNDCLASSEX), CS_VREDRAW|CS_HREDRAW|CS_OWNDC,
&UISystem::WndProc, 0, 0, hInstance, NULL, NULL, (HBRUSH)(COLOR_WINDOW + 1),
NULL, "AurousWindow", NULL};
RegisterClassEx(&wc);
windowHandle = CreateWindow("AurousWindow", title.c_str(), WS_OVERLAPPEDWINDOW, windowXPos, windowYPos, windowWidth, windowHeight, NULL, NULL, hInstance, NULL);
SetWindowRgn(windowHandle, CreateRectRgn(0, 0, width, height), TRUE);
ShowWindow(windowHandle, nShow);
UpdateWindow(windowHandle);
//RECT rec = {0, 0, width, height};
while(GetMessage(&msg, NULL, 0, 0))
{
TranslateMessage(&msg);
DispatchMessage(&msg);
}
}