2022-06-19 16:17:38 +08:00
|
|
|
// SPDX-FileCopyrightText: 2022 Gary Wang <wzc782970009@gmail.com>
|
2023-06-24 14:37:54 +08:00
|
|
|
// SPDX-FileCopyrightText: 2023 Tad Young <yyc12321@outlook.com>
|
2022-06-19 16:17:38 +08:00
|
|
|
//
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
|
2020-12-29 23:28:17 +08:00
|
|
|
#include "framelesswindow.h"
|
|
|
|
|
2023-06-24 14:37:54 +08:00
|
|
|
#include <QMouseEvent>
|
|
|
|
#include <QHoverEvent>
|
2021-01-10 15:23:49 +08:00
|
|
|
#include <QApplication>
|
2020-12-29 23:28:17 +08:00
|
|
|
#include <QVBoxLayout>
|
2023-06-24 14:37:54 +08:00
|
|
|
#include <QWindow>
|
2021-01-10 15:23:49 +08:00
|
|
|
|
2020-12-29 23:28:17 +08:00
|
|
|
FramelessWindow::FramelessWindow(QWidget *parent)
|
|
|
|
: QWidget(parent)
|
|
|
|
, m_centralLayout(new QVBoxLayout(this))
|
2023-06-24 14:37:54 +08:00
|
|
|
, m_oldCursorShape(Qt::ArrowCursor)
|
|
|
|
, m_oldEdges()
|
2020-12-29 23:28:17 +08:00
|
|
|
{
|
2023-04-16 20:00:51 +08:00
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
2023-06-24 14:37:54 +08:00
|
|
|
this->setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowMinMaxButtonsHint);
|
2023-04-16 20:00:51 +08:00
|
|
|
#else
|
2022-06-25 23:52:35 +08:00
|
|
|
// There is a bug in Qt 5 that will make pressing Meta+Up cause the app
|
|
|
|
// fullscreen under Windows, see QTBUG-91226 to learn more.
|
|
|
|
// The bug seems no longer exists in Qt 6 (I only tested it under Qt 6.3.0).
|
2021-02-19 19:22:47 +08:00
|
|
|
this->setWindowFlags(Qt::Window | Qt::FramelessWindowHint | Qt::WindowMinimizeButtonHint);
|
2022-06-25 23:52:35 +08:00
|
|
|
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
2023-06-24 14:37:54 +08:00
|
|
|
this->setMouseTracking(true);
|
|
|
|
this->setAttribute(Qt::WA_Hover, true);
|
|
|
|
this->installEventFilter(this);
|
2020-12-29 23:28:17 +08:00
|
|
|
|
2021-10-02 19:57:42 +08:00
|
|
|
m_centralLayout->setContentsMargins(QMargins());
|
2020-12-29 23:28:17 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
void FramelessWindow::setCentralWidget(QWidget *widget)
|
|
|
|
{
|
|
|
|
if (m_centralWidget) {
|
|
|
|
m_centralLayout->removeWidget(m_centralWidget);
|
|
|
|
m_centralWidget->deleteLater();
|
|
|
|
}
|
|
|
|
|
|
|
|
m_centralLayout->addWidget(widget);
|
|
|
|
m_centralWidget = widget;
|
|
|
|
}
|
2021-01-10 14:57:01 +08:00
|
|
|
|
2023-06-24 14:37:54 +08:00
|
|
|
void FramelessWindow::installResizeCapture(QObject* widget)
|
2021-01-10 14:57:01 +08:00
|
|
|
{
|
2023-06-24 14:37:54 +08:00
|
|
|
widget->installEventFilter(this);
|
|
|
|
}
|
2021-01-10 14:57:01 +08:00
|
|
|
|
2023-06-24 14:37:54 +08:00
|
|
|
bool FramelessWindow::eventFilter(QObject* o, QEvent* e)
|
|
|
|
{
|
|
|
|
switch (e->type()) {
|
|
|
|
case QEvent::HoverMove:
|
|
|
|
{
|
|
|
|
QWidget* wg = qobject_cast<QWidget*>(o);
|
|
|
|
if (wg != nullptr)
|
|
|
|
return mouseHover(static_cast<QHoverEvent*>(e), wg);
|
2021-01-10 14:57:01 +08:00
|
|
|
|
2023-06-24 14:37:54 +08:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
case QEvent::MouseButtonPress:
|
|
|
|
return mousePress(static_cast<QMouseEvent*>(e));
|
|
|
|
}
|
|
|
|
|
|
|
|
return QWidget::eventFilter(o, e);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FramelessWindow::mouseHover(QHoverEvent* event, QWidget* wg)
|
|
|
|
{
|
2023-06-24 16:43:31 +08:00
|
|
|
if (!isMaximized() && !isFullScreen()) {
|
|
|
|
QWindow* win = window()->windowHandle();
|
|
|
|
Qt::Edges edges = this->getEdgesByPos(wg->mapToGlobal(event->oldPos()), win->frameGeometry());
|
|
|
|
|
|
|
|
// backup & restore cursor shape
|
|
|
|
if (edges && !m_oldEdges)
|
|
|
|
// entering the edge. backup cursor shape
|
|
|
|
m_oldCursorShape = win->cursor().shape();
|
|
|
|
if (!edges && m_oldEdges)
|
|
|
|
// leaving the edge. restore cursor shape
|
|
|
|
win->setCursor(m_oldCursorShape);
|
|
|
|
|
|
|
|
// save the latest edges status
|
|
|
|
m_oldEdges = edges;
|
|
|
|
|
|
|
|
// show resize cursor shape if cursor is within border
|
|
|
|
if (edges) {
|
|
|
|
win->setCursor(this->getCursorByEdge(edges, Qt::ArrowCursor));
|
|
|
|
return true;
|
|
|
|
}
|
2023-06-24 14:37:54 +08:00
|
|
|
}
|
2021-01-10 14:57:01 +08:00
|
|
|
|
2023-06-24 14:37:54 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool FramelessWindow::mousePress(QMouseEvent* event)
|
|
|
|
{
|
2023-06-24 16:43:31 +08:00
|
|
|
if (event->buttons() & Qt::LeftButton && !isMaximized() && !isFullScreen()) {
|
2023-06-24 14:37:54 +08:00
|
|
|
QWindow* win = window()->windowHandle();
|
|
|
|
#if QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
|
|
|
Qt::Edges edges = this->getEdgesByPos(event->globalPosition().toPoint(), win->frameGeometry());
|
|
|
|
#else
|
|
|
|
Qt::Edges edges = this->getEdgesByPos(event->globalPos(), win->frameGeometry());
|
|
|
|
#endif // QT_VERSION >= QT_VERSION_CHECK(6, 0, 0)
|
|
|
|
if (edges) {
|
|
|
|
win->startSystemResize(edges);
|
2021-01-10 14:57:01 +08:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
2023-06-24 14:37:54 +08:00
|
|
|
|
|
|
|
Qt::CursorShape FramelessWindow::getCursorByEdge(const Qt::Edges& edges, Qt::CursorShape default_cursor)
|
|
|
|
{
|
|
|
|
if ((edges == (Qt::TopEdge | Qt::LeftEdge)) || (edges == (Qt::RightEdge | Qt::BottomEdge)))
|
|
|
|
return Qt::SizeFDiagCursor;
|
|
|
|
else if ((edges == (Qt::TopEdge | Qt::RightEdge)) || (edges == (Qt::LeftEdge | Qt::BottomEdge)))
|
|
|
|
return Qt::SizeBDiagCursor;
|
|
|
|
else if (edges & (Qt::TopEdge | Qt::BottomEdge))
|
|
|
|
return Qt::SizeVerCursor;
|
|
|
|
else if (edges & (Qt::LeftEdge | Qt::RightEdge))
|
|
|
|
return Qt::SizeHorCursor;
|
|
|
|
else
|
|
|
|
return default_cursor;
|
|
|
|
}
|
|
|
|
|
|
|
|
Qt::Edges FramelessWindow::getEdgesByPos(const QPoint gpos, const QRect& winrect)
|
|
|
|
{
|
|
|
|
const int borderWidth = 8;
|
|
|
|
Qt::Edges edges;
|
|
|
|
|
|
|
|
int x = gpos.x() - winrect.x();
|
|
|
|
int y = gpos.y() - winrect.y();
|
|
|
|
|
|
|
|
if (x < borderWidth)
|
|
|
|
edges |= Qt::LeftEdge;
|
|
|
|
if (x > (winrect.width() - borderWidth))
|
|
|
|
edges |= Qt::RightEdge;
|
|
|
|
if (y < borderWidth)
|
|
|
|
edges |= Qt::TopEdge;
|
|
|
|
if (y > (winrect.height() - borderWidth))
|
|
|
|
edges |= Qt::BottomEdge;
|
|
|
|
|
|
|
|
return edges;
|
|
|
|
}
|
|
|
|
|