2024-07-30 11:42:36 +00:00
|
|
|
// SPDX-FileCopyrightText: 2002-2024 PCSX2 Dev Team
|
|
|
|
// SPDX-License-Identifier: GPL-3.0+
|
2021-12-13 12:12:54 +00:00
|
|
|
|
|
|
|
#include "DisplayWidget.h"
|
2022-05-06 11:03:16 +00:00
|
|
|
#include "MainWindow.h"
|
2021-12-13 12:12:54 +00:00
|
|
|
#include "QtHost.h"
|
2022-06-21 07:47:32 +00:00
|
|
|
#include "QtUtils.h"
|
2021-12-13 12:12:54 +00:00
|
|
|
|
2024-01-12 11:41:54 +00:00
|
|
|
#include "pcsx2/ImGui/FullscreenUI.h"
|
2023-05-13 04:30:41 +00:00
|
|
|
#include "pcsx2/ImGui/ImGuiManager.h"
|
|
|
|
|
|
|
|
#include "common/Assertions.h"
|
2023-12-22 11:17:46 +00:00
|
|
|
#include "common/Console.h"
|
2021-12-13 12:12:54 +00:00
|
|
|
|
|
|
|
#include <QtCore/QDebug>
|
|
|
|
#include <QtGui/QGuiApplication>
|
|
|
|
#include <QtGui/QKeyEvent>
|
2022-04-15 08:45:41 +00:00
|
|
|
#include <QtGui/QResizeEvent>
|
2021-12-13 12:12:54 +00:00
|
|
|
#include <QtGui/QScreen>
|
|
|
|
#include <QtGui/QWindow>
|
|
|
|
#include <QtGui/QWindowStateChangeEvent>
|
2023-07-22 03:55:06 +00:00
|
|
|
|
|
|
|
#include <bit>
|
2021-12-13 12:12:54 +00:00
|
|
|
#include <cmath>
|
|
|
|
|
2022-05-15 08:15:27 +00:00
|
|
|
#if defined(_WIN32)
|
|
|
|
#include "common/RedtapeWindows.h"
|
|
|
|
#elif !defined(APPLE)
|
2021-12-13 12:12:54 +00:00
|
|
|
#include <qpa/qplatformnativeinterface.h>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
DisplayWidget::DisplayWidget(QWidget* parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
{
|
|
|
|
// We want a native window for both D3D and OpenGL.
|
|
|
|
setAutoFillBackground(false);
|
|
|
|
setAttribute(Qt::WA_NativeWindow, true);
|
|
|
|
setAttribute(Qt::WA_NoSystemBackground, true);
|
|
|
|
setAttribute(Qt::WA_PaintOnScreen, true);
|
2022-04-25 05:25:09 +00:00
|
|
|
setAttribute(Qt::WA_KeyCompression, false);
|
2021-12-13 12:12:54 +00:00
|
|
|
setFocusPolicy(Qt::StrongFocus);
|
|
|
|
setMouseTracking(true);
|
|
|
|
}
|
|
|
|
|
2022-05-15 08:15:27 +00:00
|
|
|
DisplayWidget::~DisplayWidget()
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (m_clip_mouse_enabled)
|
|
|
|
ClipCursor(nullptr);
|
|
|
|
#endif
|
|
|
|
}
|
2021-12-13 12:12:54 +00:00
|
|
|
|
|
|
|
int DisplayWidget::scaledWindowWidth() const
|
|
|
|
{
|
2022-10-15 09:03:52 +00:00
|
|
|
return std::max(static_cast<int>(std::ceil(static_cast<qreal>(width()) * QtUtils::GetDevicePixelRatioForWidget(this))), 1);
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int DisplayWidget::scaledWindowHeight() const
|
|
|
|
{
|
2022-10-15 09:03:52 +00:00
|
|
|
return std::max(static_cast<int>(std::ceil(static_cast<qreal>(height()) * QtUtils::GetDevicePixelRatioForWidget(this))), 1);
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
2022-06-04 15:11:54 +00:00
|
|
|
std::optional<WindowInfo> DisplayWidget::getWindowInfo()
|
2021-12-13 12:12:54 +00:00
|
|
|
{
|
2022-10-15 09:03:52 +00:00
|
|
|
std::optional<WindowInfo> ret(QtUtils::GetWindowInfoForWidget(this));
|
|
|
|
if (ret.has_value())
|
2021-12-13 12:12:54 +00:00
|
|
|
{
|
2022-10-15 09:03:52 +00:00
|
|
|
m_last_window_width = ret->surface_width;
|
|
|
|
m_last_window_height = ret->surface_height;
|
|
|
|
m_last_window_scale = ret->surface_scale;
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
2022-10-15 09:03:52 +00:00
|
|
|
return ret;
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
2022-12-04 15:00:06 +00:00
|
|
|
void DisplayWidget::updateRelativeMode(bool enabled)
|
2021-12-13 12:12:54 +00:00
|
|
|
{
|
2022-05-15 08:15:27 +00:00
|
|
|
#ifdef _WIN32
|
|
|
|
// prefer ClipCursor() over warping movement when we're using raw input
|
2022-12-04 15:00:06 +00:00
|
|
|
bool clip_cursor = enabled && false /*InputManager::IsUsingRawInput()*/;
|
|
|
|
if (m_relative_mouse_enabled == enabled && m_clip_mouse_enabled == clip_cursor)
|
2021-12-13 12:12:54 +00:00
|
|
|
return;
|
|
|
|
|
2022-12-04 15:00:06 +00:00
|
|
|
DevCon.WriteLn("updateRelativeMode(): relative=%s, clip=%s", enabled ? "yes" : "no", clip_cursor ? "yes" : "no");
|
2022-05-15 08:15:27 +00:00
|
|
|
|
|
|
|
if (!clip_cursor && m_clip_mouse_enabled)
|
2021-12-13 12:12:54 +00:00
|
|
|
{
|
2022-05-15 08:15:27 +00:00
|
|
|
m_clip_mouse_enabled = false;
|
|
|
|
ClipCursor(nullptr);
|
|
|
|
}
|
|
|
|
#else
|
2022-12-04 15:00:06 +00:00
|
|
|
if (m_relative_mouse_enabled == enabled)
|
2022-05-15 08:15:27 +00:00
|
|
|
return;
|
|
|
|
|
2022-12-04 15:00:06 +00:00
|
|
|
DevCon.WriteLn("updateRelativeMode(): relative=%s", enabled ? "yes" : "no");
|
2022-05-15 08:15:27 +00:00
|
|
|
#endif
|
2021-12-13 12:12:54 +00:00
|
|
|
|
2022-12-04 15:00:06 +00:00
|
|
|
if (enabled)
|
2022-05-15 08:15:27 +00:00
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
m_relative_mouse_enabled = !clip_cursor;
|
|
|
|
m_clip_mouse_enabled = clip_cursor;
|
|
|
|
#else
|
|
|
|
m_relative_mouse_enabled = true;
|
|
|
|
#endif
|
|
|
|
m_relative_mouse_start_pos = QCursor::pos();
|
|
|
|
updateCenterPos();
|
2021-12-13 12:12:54 +00:00
|
|
|
grabMouse();
|
|
|
|
}
|
2022-05-15 08:15:27 +00:00
|
|
|
else if (m_relative_mouse_enabled)
|
2021-12-13 12:12:54 +00:00
|
|
|
{
|
2022-05-15 08:15:27 +00:00
|
|
|
m_relative_mouse_enabled = false;
|
|
|
|
QCursor::setPos(m_relative_mouse_start_pos);
|
2021-12-13 12:12:54 +00:00
|
|
|
releaseMouse();
|
|
|
|
}
|
2022-05-15 08:15:27 +00:00
|
|
|
}
|
|
|
|
|
2022-12-04 15:00:06 +00:00
|
|
|
void DisplayWidget::updateCursor(bool hidden)
|
2022-05-15 08:15:27 +00:00
|
|
|
{
|
2022-12-04 15:00:06 +00:00
|
|
|
if (m_cursor_hidden == hidden)
|
2022-05-15 08:15:27 +00:00
|
|
|
return;
|
|
|
|
|
2022-12-04 15:00:06 +00:00
|
|
|
m_cursor_hidden = hidden;
|
|
|
|
if (hidden)
|
|
|
|
{
|
|
|
|
DevCon.WriteLn("updateCursor(): Cursor is now hidden");
|
2022-05-15 08:15:27 +00:00
|
|
|
setCursor(Qt::BlankCursor);
|
2022-12-04 15:00:06 +00:00
|
|
|
}
|
2022-05-15 08:15:27 +00:00
|
|
|
else
|
2022-12-04 15:00:06 +00:00
|
|
|
{
|
|
|
|
DevCon.WriteLn("updateCursor(): Cursor is now shown");
|
2022-05-15 08:15:27 +00:00
|
|
|
unsetCursor();
|
2022-12-04 15:00:06 +00:00
|
|
|
}
|
2022-05-15 08:15:27 +00:00
|
|
|
}
|
|
|
|
|
2022-05-15 08:20:21 +00:00
|
|
|
void DisplayWidget::handleCloseEvent(QCloseEvent* event)
|
|
|
|
{
|
|
|
|
// Closing the separate widget will either cancel the close, or trigger shutdown.
|
|
|
|
// In the latter case, it's going to destroy us, so don't let Qt do it first.
|
2023-11-20 13:27:32 +00:00
|
|
|
// Treat a close event while fullscreen as an exit, that way ALT+F4 closes PCSX2,
|
|
|
|
// rather than just the game.
|
|
|
|
if (QtHost::IsVMValid() && !isActuallyFullscreen())
|
2022-05-15 08:20:21 +00:00
|
|
|
{
|
|
|
|
QMetaObject::invokeMethod(g_main_window, "requestShutdown", Q_ARG(bool, true),
|
|
|
|
Q_ARG(bool, true), Q_ARG(bool, false));
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2023-01-28 03:33:51 +00:00
|
|
|
QMetaObject::invokeMethod(g_main_window, "requestExit", Q_ARG(bool, true));
|
2022-05-15 08:20:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// Cancel the event from closing the window.
|
|
|
|
event->ignore();
|
|
|
|
}
|
|
|
|
|
2023-09-14 14:06:27 +00:00
|
|
|
void DisplayWidget::destroy()
|
|
|
|
{
|
|
|
|
m_destroying = true;
|
|
|
|
|
|
|
|
#ifdef __APPLE__
|
|
|
|
// See Qt documentation, entire application is in full screen state, and the main
|
|
|
|
// window will get reopened fullscreen instead of windowed if we don't close the
|
|
|
|
// fullscreen window first.
|
2023-11-20 13:27:32 +00:00
|
|
|
if (isActuallyFullscreen())
|
2023-09-14 14:06:27 +00:00
|
|
|
close();
|
|
|
|
#endif
|
|
|
|
deleteLater();
|
|
|
|
}
|
|
|
|
|
2023-11-20 13:27:32 +00:00
|
|
|
bool DisplayWidget::isActuallyFullscreen() const
|
|
|
|
{
|
|
|
|
// I hate you QtWayland... have to check the parent, not ourselves.
|
|
|
|
QWidget* container = qobject_cast<QWidget*>(parent());
|
|
|
|
return container ? container->isFullScreen() : isFullScreen();
|
|
|
|
}
|
|
|
|
|
2022-05-15 08:15:27 +00:00
|
|
|
void DisplayWidget::updateCenterPos()
|
|
|
|
{
|
|
|
|
#ifdef _WIN32
|
|
|
|
if (m_clip_mouse_enabled)
|
|
|
|
{
|
|
|
|
RECT rc;
|
|
|
|
if (GetWindowRect(reinterpret_cast<HWND>(winId()), &rc))
|
|
|
|
ClipCursor(&rc);
|
|
|
|
}
|
|
|
|
else if (m_relative_mouse_enabled)
|
|
|
|
{
|
|
|
|
RECT rc;
|
|
|
|
if (GetWindowRect(reinterpret_cast<HWND>(winId()), &rc))
|
|
|
|
{
|
|
|
|
m_relative_mouse_center_pos.setX(((rc.right - rc.left) / 2) + rc.left);
|
|
|
|
m_relative_mouse_center_pos.setY(((rc.bottom - rc.top) / 2) + rc.top);
|
|
|
|
SetCursorPos(m_relative_mouse_center_pos.x(), m_relative_mouse_center_pos.y());
|
|
|
|
}
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
if (m_relative_mouse_enabled)
|
|
|
|
{
|
|
|
|
// we do a round trip here because these coordinates are dpi-unscaled
|
|
|
|
m_relative_mouse_center_pos = mapToGlobal(QPoint((width() + 1) / 2, (height() + 1) / 2));
|
|
|
|
QCursor::setPos(m_relative_mouse_center_pos);
|
|
|
|
m_relative_mouse_center_pos = QCursor::pos();
|
|
|
|
}
|
|
|
|
#endif
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
QPaintEngine* DisplayWidget::paintEngine() const
|
|
|
|
{
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DisplayWidget::event(QEvent* event)
|
|
|
|
{
|
|
|
|
switch (event->type())
|
|
|
|
{
|
|
|
|
case QEvent::KeyPress:
|
|
|
|
case QEvent::KeyRelease:
|
|
|
|
{
|
|
|
|
const QKeyEvent* key_event = static_cast<QKeyEvent*>(event);
|
2023-09-14 14:06:27 +00:00
|
|
|
|
2022-08-20 12:08:15 +00:00
|
|
|
// Forward text input to imgui.
|
|
|
|
if (ImGuiManager::WantsTextInput() && key_event->type() == QEvent::KeyPress)
|
|
|
|
{
|
2022-09-03 11:29:02 +00:00
|
|
|
// Don't forward backspace characters. We send the backspace as a normal key event,
|
|
|
|
// so if we send the character too, it double-deletes.
|
|
|
|
QString text(key_event->text());
|
|
|
|
text.remove(QChar('\b'));
|
2022-08-20 12:08:15 +00:00
|
|
|
if (!text.isEmpty())
|
|
|
|
ImGuiManager::AddTextInput(text.toStdString());
|
|
|
|
}
|
|
|
|
|
2022-04-25 05:25:09 +00:00
|
|
|
if (key_event->isAutoRepeat())
|
|
|
|
return true;
|
|
|
|
|
|
|
|
// For some reason, Windows sends "fake" key events.
|
|
|
|
// Scenario: Press shift, press F1, release shift, release F1.
|
|
|
|
// Events: Shift=Pressed, F1=Pressed, Shift=Released, **F1=Pressed**, F1=Released.
|
|
|
|
// To work around this, we keep track of keys pressed with modifiers in a list, and
|
|
|
|
// discard the press event when it's been previously activated. It's pretty gross,
|
|
|
|
// but I can't think of a better way of handling it, and there doesn't appear to be
|
|
|
|
// any window flag which changes this behavior that I can see.
|
|
|
|
|
2022-06-21 07:47:32 +00:00
|
|
|
const u32 key = QtUtils::KeyEventToCode(key_event);
|
|
|
|
const Qt::KeyboardModifiers modifiers = key_event->modifiers();
|
2022-04-25 05:25:09 +00:00
|
|
|
const bool pressed = (key_event->type() == QEvent::KeyPress);
|
|
|
|
const auto it = std::find(m_keys_pressed_with_modifiers.begin(), m_keys_pressed_with_modifiers.end(), key);
|
|
|
|
if (it != m_keys_pressed_with_modifiers.end())
|
2021-12-13 12:12:54 +00:00
|
|
|
{
|
2022-04-25 05:25:09 +00:00
|
|
|
if (pressed)
|
|
|
|
return true;
|
|
|
|
else
|
|
|
|
m_keys_pressed_with_modifiers.erase(it);
|
|
|
|
}
|
2022-06-21 07:47:32 +00:00
|
|
|
else if (modifiers != Qt::NoModifier && modifiers != Qt::KeypadModifier && pressed)
|
2022-04-25 05:25:09 +00:00
|
|
|
{
|
|
|
|
m_keys_pressed_with_modifiers.push_back(key);
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
2022-05-15 08:15:27 +00:00
|
|
|
Host::RunOnCPUThread([key, pressed]() {
|
|
|
|
InputManager::InvokeEvents(InputManager::MakeHostKeyboardKey(key), static_cast<float>(pressed));
|
|
|
|
});
|
|
|
|
|
2021-12-13 12:12:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case QEvent::MouseMove:
|
|
|
|
{
|
|
|
|
const QMouseEvent* mouse_event = static_cast<QMouseEvent*>(event);
|
|
|
|
|
|
|
|
if (!m_relative_mouse_enabled)
|
|
|
|
{
|
2022-10-15 09:03:52 +00:00
|
|
|
const qreal dpr = QtUtils::GetDevicePixelRatioForWidget(this);
|
2021-12-13 12:12:54 +00:00
|
|
|
const QPoint mouse_pos = mouse_event->pos();
|
|
|
|
|
2022-05-15 08:15:27 +00:00
|
|
|
const float scaled_x = static_cast<float>(static_cast<qreal>(mouse_pos.x()) * dpr);
|
|
|
|
const float scaled_y = static_cast<float>(static_cast<qreal>(mouse_pos.y()) * dpr);
|
|
|
|
InputManager::UpdatePointerAbsolutePosition(0, scaled_x, scaled_y);
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-05-15 08:15:27 +00:00
|
|
|
// On windows, we use winapi here. The reason being that the coordinates in QCursor
|
|
|
|
// are un-dpi-scaled, so we lose precision at higher desktop scalings.
|
|
|
|
float dx = 0.0f, dy = 0.0f;
|
|
|
|
|
|
|
|
#ifndef _WIN32
|
|
|
|
const QPoint mouse_pos = QCursor::pos();
|
|
|
|
if (mouse_pos != m_relative_mouse_center_pos)
|
|
|
|
{
|
|
|
|
dx = static_cast<float>(mouse_pos.x() - m_relative_mouse_center_pos.x());
|
|
|
|
dy = static_cast<float>(mouse_pos.y() - m_relative_mouse_center_pos.y());
|
|
|
|
QCursor::setPos(m_relative_mouse_center_pos);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
POINT mouse_pos;
|
|
|
|
if (GetCursorPos(&mouse_pos))
|
|
|
|
{
|
|
|
|
dx = static_cast<float>(mouse_pos.x - m_relative_mouse_center_pos.x());
|
|
|
|
dy = static_cast<float>(mouse_pos.y - m_relative_mouse_center_pos.y());
|
|
|
|
SetCursorPos(m_relative_mouse_center_pos.x(), m_relative_mouse_center_pos.y());
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (dx != 0.0f)
|
|
|
|
InputManager::UpdatePointerRelativeDelta(0, InputPointerAxis::X, dx);
|
|
|
|
if (dy != 0.0f)
|
|
|
|
InputManager::UpdatePointerRelativeDelta(0, InputPointerAxis::Y, dy);
|
2021-12-13 12:12:54 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case QEvent::MouseButtonPress:
|
|
|
|
case QEvent::MouseButtonDblClick:
|
|
|
|
case QEvent::MouseButtonRelease:
|
|
|
|
{
|
2023-07-22 03:55:06 +00:00
|
|
|
if (const u32 button_mask = static_cast<u32>(static_cast<const QMouseEvent*>(event)->button()))
|
2022-05-15 08:15:27 +00:00
|
|
|
{
|
2023-07-22 03:55:06 +00:00
|
|
|
Host::RunOnCPUThread([button_index = std::countr_zero(button_mask),
|
|
|
|
pressed = (event->type() != QEvent::MouseButtonRelease)]() {
|
|
|
|
InputManager::InvokeEvents(
|
|
|
|
InputManager::MakePointerButtonKey(0, button_index), static_cast<float>(pressed));
|
2022-05-15 08:15:27 +00:00
|
|
|
});
|
|
|
|
}
|
2021-12-13 12:12:54 +00:00
|
|
|
|
2022-05-15 08:15:27 +00:00
|
|
|
// don't toggle fullscreen when we're bound.. that wouldn't end well.
|
2021-12-13 12:12:54 +00:00
|
|
|
if (event->type() == QEvent::MouseButtonDblClick &&
|
|
|
|
static_cast<const QMouseEvent*>(event)->button() == Qt::LeftButton &&
|
2024-01-12 11:41:54 +00:00
|
|
|
QtHost::IsVMValid() && !FullscreenUI::HasActiveWindow() &&
|
|
|
|
((!QtHost::IsVMPaused() && !InputManager::HasAnyBindingsForKey(InputManager::MakePointerButtonKey(0, 0))) ||
|
|
|
|
(QtHost::IsVMPaused() && !ImGuiManager::WantsMouseInput())) &&
|
2021-12-13 12:12:54 +00:00
|
|
|
Host::GetBoolSettingValue("UI", "DoubleClickTogglesFullscreen", true))
|
|
|
|
{
|
|
|
|
g_emu_thread->toggleFullscreen();
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case QEvent::Wheel:
|
|
|
|
{
|
2022-05-15 08:15:27 +00:00
|
|
|
const QPoint delta_angle(static_cast<QWheelEvent*>(event)->angleDelta());
|
2022-07-02 11:51:23 +00:00
|
|
|
const float dx = std::clamp(static_cast<float>(delta_angle.x()) / QtUtils::MOUSE_WHEEL_DELTA, -1.0f, 1.0f);
|
2022-05-15 08:15:27 +00:00
|
|
|
if (dx != 0.0f)
|
|
|
|
InputManager::UpdatePointerRelativeDelta(0, InputPointerAxis::WheelX, dx);
|
|
|
|
|
2022-07-02 11:51:23 +00:00
|
|
|
const float dy = std::clamp(static_cast<float>(delta_angle.y()) / QtUtils::MOUSE_WHEEL_DELTA, -1.0f, 1.0f);
|
2022-05-15 08:15:27 +00:00
|
|
|
if (dy != 0.0f)
|
|
|
|
InputManager::UpdatePointerRelativeDelta(0, InputPointerAxis::WheelY, dy);
|
|
|
|
|
2021-12-13 12:12:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2022-05-27 03:21:56 +00:00
|
|
|
// According to https://bugreports.qt.io/browse/QTBUG-95925 the recommended practice for handling DPI change is responding to paint events
|
|
|
|
case QEvent::Paint:
|
2021-12-13 12:12:54 +00:00
|
|
|
case QEvent::Resize:
|
|
|
|
{
|
|
|
|
QWidget::event(event);
|
|
|
|
|
2022-10-15 09:03:52 +00:00
|
|
|
const float dpr = QtUtils::GetDevicePixelRatioForWidget(this);
|
2022-06-04 15:11:54 +00:00
|
|
|
const u32 scaled_width = static_cast<u32>(std::max(static_cast<int>(std::ceil(static_cast<qreal>(width()) * dpr)), 1));
|
|
|
|
const u32 scaled_height = static_cast<u32>(std::max(static_cast<int>(std::ceil(static_cast<qreal>(height()) * dpr)), 1));
|
|
|
|
|
|
|
|
// avoid spamming resize events for paint events (sent on move on windows)
|
|
|
|
if (m_last_window_width != scaled_width || m_last_window_height != scaled_height || m_last_window_scale != dpr)
|
|
|
|
{
|
|
|
|
m_last_window_width = scaled_width;
|
|
|
|
m_last_window_height = scaled_height;
|
|
|
|
m_last_window_scale = dpr;
|
|
|
|
emit windowResizedEvent(scaled_width, scaled_height, dpr);
|
|
|
|
}
|
2022-04-15 08:45:41 +00:00
|
|
|
|
2022-05-15 08:15:27 +00:00
|
|
|
updateCenterPos();
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case QEvent::Move:
|
|
|
|
{
|
|
|
|
updateCenterPos();
|
2021-12-13 12:12:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case QEvent::Close:
|
|
|
|
{
|
2023-09-14 14:06:27 +00:00
|
|
|
if (m_destroying)
|
|
|
|
return QWidget::event(event);
|
|
|
|
|
2022-05-15 08:20:21 +00:00
|
|
|
handleCloseEvent(static_cast<QCloseEvent*>(event));
|
2021-12-13 12:12:54 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
case QEvent::WindowStateChange:
|
|
|
|
{
|
|
|
|
QWidget::event(event);
|
|
|
|
|
|
|
|
if (static_cast<QWindowStateChangeEvent*>(event)->oldState() & Qt::WindowMinimized)
|
|
|
|
emit windowRestoredEvent();
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
default:
|
|
|
|
return QWidget::event(event);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DisplayContainer::DisplayContainer()
|
|
|
|
: QStackedWidget(nullptr)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
DisplayContainer::~DisplayContainer() = default;
|
|
|
|
|
2022-07-09 06:59:13 +00:00
|
|
|
bool DisplayContainer::isNeeded(bool fullscreen, bool render_to_main)
|
2021-12-13 12:12:54 +00:00
|
|
|
{
|
|
|
|
#if defined(_WIN32) || defined(__APPLE__)
|
|
|
|
return false;
|
|
|
|
#else
|
2022-07-09 06:59:13 +00:00
|
|
|
if (!isRunningOnWayland())
|
2021-12-13 12:12:54 +00:00
|
|
|
return false;
|
|
|
|
|
|
|
|
// We only need this on Wayland because of client-side decorations...
|
2022-07-09 06:59:13 +00:00
|
|
|
return (fullscreen || !render_to_main);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DisplayContainer::isRunningOnWayland()
|
|
|
|
{
|
|
|
|
#if defined(_WIN32) || defined(__APPLE__)
|
|
|
|
return false;
|
|
|
|
#else
|
2021-12-13 12:12:54 +00:00
|
|
|
const QString platform_name = QGuiApplication::platformName();
|
|
|
|
return (platform_name == QStringLiteral("wayland"));
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void DisplayContainer::setDisplayWidget(DisplayWidget* widget)
|
|
|
|
{
|
|
|
|
pxAssert(!m_display_widget);
|
|
|
|
m_display_widget = widget;
|
|
|
|
addWidget(widget);
|
|
|
|
}
|
|
|
|
|
|
|
|
DisplayWidget* DisplayContainer::removeDisplayWidget()
|
|
|
|
{
|
|
|
|
DisplayWidget* widget = m_display_widget;
|
|
|
|
pxAssert(widget);
|
|
|
|
m_display_widget = nullptr;
|
|
|
|
removeWidget(widget);
|
|
|
|
return widget;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool DisplayContainer::event(QEvent* event)
|
|
|
|
{
|
2022-05-15 08:20:21 +00:00
|
|
|
if (event->type() == QEvent::Close && m_display_widget)
|
2022-05-06 11:03:16 +00:00
|
|
|
{
|
2022-05-15 08:20:21 +00:00
|
|
|
m_display_widget->handleCloseEvent(static_cast<QCloseEvent*>(event));
|
2022-05-06 11:03:16 +00:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2021-12-13 12:12:54 +00:00
|
|
|
const bool res = QStackedWidget::event(event);
|
|
|
|
if (!m_display_widget)
|
|
|
|
return res;
|
|
|
|
|
|
|
|
switch (event->type())
|
|
|
|
{
|
|
|
|
case QEvent::WindowStateChange:
|
|
|
|
{
|
|
|
|
if (static_cast<QWindowStateChangeEvent*>(event)->oldState() & Qt::WindowMinimized)
|
|
|
|
emit m_display_widget->windowRestoredEvent();
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return res;
|
|
|
|
}
|