1136 lines
31 KiB
C++
1136 lines
31 KiB
C++
// Copyright (c) 2012-2021 Wojciech Figat. All rights reserved.
|
|
|
|
#if PLATFORM_WINDOWS
|
|
|
|
#include "WindowsWindow.h"
|
|
#include "WindowsPlatform.h"
|
|
#include "WindowsInput.h"
|
|
#include "Engine/Core/Log.h"
|
|
#include "Engine/Core/Math/Math.h"
|
|
#include "Engine/Graphics/GPUSwapChain.h"
|
|
#include "Engine/Graphics/RenderTask.h"
|
|
#include "Engine/Graphics/GPUDevice.h"
|
|
#include "../Win32/IncludeWindowsHeaders.h"
|
|
#include <propidl.h>
|
|
|
|
#define DefaultDPI 96
|
|
|
|
// Use improved borderless window support for Editor
|
|
#define WINDOWS_USE_NEW_BORDER_LESS USE_EDITOR && 0
|
|
#if WINDOWS_USE_NEW_BORDER_LESS
|
|
#pragma comment(lib, "Gdi32.lib")
|
|
WIN_API HRGN WIN_API_CALLCONV CreateRectRgn(int x1, int y1, int x2, int y2);
|
|
#endif
|
|
#define WINDOWS_USE_NEWER_BORDER_LESS USE_EDITOR && 1
|
|
#if WINDOWS_USE_NEWER_BORDER_LESS
|
|
#pragma comment(lib, "dwmapi.lib")
|
|
WIN_API HRESULT WIN_API_CALLCONV DwmExtendFrameIntoClientArea(HWND hWnd, const void* pMarInset);
|
|
WIN_API HRESULT WIN_API_CALLCONV DwmIsCompositionEnabled(BOOL* pfEnabled);
|
|
|
|
namespace
|
|
{
|
|
bool IsCompositionEnabled()
|
|
{
|
|
BOOL result = FALSE;
|
|
const bool success = ::DwmIsCompositionEnabled(&result) == S_OK;
|
|
return result && success;
|
|
}
|
|
}
|
|
#endif
|
|
|
|
namespace
|
|
{
|
|
bool IsWindowMaximized(HWND window)
|
|
{
|
|
WINDOWPLACEMENT placement;
|
|
if (!::GetWindowPlacement(window, &placement))
|
|
return false;
|
|
return placement.showCmd == SW_MAXIMIZE;
|
|
}
|
|
}
|
|
|
|
WindowsWindow::WindowsWindow(const CreateWindowSettings& settings)
|
|
: WindowBase(settings)
|
|
#if USE_EDITOR
|
|
, _refCount(1)
|
|
#endif
|
|
{
|
|
int32 x = Math::TruncToInt(settings.Position.X);
|
|
int32 y = Math::TruncToInt(settings.Position.Y);
|
|
int32 clientWidth = Math::TruncToInt(settings.Size.X);
|
|
int32 clientHeight = Math::TruncToInt(settings.Size.Y);
|
|
int32 windowWidth = clientWidth;
|
|
int32 windowHeight = clientHeight;
|
|
_clientSize = Vector2((float)clientWidth, (float)clientHeight);
|
|
|
|
// Setup window style
|
|
uint32 style = WS_POPUP, exStyle = 0;
|
|
if (settings.SupportsTransparency)
|
|
exStyle |= WS_EX_LAYERED;
|
|
if (!settings.ActivateWhenFirstShown)
|
|
exStyle |= WS_EX_NOACTIVATE;
|
|
if (settings.ShowInTaskbar)
|
|
exStyle |= WS_EX_APPWINDOW;
|
|
else
|
|
exStyle |= WS_EX_TOOLWINDOW;
|
|
if (settings.IsTopmost)
|
|
exStyle |= WS_EX_TOPMOST;
|
|
if (!settings.AllowInput)
|
|
exStyle |= WS_EX_TRANSPARENT;
|
|
if (settings.AllowMaximize)
|
|
style |= WS_MAXIMIZEBOX;
|
|
if (settings.AllowMinimize)
|
|
style |= WS_MINIMIZEBOX;
|
|
if (settings.HasSizingFrame)
|
|
style |= WS_THICKFRAME;
|
|
|
|
// Check if window should have a border
|
|
if (settings.HasBorder)
|
|
{
|
|
// Create window style flags
|
|
style |= WS_OVERLAPPED | WS_SYSMENU | WS_BORDER | WS_CAPTION;
|
|
exStyle |= 0;
|
|
|
|
// Adjust window size and positions to take into account window border
|
|
RECT winRect = { 0, 0, clientWidth, clientHeight };
|
|
AdjustWindowRectEx(&winRect, style, FALSE, exStyle);
|
|
x += winRect.left;
|
|
y += winRect.top;
|
|
windowWidth = winRect.right - winRect.left;
|
|
windowHeight = winRect.bottom - winRect.top;
|
|
}
|
|
else
|
|
{
|
|
// Create window style flags
|
|
style |= WS_CLIPCHILDREN | WS_CLIPSIBLINGS;
|
|
#if WINDOWS_USE_NEW_BORDER_LESS
|
|
if (settings.IsRegularWindow)
|
|
style |= WS_BORDER | WS_CAPTION | WS_DLGFRAME | WS_SYSMENU | WS_THICKFRAME | WS_GROUP;
|
|
#elif WINDOWS_USE_NEWER_BORDER_LESS
|
|
if (settings.IsRegularWindow)
|
|
style |= WS_THICKFRAME | WS_SYSMENU;
|
|
style |= WS_CAPTION;
|
|
#endif
|
|
exStyle |= WS_EX_WINDOWEDGE;
|
|
}
|
|
|
|
// Creating the window
|
|
_handle = CreateWindowExW(
|
|
exStyle,
|
|
Platform::ApplicationWindowClass,
|
|
settings.Title.GetText(),
|
|
style,
|
|
x,
|
|
y,
|
|
windowWidth,
|
|
windowHeight,
|
|
settings.Parent ? static_cast<HWND>(settings.Parent->GetNativePtr()) : nullptr,
|
|
nullptr,
|
|
(HINSTANCE)Platform::Instance,
|
|
nullptr);
|
|
if (_handle == nullptr)
|
|
{
|
|
LOG_WIN32_LAST_ERROR;
|
|
Platform::Fatal(TEXT("Cannot create window."));
|
|
return;
|
|
}
|
|
|
|
// Query DPI
|
|
_dpi = Platform::GetDpi();
|
|
const HMODULE user32Dll = LoadLibraryW(L"user32.dll");
|
|
if (user32Dll)
|
|
{
|
|
typedef UINT (STDAPICALLTYPE* GetDpiForWindowProc)(HWND hwnd);
|
|
const GetDpiForWindowProc getDpiForWindowProc = (GetDpiForWindowProc)GetProcAddress(user32Dll, "GetDpiForWindow");
|
|
if (getDpiForWindowProc)
|
|
{
|
|
_dpi = getDpiForWindowProc(_handle);
|
|
}
|
|
FreeLibrary(user32Dll);
|
|
}
|
|
_dpiScale = (float)_dpi / (float)DefaultDPI;
|
|
|
|
#if WINDOWS_USE_NEWER_BORDER_LESS
|
|
// Enable shadow
|
|
if (_settings.IsRegularWindow && !_settings.HasBorder && IsCompositionEnabled())
|
|
{
|
|
const int margin[4] = { 1, 1, 1, 1 };
|
|
::DwmExtendFrameIntoClientArea(_handle, margin);
|
|
}
|
|
#endif
|
|
|
|
#if USE_EDITOR
|
|
// Enable file dropping
|
|
if (_settings.AllowDragAndDrop)
|
|
{
|
|
const auto result = RegisterDragDrop(_handle, (LPDROPTARGET)(Windows::IDropTarget*)this);
|
|
if (result != S_OK)
|
|
{
|
|
LOG(Warning, "Window drag and drop service error: 0x{0:x}:{1}", result, 1);
|
|
}
|
|
}
|
|
#endif
|
|
|
|
UpdateRegion();
|
|
}
|
|
|
|
WindowsWindow::~WindowsWindow()
|
|
{
|
|
if (HasHWND())
|
|
{
|
|
// Destroy window
|
|
if (DestroyWindow(_handle) == 0)
|
|
{
|
|
LOG(Warning, "DestroyWindow failed! Error: {0:#x}", GetLastError());
|
|
}
|
|
|
|
// Clear
|
|
_handle = nullptr;
|
|
_visible = false;
|
|
}
|
|
}
|
|
|
|
void* WindowsWindow::GetNativePtr() const
|
|
{
|
|
return _handle;
|
|
}
|
|
|
|
void WindowsWindow::Show()
|
|
{
|
|
if (!_visible)
|
|
{
|
|
InitSwapChain();
|
|
if (_showAfterFirstPaint)
|
|
{
|
|
if (RenderTask)
|
|
RenderTask->Enabled = true;
|
|
return;
|
|
}
|
|
|
|
ASSERT(HasHWND());
|
|
|
|
// Show
|
|
ShowWindow(_handle, (_settings.AllowInput && _settings.ActivateWhenFirstShown) ? SW_SHOW : SW_SHOWNA);
|
|
#if WINDOWS_USE_NEW_BORDER_LESS
|
|
if (!_settings.HasBorder && _settings.IsRegularWindow)
|
|
{
|
|
SetWindowPos(_handle, nullptr, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE | SWP_FRAMECHANGED);
|
|
}
|
|
#elif WINDOWS_USE_NEWER_BORDER_LESS
|
|
if (!_settings.HasBorder)
|
|
{
|
|
SetWindowPos(_handle, nullptr, 0, 0, 0, 0, SWP_FRAMECHANGED | SWP_NOMOVE | SWP_NOSIZE | SWP_NOACTIVATE | SWP_NOZORDER);
|
|
}
|
|
#endif
|
|
|
|
// Base
|
|
WindowBase::Show();
|
|
}
|
|
}
|
|
|
|
void WindowsWindow::Hide()
|
|
{
|
|
if (_visible)
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
// Hide
|
|
ShowWindow(_handle, SW_HIDE);
|
|
|
|
// Base
|
|
WindowBase::Hide();
|
|
}
|
|
}
|
|
|
|
void WindowsWindow::Minimize()
|
|
{
|
|
if (!_settings.AllowMinimize)
|
|
return;
|
|
ASSERT(HasHWND());
|
|
ShowWindow(_handle, SW_MINIMIZE);
|
|
}
|
|
|
|
void WindowsWindow::Maximize()
|
|
{
|
|
if (!_settings.AllowMaximize)
|
|
return;
|
|
ASSERT(HasHWND());
|
|
_isDuringMaximize = true;
|
|
ShowWindow(_handle, SW_MAXIMIZE);
|
|
_isDuringMaximize = false;
|
|
}
|
|
|
|
void WindowsWindow::Restore()
|
|
{
|
|
ASSERT(HasHWND());
|
|
ShowWindow(_handle, SW_RESTORE);
|
|
}
|
|
|
|
bool WindowsWindow::IsClosed() const
|
|
{
|
|
return !HasHWND();
|
|
}
|
|
|
|
bool WindowsWindow::IsForegroundWindow() const
|
|
{
|
|
return ::GetForegroundWindow() == _handle;
|
|
}
|
|
|
|
void WindowsWindow::BringToFront(bool force)
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
if (_settings.IsRegularWindow)
|
|
{
|
|
if (IsIconic(_handle))
|
|
{
|
|
ShowWindow(_handle, SW_RESTORE);
|
|
}
|
|
else
|
|
{
|
|
SetActiveWindow(_handle);
|
|
}
|
|
}
|
|
else
|
|
{
|
|
HWND hWndInsertAfter = HWND_TOP;
|
|
uint32 flags = SWP_NOMOVE | SWP_NOSIZE | SWP_NOOWNERZORDER;
|
|
|
|
if (!force)
|
|
{
|
|
flags |= SWP_NOACTIVATE;
|
|
}
|
|
|
|
if (_settings.IsTopmost)
|
|
{
|
|
hWndInsertAfter = HWND_TOPMOST;
|
|
}
|
|
|
|
SetWindowPos(_handle, hWndInsertAfter, 0, 0, 0, 0, flags);
|
|
}
|
|
}
|
|
|
|
void WindowsWindow::SetClientBounds(const Rectangle& clientArea)
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
// Check if position or/and size will change
|
|
const auto rect = GetClientBounds();
|
|
const bool changeLocation = !Vector2::NearEqual(rect.Location, clientArea.Location);
|
|
const bool changeSize = !Vector2::NearEqual(rect.Size, clientArea.Size);
|
|
if (!changeLocation && !changeSize)
|
|
return;
|
|
|
|
// Get values data
|
|
int32 x = (int32)clientArea.GetX();
|
|
int32 y = (int32)clientArea.GetY();
|
|
int32 width = (int32)clientArea.GetWidth();
|
|
int32 height = (int32)clientArea.GetHeight();
|
|
|
|
if (changeSize)
|
|
{
|
|
_clientSize = clientArea.Size;
|
|
|
|
// Update GUI
|
|
OnResize(width, height);
|
|
}
|
|
|
|
// Check if need to adjust window rectangle
|
|
if (_settings.HasBorder)
|
|
{
|
|
// Get window info
|
|
WINDOWINFO winInfo;
|
|
Platform::MemoryClear(&winInfo, sizeof(WINDOWINFO));
|
|
winInfo.cbSize = sizeof(winInfo);
|
|
GetWindowInfo(_handle, &winInfo);
|
|
|
|
// Adjust rectangle from client size to window size
|
|
RECT winRect = { 0, 0, width, height };
|
|
AdjustWindowRectEx(&winRect, winInfo.dwStyle, FALSE, winInfo.dwExStyle);
|
|
width = winRect.right - winRect.left;
|
|
height = winRect.bottom - winRect.top;
|
|
|
|
// Little hack but works great
|
|
winRect = { x, y, width, height };
|
|
AdjustWindowRectEx(&winRect, winInfo.dwStyle, FALSE, winInfo.dwExStyle);
|
|
x = winRect.left;
|
|
y = winRect.top;
|
|
}
|
|
|
|
// Change window size and location
|
|
SetWindowPos(_handle, nullptr, x, y, width, height, SWP_NOZORDER | SWP_NOACTIVATE);
|
|
|
|
if (changeSize)
|
|
{
|
|
UpdateRegion();
|
|
}
|
|
}
|
|
|
|
void WindowsWindow::SetPosition(const Vector2& position)
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
// Cache data
|
|
int32 x = (int32)position.X;
|
|
int32 y = (int32)position.Y;
|
|
|
|
// Change window location
|
|
SetWindowPos(_handle, nullptr, x, y, 0, 0, SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE | SWP_NOOWNERZORDER);
|
|
}
|
|
|
|
void WindowsWindow::SetClientPosition(const Vector2& position)
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
// Cache data
|
|
int32 x = (int32)position.X;
|
|
int32 y = (int32)position.Y;
|
|
|
|
// Check if need to adjust window rectangle
|
|
if (_settings.HasBorder)
|
|
{
|
|
// Get window info
|
|
WINDOWINFO winInfo;
|
|
Platform::MemoryClear(&winInfo, sizeof(WINDOWINFO));
|
|
winInfo.cbSize = sizeof(winInfo);
|
|
GetWindowInfo(_handle, &winInfo);
|
|
|
|
// Adjust rectangle from client size to window size
|
|
RECT winRect = { x, y, 666, 69 };
|
|
AdjustWindowRectEx(&winRect, winInfo.dwStyle, FALSE, winInfo.dwExStyle);
|
|
|
|
// Calculate window size
|
|
x = winRect.left;
|
|
y = winRect.top;
|
|
}
|
|
|
|
// Change window location
|
|
SetWindowPos(_handle, nullptr, x, y, 0, 0, SWP_NOZORDER | SWP_NOSIZE | SWP_NOACTIVATE | SWP_NOOWNERZORDER);
|
|
}
|
|
|
|
void WindowsWindow::SetIsFullscreen(bool isFullscreen)
|
|
{
|
|
_isSwitchingFullScreen = true;
|
|
|
|
ASSERT(HasHWND());
|
|
|
|
// Base
|
|
WindowBase::SetIsFullscreen(isFullscreen);
|
|
|
|
if (!isFullscreen)
|
|
{
|
|
// Restore window
|
|
ShowWindow(_handle, SW_NORMAL);
|
|
}
|
|
|
|
_isSwitchingFullScreen = false;
|
|
}
|
|
|
|
Vector2 WindowsWindow::GetPosition() const
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
RECT rect;
|
|
GetWindowRect(_handle, &rect);
|
|
return Vector2(static_cast<float>(rect.left), static_cast<float>(rect.top));
|
|
}
|
|
|
|
Vector2 WindowsWindow::GetSize() const
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
RECT rect;
|
|
GetWindowRect(_handle, &rect);
|
|
return Vector2(static_cast<float>(rect.right - rect.left), static_cast<float>(rect.bottom - rect.top));
|
|
}
|
|
|
|
Vector2 WindowsWindow::GetClientSize() const
|
|
{
|
|
return _clientSize;
|
|
}
|
|
|
|
Vector2 WindowsWindow::ScreenToClient(const Vector2& screenPos) const
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
POINT p;
|
|
p.x = static_cast<LONG>(screenPos.X);
|
|
p.y = static_cast<LONG>(screenPos.Y);
|
|
::ScreenToClient(_handle, &p);
|
|
return Vector2(static_cast<float>(p.x), static_cast<float>(p.y));
|
|
}
|
|
|
|
Vector2 WindowsWindow::ClientToScreen(const Vector2& clientPos) const
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
POINT p;
|
|
p.x = static_cast<LONG>(clientPos.X);
|
|
p.y = static_cast<LONG>(clientPos.Y);
|
|
::ClientToScreen(_handle, &p);
|
|
return Vector2(static_cast<float>(p.x), static_cast<float>(p.y));
|
|
}
|
|
|
|
void WindowsWindow::FlashWindow()
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
if (IsFocused())
|
|
return;
|
|
|
|
::FlashWindow(_handle, FALSE);
|
|
}
|
|
|
|
void WindowsWindow::GetScreenInfo(int32& x, int32& y, int32& width, int32& height) const
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
// Pick the current monitor data for sizing
|
|
const HMONITOR monitor = MonitorFromWindow(_handle, MONITOR_DEFAULTTONEAREST);
|
|
MONITORINFO monitorInfo;
|
|
monitorInfo.cbSize = sizeof(MONITORINFO);
|
|
GetMonitorInfoW(monitor, &monitorInfo);
|
|
|
|
// Calculate result
|
|
x = monitorInfo.rcMonitor.left;
|
|
y = monitorInfo.rcMonitor.top;
|
|
width = monitorInfo.rcMonitor.right - monitorInfo.rcMonitor.left;
|
|
height = monitorInfo.rcMonitor.bottom - monitorInfo.rcMonitor.top;
|
|
}
|
|
|
|
float WindowsWindow::GetOpacity() const
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
COLORREF color;
|
|
BYTE alpha;
|
|
DWORD flags;
|
|
GetLayeredWindowAttributes(_handle, &color, &alpha, &flags);
|
|
return (float)alpha / 255.0f;
|
|
}
|
|
|
|
void WindowsWindow::SetOpacity(const float opacity)
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
SetLayeredWindowAttributes(_handle, 0, static_cast<BYTE>(Math::Saturate(opacity) * 255), LWA_ALPHA);
|
|
}
|
|
|
|
void WindowsWindow::Focus()
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
if (GetFocus() != _handle)
|
|
{
|
|
SetFocus(_handle);
|
|
}
|
|
}
|
|
|
|
void WindowsWindow::SetTitle(const StringView& title)
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
if (SetWindowTextW(_handle, *title))
|
|
{
|
|
_title = title;
|
|
}
|
|
}
|
|
|
|
void WindowsWindow::StartTrackingMouse(bool useMouseScreenOffset)
|
|
{
|
|
ASSERT(HasHWND());
|
|
|
|
if (!_isTrackingMouse)
|
|
{
|
|
_isTrackingMouse = true;
|
|
_trackingMouseOffset = Vector2::Zero;
|
|
_isUsingMouseOffset = useMouseScreenOffset;
|
|
|
|
int32 x = 0, y = 0, width = 0, height = 0;
|
|
GetScreenInfo(x, y, width, height);
|
|
_mouseOffsetScreenSize = Rectangle((float)x, (float)y, (float)width, (float)height);
|
|
|
|
SetCapture(_handle);
|
|
}
|
|
}
|
|
|
|
void WindowsWindow::EndTrackingMouse()
|
|
{
|
|
if (_isTrackingMouse)
|
|
{
|
|
_isTrackingMouse = false;
|
|
|
|
ReleaseCapture();
|
|
}
|
|
}
|
|
|
|
void WindowsWindow::SetCursor(CursorType type)
|
|
{
|
|
// Base
|
|
WindowBase::SetCursor(type);
|
|
|
|
UpdateCursor();
|
|
}
|
|
|
|
#if USE_EDITOR
|
|
|
|
Windows::HRESULT WindowsWindow::QueryInterface(const Windows::IID& id, void** ppvObject)
|
|
{
|
|
// Check to see what interface has been requested
|
|
if ((const IID&)id == IID_IUnknown || (const IID&)id == IID_IDropTarget)
|
|
{
|
|
AddRef();
|
|
*ppvObject = this;
|
|
return S_OK;
|
|
}
|
|
|
|
// No interface
|
|
*ppvObject = nullptr;
|
|
return E_NOINTERFACE;
|
|
}
|
|
|
|
Windows::ULONG WindowsWindow::AddRef()
|
|
{
|
|
_InterlockedIncrement(&_refCount);
|
|
return _refCount;
|
|
}
|
|
|
|
Windows::ULONG WindowsWindow::Release()
|
|
{
|
|
return _InterlockedDecrement(&_refCount);
|
|
}
|
|
|
|
#endif
|
|
|
|
void WindowsWindow::CheckForWindowResize()
|
|
{
|
|
// Skip for minimized window (GetClientRect for minimized window returns 0)
|
|
if (_minimized)
|
|
return;
|
|
|
|
ASSERT(HasHWND());
|
|
|
|
// Cache client size
|
|
RECT rect;
|
|
GetClientRect(_handle, &rect);
|
|
const int32 width = Math::Max(rect.right - rect.left, 0L);
|
|
const int32 height = Math::Max(rect.bottom - rect.top, 0L);
|
|
_clientSize = Vector2(static_cast<float>(width), static_cast<float>(height));
|
|
|
|
// Check if window size has been changed
|
|
if (width > 0 && height > 0 && (_swapChain == nullptr || width != _swapChain->GetWidth() || height != _swapChain->GetHeight()))
|
|
{
|
|
UpdateRegion();
|
|
OnResize(width, height);
|
|
}
|
|
}
|
|
|
|
void WindowsWindow::UpdateCursor() const
|
|
{
|
|
if (_cursor == CursorType::Hidden)
|
|
{
|
|
::SetCursor(nullptr);
|
|
return;
|
|
}
|
|
|
|
int32 index = 0;
|
|
switch (_cursor)
|
|
{
|
|
case CursorType::Default:
|
|
break;
|
|
case CursorType::Cross:
|
|
index = 1;
|
|
break;
|
|
case CursorType::Hand:
|
|
index = 2;
|
|
break;
|
|
case CursorType::Help:
|
|
index = 3;
|
|
break;
|
|
case CursorType::IBeam:
|
|
index = 4;
|
|
break;
|
|
case CursorType::No:
|
|
index = 5;
|
|
break;
|
|
case CursorType::Wait:
|
|
index = 11;
|
|
break;
|
|
case CursorType::SizeAll:
|
|
index = 6;
|
|
break;
|
|
case CursorType::SizeNESW:
|
|
index = 7;
|
|
break;
|
|
case CursorType::SizeNS:
|
|
index = 8;
|
|
break;
|
|
case CursorType::SizeNWSE:
|
|
index = 9;
|
|
break;
|
|
case CursorType::SizeWE:
|
|
index = 10;
|
|
break;
|
|
}
|
|
|
|
static const LPCWSTR cursors[] =
|
|
{
|
|
IDC_ARROW,
|
|
IDC_CROSS,
|
|
IDC_HAND,
|
|
IDC_HELP,
|
|
IDC_IBEAM,
|
|
IDC_NO,
|
|
IDC_SIZEALL,
|
|
IDC_SIZENESW,
|
|
IDC_SIZENS,
|
|
IDC_SIZENWSE,
|
|
IDC_SIZEWE,
|
|
IDC_WAIT,
|
|
};
|
|
|
|
ASSERT(index >= 0 && index < ARRAY_COUNT(cursors));
|
|
const HCURSOR cursor = LoadCursorW(nullptr, cursors[index]);
|
|
::SetCursor(cursor);
|
|
}
|
|
|
|
void WindowsWindow::UpdateRegion()
|
|
{
|
|
#if WINDOWS_USE_NEW_BORDER_LESS
|
|
// Use region to remove rounded corners of the window
|
|
if (!_settings.HasBorder && _settings.IsRegularWindow)
|
|
{
|
|
if (!_maximized && !_isResizing)
|
|
{
|
|
RECT rcWnd;
|
|
GetWindowRect(_handle, &rcWnd);
|
|
const int32 width = rcWnd.right - rcWnd.left;
|
|
const int32 height = rcWnd.bottom - rcWnd.top;
|
|
if (_regionWidth != width || _regionHeight != height)
|
|
{
|
|
_regionWidth = width;
|
|
_regionHeight = height;
|
|
const HRGN region = CreateRectRgn(0, 0, width, height);
|
|
SetWindowRgn(_handle, region, FALSE);
|
|
}
|
|
}
|
|
else if (_regionWidth != 0 || _regionHeight != 0)
|
|
{
|
|
_regionWidth = 0;
|
|
_regionHeight = 0;
|
|
SetWindowRgn(_handle, nullptr, FALSE);
|
|
}
|
|
}
|
|
#endif
|
|
}
|
|
|
|
void TrackMouse(HWND hwnd)
|
|
{
|
|
TRACKMOUSEEVENT tme;
|
|
tme.cbSize = sizeof(TRACKMOUSEEVENT);
|
|
tme.dwFlags = TME_HOVER | TME_LEAVE;
|
|
tme.dwHoverTime = 5000;
|
|
tme.hwndTrack = hwnd;
|
|
TrackMouseEvent(&tme);
|
|
}
|
|
|
|
LRESULT WindowsWindow::WndProc(UINT msg, WPARAM wParam, LPARAM lParam)
|
|
{
|
|
const UINT_PTR MouseStopTimerID = 1;
|
|
switch (msg)
|
|
{
|
|
case WM_PAINT:
|
|
{
|
|
// Check if window is during resizing
|
|
if (_isResizing && _swapChain)
|
|
{
|
|
// Redraw window backbuffer on DX11
|
|
switch (GPUDevice::Instance->GetRendererType())
|
|
{
|
|
case RendererType::DirectX10:
|
|
case RendererType::DirectX10_1:
|
|
case RendererType::DirectX11:
|
|
_swapChain->Present(false);
|
|
break;
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case WM_TIMER:
|
|
{
|
|
if (wParam == MouseStopTimerID)
|
|
{
|
|
// Kill the timer after processing it
|
|
KillTimer(_handle, MouseStopTimerID);
|
|
return 0;
|
|
}
|
|
break;
|
|
}
|
|
case WM_SETCURSOR:
|
|
{
|
|
if (LOWORD(lParam) == HTCLIENT)
|
|
{
|
|
UpdateCursor();
|
|
return true;
|
|
}
|
|
break;
|
|
}
|
|
case WM_MOUSEMOVE:
|
|
{
|
|
if (!_trackingMouse)
|
|
{
|
|
TrackMouse(_handle);
|
|
_trackingMouse = true;
|
|
}
|
|
|
|
if (_isTrackingMouse)
|
|
{
|
|
KillTimer(_handle, MouseStopTimerID);
|
|
SetTimer(_handle, MouseStopTimerID, 100, nullptr);
|
|
}
|
|
|
|
// Here we can transfer mouse pointer over virtual workspace
|
|
if (_isTrackingMouse && _isUsingMouseOffset)
|
|
{
|
|
// Check if move mouse to another edge of the desktop
|
|
Vector2 desktopLocation = _mouseOffsetScreenSize.Location;
|
|
Vector2 desktopSize = _mouseOffsetScreenSize.GetBottomRight();
|
|
|
|
const Vector2 mousePos(static_cast<float>(WINDOWS_GET_X_LPARAM(lParam)), static_cast<float>(WINDOWS_GET_Y_LPARAM(lParam)));
|
|
Vector2 mousePosition = ClientToScreen(mousePos);
|
|
Vector2 newMousePosition = mousePosition;
|
|
if (mousePosition.X <= desktopLocation.X + 2)
|
|
newMousePosition.X = desktopSize.X - 2;
|
|
else if (mousePosition.X >= desktopSize.X - 1)
|
|
newMousePosition.X = desktopLocation.X + 2;
|
|
if (mousePosition.Y <= desktopLocation.Y + 2)
|
|
newMousePosition.Y = desktopSize.Y - 2;
|
|
else if (mousePosition.Y >= desktopSize.Y - 1)
|
|
newMousePosition.Y = desktopLocation.Y + 2;
|
|
if (!Vector2::NearEqual(mousePosition, newMousePosition))
|
|
{
|
|
_trackingMouseOffset -= newMousePosition - mousePosition;
|
|
SetMousePosition(ScreenToClient(newMousePosition));
|
|
}
|
|
}
|
|
|
|
break;
|
|
}
|
|
case WM_MOUSELEAVE:
|
|
{
|
|
_trackingMouse = false;
|
|
break;
|
|
}
|
|
case WM_NCCALCSIZE:
|
|
{
|
|
#if WINDOWS_USE_NEW_BORDER_LESS
|
|
if (wParam && !_settings.HasBorder && _settings.IsRegularWindow)
|
|
{
|
|
if (_maximized)
|
|
{
|
|
WINDOWINFO winInfo = { 0 };
|
|
winInfo.cbSize = sizeof(winInfo);
|
|
::GetWindowInfo(_handle, &winInfo);
|
|
|
|
LPNCCALCSIZE_PARAMS rects = (LPNCCALCSIZE_PARAMS)lParam;
|
|
|
|
rects->rgrc[0].left += winInfo.cxWindowBorders;
|
|
rects->rgrc[0].top += winInfo.cxWindowBorders;
|
|
rects->rgrc[0].right -= winInfo.cxWindowBorders;
|
|
rects->rgrc[0].bottom -= winInfo.cxWindowBorders;
|
|
|
|
rects->rgrc[1].left = rects->rgrc[0].left;
|
|
rects->rgrc[1].top = rects->rgrc[0].top;
|
|
rects->rgrc[1].right = rects->rgrc[0].right;
|
|
rects->rgrc[1].bottom = rects->rgrc[0].bottom;
|
|
|
|
rects->lppos->x += winInfo.cxWindowBorders;
|
|
rects->lppos->y += winInfo.cxWindowBorders;
|
|
rects->lppos->cx -= 2 * winInfo.cxWindowBorders;
|
|
rects->lppos->cy -= 2 * winInfo.cxWindowBorders;
|
|
|
|
return WVR_VALIDRECTS;
|
|
}
|
|
else
|
|
{
|
|
SetWindowPos(_handle, nullptr, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE | SWP_FRAMECHANGED);
|
|
return 0;
|
|
}
|
|
}
|
|
#elif WINDOWS_USE_NEWER_BORDER_LESS
|
|
if (wParam == TRUE && !_settings.HasBorder) // && _settings.IsRegularWindow)
|
|
{
|
|
// In maximized mode fill the whole work area of the monitor (excludes task bar)
|
|
if (IsWindowMaximized(_handle))
|
|
{
|
|
HMONITOR monitor = ::MonitorFromWindow(_handle, MONITOR_DEFAULTTONULL);
|
|
if (monitor)
|
|
{
|
|
MONITORINFO monitorInfo;
|
|
monitorInfo.cbSize = sizeof(monitorInfo);
|
|
if (::GetMonitorInfoW(monitor, &monitorInfo))
|
|
{
|
|
LPNCCALCSIZE_PARAMS rects = (LPNCCALCSIZE_PARAMS)lParam;
|
|
rects->rgrc[0] = monitorInfo.rcWork;
|
|
}
|
|
}
|
|
}
|
|
//SetWindowPos(_handle, nullptr, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_NOACTIVATE | SWP_FRAMECHANGED);
|
|
return 0;
|
|
}
|
|
#endif
|
|
break;
|
|
}
|
|
case WM_NCHITTEST:
|
|
{
|
|
// Override it for fullscreen mode
|
|
if (IsFullscreen())
|
|
return static_cast<int32>(WindowHitCodes::Client);
|
|
|
|
const Vector2 mouse(static_cast<float>(WINDOWS_GET_X_LPARAM(lParam)), static_cast<float>(WINDOWS_GET_Y_LPARAM(lParam)));
|
|
WindowHitCodes hit = WindowHitCodes::Client;
|
|
bool handled = false;
|
|
OnHitTest(mouse, hit, handled);
|
|
if (handled)
|
|
return static_cast<int32>(hit);
|
|
break;
|
|
}
|
|
case WM_NCLBUTTONDOWN:
|
|
{
|
|
bool result = false;
|
|
OnLeftButtonHit(static_cast<WindowHitCodes>(wParam), result);
|
|
if (result)
|
|
return 0;
|
|
break;
|
|
}
|
|
case WM_NCLBUTTONDBLCLK:
|
|
{
|
|
// Handle non-client area double click manually
|
|
if (IsMaximized())
|
|
Restore();
|
|
else
|
|
Maximize();
|
|
return 0;
|
|
}
|
|
#if WINDOWS_USE_NEWER_BORDER_LESS
|
|
case WM_NCACTIVATE:
|
|
{
|
|
// Skip for border-less windows
|
|
if (!_settings.HasBorder && !IsCompositionEnabled())
|
|
return 1;
|
|
break;
|
|
}
|
|
#endif
|
|
#if 0
|
|
case WM_NCPAINT:
|
|
// Skip for border-less windows
|
|
if (!_settings.HasBorder)
|
|
return 1;
|
|
break;
|
|
#endif
|
|
case WM_ERASEBKGND:
|
|
// Skip the window background erasing
|
|
return 1;
|
|
case WM_GETMINMAXINFO:
|
|
{
|
|
const auto minMax = reinterpret_cast<MINMAXINFO*>(lParam);
|
|
|
|
int32 borderWidth = 0, borderHeight = 0;
|
|
if (_settings.HasBorder)
|
|
{
|
|
const DWORD windowStyle = GetWindowLongW(_handle, GWL_STYLE);
|
|
const DWORD windowExStyle = GetWindowLongW(_handle, GWL_EXSTYLE);
|
|
RECT borderRect = { 0, 0, 0, 0 };
|
|
AdjustWindowRectEx(&borderRect, windowStyle, false, windowExStyle);
|
|
borderWidth = borderRect.right - borderRect.left;
|
|
borderHeight = borderRect.bottom - borderRect.top;
|
|
}
|
|
|
|
minMax->ptMinTrackSize.x = (int32)_settings.MinimumSize.X;
|
|
minMax->ptMinTrackSize.y = (int32)_settings.MinimumSize.Y;
|
|
minMax->ptMaxTrackSize.x = (int32)_settings.MaximumSize.X + borderWidth;
|
|
minMax->ptMaxTrackSize.y = (int32)_settings.MaximumSize.Y + borderHeight;
|
|
|
|
// Include Windows task bar size into maximized tool window
|
|
WINDOWPLACEMENT e;
|
|
if (!IsFullscreen() && ((GetWindowPlacement(_handle, &e) && (e.showCmd == SW_SHOWMAXIMIZED || e.showCmd == SW_SHOWMINIMIZED)) || _isDuringMaximize))
|
|
{
|
|
// Adjust the maximized size and position to fit the work area of the correct monitor
|
|
const HMONITOR monitor = MonitorFromWindow(_handle, MONITOR_DEFAULTTONEAREST);
|
|
if (monitor != nullptr)
|
|
{
|
|
MONITORINFO monitorInfo;
|
|
monitorInfo.cbSize = sizeof(MONITORINFO);
|
|
if (::GetMonitorInfoW(monitor, &monitorInfo))
|
|
{
|
|
minMax->ptMaxPosition.x = Math::Abs(monitorInfo.rcWork.left - monitorInfo.rcMonitor.left);
|
|
minMax->ptMaxPosition.y = Math::Abs(monitorInfo.rcWork.top - monitorInfo.rcMonitor.top);
|
|
minMax->ptMaxSize.x = Math::Abs(monitorInfo.rcWork.right - monitorInfo.rcWork.left);
|
|
minMax->ptMaxSize.y = Math::Abs(monitorInfo.rcWork.bottom - monitorInfo.rcWork.top);
|
|
}
|
|
}
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
case WM_SYSCOMMAND:
|
|
// Prevent moving/sizing in full screen mode
|
|
if (IsFullscreen())
|
|
{
|
|
switch ((wParam & 0xFFF0))
|
|
{
|
|
case SC_MOVE:
|
|
case SC_SIZE:
|
|
case SC_MAXIMIZE:
|
|
case SC_KEYMENU:
|
|
return 0;
|
|
}
|
|
}
|
|
break;
|
|
case WM_CREATE:
|
|
return 0;
|
|
case WM_SIZE:
|
|
{
|
|
if (SIZE_MINIMIZED == wParam)
|
|
{
|
|
_minimized = true;
|
|
_maximized = false;
|
|
}
|
|
else
|
|
{
|
|
RECT rcCurrentClient;
|
|
GetClientRect(_handle, &rcCurrentClient);
|
|
if (rcCurrentClient.top == 0 && rcCurrentClient.bottom == 0)
|
|
{
|
|
// Rapidly clicking the task bar to minimize and restore a window can cause a WM_SIZE message with SIZE_RESTORED when
|
|
// the window has actually become minimized due to rapid change so just ignore this message.
|
|
}
|
|
else if (SIZE_MAXIMIZED == wParam)
|
|
{
|
|
_minimized = false;
|
|
_maximized = true;
|
|
CheckForWindowResize();
|
|
UpdateRegion();
|
|
}
|
|
else if (SIZE_RESTORED == wParam)
|
|
{
|
|
if (_maximized)
|
|
{
|
|
_maximized = false;
|
|
CheckForWindowResize();
|
|
UpdateRegion();
|
|
}
|
|
else if (_minimized)
|
|
{
|
|
_minimized = false;
|
|
CheckForWindowResize();
|
|
}
|
|
else if (_isResizing)
|
|
{
|
|
// If we're neither maximized nor minimized, the window size is changing by the user dragging the window edges.
|
|
// In this case, we don't resize yet -- we wait until the user stops dragging, and a WM_EXITSIZEMOVE message comes.
|
|
UpdateRegion();
|
|
}
|
|
else
|
|
{
|
|
// This WM_SIZE come from resizing the window via an API like SetWindowPos() so resize
|
|
CheckForWindowResize();
|
|
}
|
|
}
|
|
}
|
|
break;
|
|
}
|
|
case WM_DPICHANGED:
|
|
{
|
|
// Maybe https://stackoverflow.com/a/45110656
|
|
_dpi = HIWORD(wParam);
|
|
_dpiScale = (float)_dpi / (float)DefaultDPI;
|
|
RECT* windowRect = (RECT*)lParam;
|
|
SetWindowPos(_handle, nullptr, windowRect->left, windowRect->top, windowRect->right - windowRect->left, windowRect->bottom - windowRect->top, SWP_NOZORDER | SWP_NOACTIVATE);
|
|
// TODO: Recalculate fonts
|
|
return 0;
|
|
}
|
|
case WM_ENTERSIZEMOVE:
|
|
{
|
|
_isResizing = true;
|
|
break;
|
|
}
|
|
case WM_EXITSIZEMOVE:
|
|
_isResizing = false;
|
|
CheckForWindowResize();
|
|
UpdateRegion();
|
|
break;
|
|
case WM_SETFOCUS:
|
|
OnGotFocus();
|
|
break;
|
|
case WM_KILLFOCUS:
|
|
OnLostFocus();
|
|
break;
|
|
case WM_ACTIVATEAPP:
|
|
if (wParam == TRUE && !_focused)
|
|
{
|
|
OnGotFocus();
|
|
}
|
|
else if (wParam == FALSE && _focused)
|
|
{
|
|
OnLostFocus();
|
|
if (IsFullscreen() && !_isSwitchingFullScreen)
|
|
{
|
|
SetIsFullscreen(false);
|
|
}
|
|
}
|
|
break;
|
|
case WM_MENUCHAR:
|
|
// A menu is active and the user presses a key that does not correspond to any mnemonic or accelerator key so just ignore and don't beep
|
|
return MAKELRESULT(0, MNC_CLOSE);
|
|
case WM_SYSKEYDOWN:
|
|
if (wParam == VK_F4)
|
|
{
|
|
LOG(Info, "Alt+F4 pressed");
|
|
Close(ClosingReason::User);
|
|
return 0;
|
|
}
|
|
break;
|
|
case WM_POWERBROADCAST:
|
|
switch (wParam)
|
|
{
|
|
case PBT_APMQUERYSUSPEND:
|
|
// TODO: add OnSystemSuspend event
|
|
return true;
|
|
case PBT_APMRESUMESUSPEND:
|
|
// TODO: add OnSystemResume event
|
|
return true;
|
|
}
|
|
break;
|
|
case WM_CLOSE:
|
|
Close(ClosingReason::User);
|
|
return 0;
|
|
case WM_DESTROY:
|
|
{
|
|
#if USE_EDITOR
|
|
// Disable file dropping
|
|
if (_settings.AllowDragAndDrop)
|
|
{
|
|
const auto result = RevokeDragDrop(_handle);
|
|
if (result != S_OK)
|
|
LOG(Warning, "Window drag and drop service error: 0x{0:x}:{1}", result, 2);
|
|
}
|
|
#endif
|
|
|
|
// Quit
|
|
PostQuitMessage(0);
|
|
return 0;
|
|
}
|
|
}
|
|
|
|
if (_settings.AllowInput)
|
|
{
|
|
if (WindowsInput::WndProc(this, msg, wParam, lParam))
|
|
return true;
|
|
}
|
|
|
|
return DefWindowProc(_handle, msg, wParam, lParam);
|
|
}
|
|
|
|
#endif
|