2024-09-05 22:05:05 +08:00
|
|
|
#include "Frameless.h"
|
|
|
|
#include "Utilities.h"
|
|
|
|
#include <QDateTime>
|
|
|
|
#include <QGuiApplication>
|
|
|
|
#include <QQuickWindow>
|
|
|
|
#include <QScreen>
|
|
|
|
|
|
|
|
#ifdef Q_OS_WIN
|
2024-09-05 22:17:23 +08:00
|
|
|
#include <dwmapi.h>
|
|
|
|
#include <windows.h>
|
|
|
|
#include <windowsx.h>
|
|
|
|
|
|
|
|
struct ACCENT_POLICY {
|
|
|
|
DWORD dwAccentState;
|
|
|
|
DWORD dwAccentFlags;
|
|
|
|
DWORD dwGradientColor; // #AABBGGRR
|
|
|
|
DWORD dwAnimationId;
|
|
|
|
};
|
|
|
|
using PACCENT_POLICY = ACCENT_POLICY *;
|
|
|
|
struct WINDOWCOMPOSITIONATTRIBDATA {
|
|
|
|
WINDOWCOMPOSITIONATTRIB Attrib;
|
|
|
|
PVOID pvData;
|
|
|
|
SIZE_T cbData;
|
|
|
|
};
|
|
|
|
using PWINDOWCOMPOSITIONATTRIBDATA = WINDOWCOMPOSITIONATTRIBDATA *;
|
|
|
|
|
|
|
|
typedef HRESULT (WINAPI *DwmSetWindowAttributeFunc)(HWND hwnd, DWORD dwAttribute, LPCVOID pvAttribute, DWORD cbAttribute);
|
|
|
|
typedef HRESULT (WINAPI *DwmExtendFrameIntoClientAreaFunc)(HWND hwnd, const MARGINS *pMarInset);
|
|
|
|
typedef HRESULT (WINAPI *DwmIsCompositionEnabledFunc)(BOOL *pfEnabled);
|
|
|
|
typedef HRESULT (WINAPI *DwmEnableBlurBehindWindowFunc)(HWND hWnd, const DWM_BLURBEHIND *pBlurBehind);
|
|
|
|
typedef BOOL (WINAPI *SetWindowCompositionAttributeFunc)(HWND hwnd, const WINDOWCOMPOSITIONATTRIBDATA *);
|
2024-09-05 22:05:05 +08:00
|
|
|
|
|
|
|
static DwmSetWindowAttributeFunc pDwmSetWindowAttribute = nullptr;
|
|
|
|
static DwmExtendFrameIntoClientAreaFunc pDwmExtendFrameIntoClientArea = nullptr;
|
|
|
|
static DwmIsCompositionEnabledFunc pDwmIsCompositionEnabled = nullptr;
|
|
|
|
static DwmEnableBlurBehindWindowFunc pDwmEnableBlurBehindWindow = nullptr;
|
|
|
|
static SetWindowCompositionAttributeFunc pSetWindowCompositionAttribute = nullptr;
|
|
|
|
|
|
|
|
static RTL_OSVERSIONINFOW GetRealOSVersionImpl() {
|
|
|
|
HMODULE hMod = ::GetModuleHandleW(L"ntdll.dll");
|
|
|
|
using RtlGetVersionPtr = NTSTATUS(WINAPI *)(PRTL_OSVERSIONINFOW);
|
|
|
|
auto pRtlGetVersion =
|
|
|
|
reinterpret_cast<RtlGetVersionPtr>(::GetProcAddress(hMod, "RtlGetVersion"));
|
|
|
|
RTL_OSVERSIONINFOW rovi{};
|
|
|
|
rovi.dwOSVersionInfoSize = sizeof(rovi);
|
|
|
|
pRtlGetVersion(&rovi);
|
|
|
|
return rovi;
|
|
|
|
}
|
|
|
|
|
|
|
|
RTL_OSVERSIONINFOW GetRealOSVersion() {
|
|
|
|
static const auto result = GetRealOSVersionImpl();
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isWin8OrGreater() {
|
|
|
|
RTL_OSVERSIONINFOW rovi = GetRealOSVersion();
|
|
|
|
return (rovi.dwMajorVersion > 6) || (rovi.dwMajorVersion == 6 && rovi.dwMinorVersion >= 2);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isWin8Point1OrGreater() {
|
|
|
|
RTL_OSVERSIONINFOW rovi = GetRealOSVersion();
|
|
|
|
return (rovi.dwMajorVersion > 6) || (rovi.dwMajorVersion == 6 && rovi.dwMinorVersion >= 3);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isWin10OrGreater() {
|
|
|
|
RTL_OSVERSIONINFOW rovi = GetRealOSVersion();
|
|
|
|
return (rovi.dwMajorVersion > 10) || (rovi.dwMajorVersion == 10 && rovi.dwMinorVersion >= 0);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isWin101809OrGreater() {
|
|
|
|
RTL_OSVERSIONINFOW rovi = GetRealOSVersion();
|
|
|
|
return (rovi.dwMajorVersion > 10) ||
|
|
|
|
(rovi.dwMajorVersion == 10 && rovi.dwMinorVersion >= 0 && rovi.dwBuildNumber >= 17763);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isWin101903OrGreater() {
|
|
|
|
RTL_OSVERSIONINFOW rovi = GetRealOSVersion();
|
|
|
|
return (rovi.dwMajorVersion > 10) ||
|
|
|
|
(rovi.dwMajorVersion == 10 && rovi.dwMinorVersion >= 0 && rovi.dwBuildNumber >= 18362);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isWin11OrGreater() {
|
|
|
|
RTL_OSVERSIONINFOW rovi = GetRealOSVersion();
|
|
|
|
return (rovi.dwMajorVersion > 10) ||
|
|
|
|
(rovi.dwMajorVersion == 10 && rovi.dwMinorVersion >= 0 && rovi.dwBuildNumber >= 22000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isWin1122H2OrGreater() {
|
|
|
|
RTL_OSVERSIONINFOW rovi = GetRealOSVersion();
|
|
|
|
return (rovi.dwMajorVersion > 10) ||
|
|
|
|
(rovi.dwMajorVersion == 10 && rovi.dwMinorVersion >= 0 && rovi.dwBuildNumber >= 22621);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isWin10Only() {
|
|
|
|
return isWin10OrGreater() && !isWin11OrGreater();
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isWin7Only() {
|
|
|
|
RTL_OSVERSIONINFOW rovi = GetRealOSVersion();
|
|
|
|
return rovi.dwMajorVersion == 7;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline QByteArray qtNativeEventType() {
|
|
|
|
static const auto result = "windows_generic_MSG";
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool initializeFunctionPointers() {
|
|
|
|
HMODULE module = LoadLibraryW(L"dwmapi.dll");
|
|
|
|
if (module) {
|
|
|
|
if (!pDwmSetWindowAttribute) {
|
|
|
|
pDwmSetWindowAttribute = reinterpret_cast<DwmSetWindowAttributeFunc>(
|
|
|
|
GetProcAddress(module, "DwmSetWindowAttribute"));
|
|
|
|
if (!pDwmSetWindowAttribute) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!pDwmExtendFrameIntoClientArea) {
|
|
|
|
pDwmExtendFrameIntoClientArea = reinterpret_cast<DwmExtendFrameIntoClientAreaFunc>(
|
|
|
|
GetProcAddress(module, "DwmExtendFrameIntoClientArea"));
|
|
|
|
if (!pDwmExtendFrameIntoClientArea) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!pDwmIsCompositionEnabled) {
|
|
|
|
pDwmIsCompositionEnabled = reinterpret_cast<DwmIsCompositionEnabledFunc>(
|
|
|
|
::GetProcAddress(module, "DwmIsCompositionEnabled"));
|
|
|
|
if (!pDwmIsCompositionEnabled) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!pDwmEnableBlurBehindWindow) {
|
|
|
|
pDwmEnableBlurBehindWindow =
|
|
|
|
reinterpret_cast<DwmEnableBlurBehindWindowFunc>(
|
|
|
|
GetProcAddress(module, "DwmEnableBlurBehindWindow"));
|
|
|
|
if (!pDwmEnableBlurBehindWindow) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!pSetWindowCompositionAttribute) {
|
|
|
|
HMODULE user32 = LoadLibraryW(L"user32.dll");
|
|
|
|
if (!user32) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
pSetWindowCompositionAttribute = reinterpret_cast<SetWindowCompositionAttributeFunc>(
|
|
|
|
GetProcAddress(user32, "SetWindowCompositionAttribute"));
|
|
|
|
if (!pSetWindowCompositionAttribute) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool isCompositionEnabled() {
|
|
|
|
if(initializeFunctionPointers()){
|
|
|
|
BOOL composition_enabled = false;
|
|
|
|
pDwmIsCompositionEnabled(&composition_enabled);
|
|
|
|
return composition_enabled;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline void setShadow(HWND hwnd) {
|
|
|
|
const MARGINS shadow = {1, 0, 0, 0};
|
|
|
|
if (initializeFunctionPointers()) {
|
|
|
|
pDwmExtendFrameIntoClientArea(hwnd, &shadow);
|
|
|
|
}
|
|
|
|
if(isWin7Only()){
|
|
|
|
SetClassLong(hwnd, GCL_STYLE, GetClassLong(hwnd, GCL_STYLE) | CS_DROPSHADOW);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool setWindowDarkMode(HWND hwnd, const BOOL enable) {
|
|
|
|
if (!initializeFunctionPointers()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return bool(pDwmSetWindowAttribute(hwnd, 20, &enable, sizeof(BOOL)));
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline bool setWindowEffect(HWND hwnd, const QString &key, const bool &enable) {
|
|
|
|
static constexpr const MARGINS extendedMargins = {-1, -1, -1, -1};
|
|
|
|
if (key == QStringLiteral("mica")) {
|
|
|
|
if (!isWin11OrGreater() || !initializeFunctionPointers()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (enable) {
|
|
|
|
pDwmExtendFrameIntoClientArea(hwnd, &extendedMargins);
|
|
|
|
if (isWin1122H2OrGreater()) {
|
|
|
|
const DWORD backdropType = _DWMSBT_MAINWINDOW;
|
|
|
|
pDwmSetWindowAttribute(hwnd, 38, &backdropType, sizeof(backdropType));
|
|
|
|
} else {
|
|
|
|
const BOOL enable = TRUE;
|
|
|
|
pDwmSetWindowAttribute(hwnd, 1029, &enable, sizeof(enable));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (isWin1122H2OrGreater()) {
|
|
|
|
const DWORD backdropType = _DWMSBT_AUTO;
|
|
|
|
pDwmSetWindowAttribute(hwnd, 38, &backdropType, sizeof(backdropType));
|
|
|
|
} else {
|
|
|
|
const BOOL enable = FALSE;
|
|
|
|
pDwmSetWindowAttribute(hwnd, 1029, &enable, sizeof(enable));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key == QStringLiteral("mica-alt")) {
|
|
|
|
if (!isWin1122H2OrGreater() || !initializeFunctionPointers()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (enable) {
|
|
|
|
pDwmExtendFrameIntoClientArea(hwnd, &extendedMargins);
|
|
|
|
const DWORD backdropType = _DWMSBT_TABBEDWINDOW;
|
|
|
|
pDwmSetWindowAttribute(hwnd, 38, &backdropType, sizeof(backdropType));
|
|
|
|
} else {
|
|
|
|
const DWORD backdropType = _DWMSBT_AUTO;
|
|
|
|
pDwmSetWindowAttribute(hwnd, 38, &backdropType, sizeof(backdropType));
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key == QStringLiteral("acrylic")) {
|
|
|
|
if (!isWin11OrGreater() || !initializeFunctionPointers()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (enable) {
|
|
|
|
pDwmExtendFrameIntoClientArea(hwnd, &extendedMargins);
|
|
|
|
DWORD system_backdrop_type = _DWMSBT_TRANSIENTWINDOW;
|
|
|
|
pDwmSetWindowAttribute(hwnd, 38, &system_backdrop_type, sizeof(DWORD));
|
|
|
|
} else {
|
|
|
|
const DWORD backdropType = _DWMSBT_AUTO;
|
|
|
|
pDwmSetWindowAttribute(hwnd, 38, &backdropType, sizeof(backdropType));
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (key == QStringLiteral("dwm-blur")) {
|
|
|
|
if ((isWin7Only() && !isCompositionEnabled()) || !initializeFunctionPointers()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
if (enable) {
|
|
|
|
if (isWin8OrGreater()) {
|
|
|
|
ACCENT_POLICY policy{};
|
|
|
|
policy.dwAccentState = ACCENT_ENABLE_BLURBEHIND;
|
|
|
|
policy.dwAccentFlags = ACCENT_NONE;
|
|
|
|
WINDOWCOMPOSITIONATTRIBDATA wcad{};
|
|
|
|
wcad.Attrib = WCA_ACCENT_POLICY;
|
|
|
|
wcad.pvData = &policy;
|
|
|
|
wcad.cbData = sizeof(policy);
|
|
|
|
pSetWindowCompositionAttribute(hwnd, &wcad);
|
|
|
|
} else {
|
|
|
|
DWM_BLURBEHIND bb{};
|
|
|
|
bb.fEnable = TRUE;
|
|
|
|
bb.dwFlags = DWM_BB_ENABLE;
|
|
|
|
pDwmEnableBlurBehindWindow(hwnd, &bb);
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if (isWin8OrGreater()) {
|
|
|
|
ACCENT_POLICY policy{};
|
|
|
|
policy.dwAccentState = ACCENT_DISABLED;
|
|
|
|
policy.dwAccentFlags = ACCENT_NONE;
|
|
|
|
WINDOWCOMPOSITIONATTRIBDATA wcad{};
|
|
|
|
wcad.Attrib = WCA_ACCENT_POLICY;
|
|
|
|
wcad.pvData = &policy;
|
|
|
|
wcad.cbData = sizeof(policy);
|
|
|
|
pSetWindowCompositionAttribute(hwnd, &wcad);
|
|
|
|
} else {
|
|
|
|
DWM_BLURBEHIND bb{};
|
|
|
|
bb.fEnable = FALSE;
|
|
|
|
bb.dwFlags = DWM_BB_ENABLE;
|
|
|
|
pDwmEnableBlurBehindWindow(hwnd, &bb);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
bool containsCursorToItem(QQuickItem *item) {
|
|
|
|
if (!item || !item->isVisible()) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
auto point = item->window()->mapFromGlobal(QCursor::pos());
|
|
|
|
auto rect = QRectF(item->mapToItem(item->window()->contentItem(), QPointF(0, 0)), item->size());
|
|
|
|
if (rect.contains(point)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
Frameless::Frameless(QQuickItem *parent) : QQuickItem{parent} {
|
|
|
|
m_fixSize = false;
|
|
|
|
m_appBar = nullptr;
|
|
|
|
m_maximizeButton = nullptr;
|
|
|
|
m_minimizedButton = nullptr;
|
|
|
|
m_closeButton = nullptr;
|
|
|
|
m_topmost = false;
|
|
|
|
m_disabled = false;
|
|
|
|
m_effect = "normal";
|
|
|
|
m_effective = false;
|
|
|
|
m_isWindows11OrGreater = Utilities::instance()->isWindows11OrGreater();
|
|
|
|
}
|
|
|
|
|
|
|
|
Frameless::~Frameless() = default;
|
|
|
|
|
|
|
|
[[maybe_unused]] void Frameless::onDestruction() {
|
|
|
|
QGuiApplication::instance()->removeNativeEventFilter(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Frameless::componentComplete() {
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
HWND hwnd = reinterpret_cast<HWND>(window()->winId());
|
|
|
|
if (isWin11OrGreater()) {
|
|
|
|
availableEffects({"mica", "mica-alt", "acrylic", "dwm-blur", "normal"});
|
|
|
|
} else {
|
|
|
|
availableEffects({"dwm-blur","normal"});
|
|
|
|
}
|
2024-09-05 22:17:23 +08:00
|
|
|
if (!m_effect.isEmpty() && m_useSystemEffect) {
|
|
|
|
effective(setWindowEffect(hwnd, m_effect, true));
|
2024-09-05 22:05:05 +08:00
|
|
|
if (effective()) {
|
2024-09-05 22:17:23 +08:00
|
|
|
m_currentEffect = effect();
|
2024-09-05 22:05:05 +08:00
|
|
|
}
|
|
|
|
}
|
|
|
|
connect(this, &Frameless::effectChanged, this, [hwnd, this] {
|
2024-09-05 22:17:23 +08:00
|
|
|
if (effect() == m_currentEffect) {
|
2024-09-05 22:05:05 +08:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (effective()) {
|
2024-09-05 22:17:23 +08:00
|
|
|
setWindowEffect(hwnd, m_currentEffect, false);
|
2024-09-05 22:05:05 +08:00
|
|
|
}
|
|
|
|
effective(setWindowEffect(hwnd, effect(), true));
|
|
|
|
if (effective()) {
|
2024-09-05 22:17:23 +08:00
|
|
|
m_currentEffect = effect();
|
|
|
|
m_useSystemEffect = true;
|
2024-09-05 22:05:05 +08:00
|
|
|
} else {
|
2024-09-05 22:17:23 +08:00
|
|
|
m_effect = "normal";
|
|
|
|
m_currentEffect = "normal";
|
|
|
|
m_useSystemEffect = false;
|
2024-09-05 22:05:05 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
connect(this, &Frameless::useSystemEffectChanged, this, [this] {
|
2024-09-05 22:17:23 +08:00
|
|
|
if (!m_useSystemEffect) {
|
2024-09-05 22:05:05 +08:00
|
|
|
effect("normal");
|
|
|
|
}
|
|
|
|
});
|
|
|
|
connect(this, &Frameless::isDarkModeChanged, this, [hwnd, this] {
|
2024-09-05 22:17:23 +08:00
|
|
|
if (effective() && !m_currentEffect.isEmpty() && m_currentEffect != "normal") {
|
|
|
|
setWindowDarkMode(hwnd, m_isDarkMode);
|
2024-09-05 22:05:05 +08:00
|
|
|
}
|
|
|
|
});
|
|
|
|
#endif
|
|
|
|
if (m_disabled) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
int w = window()->width();
|
|
|
|
int h = window()->height();
|
|
|
|
m_current = window()->winId();
|
|
|
|
window()->setFlags((window()->flags()) | Qt::CustomizeWindowHint | Qt::WindowMinimizeButtonHint | Qt::WindowCloseButtonHint);
|
|
|
|
if (!m_fixSize) {
|
|
|
|
window()->setFlag(Qt::WindowMaximizeButtonHint);
|
|
|
|
}
|
|
|
|
window()->installEventFilter(this);
|
|
|
|
QGuiApplication::instance()->installNativeEventFilter(this);
|
|
|
|
if (m_maximizeButton) {
|
|
|
|
setHitTestVisible(m_maximizeButton);
|
|
|
|
}
|
|
|
|
if (m_minimizedButton) {
|
|
|
|
setHitTestVisible(m_minimizedButton);
|
|
|
|
}
|
|
|
|
if (m_closeButton) {
|
|
|
|
setHitTestVisible(m_closeButton);
|
|
|
|
}
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
#if (QT_VERSION == QT_VERSION_CHECK(6, 5, 3))
|
|
|
|
qWarning()<<"Qt's own frameless bug, currently only exist in 6.5.3, please use other versions";
|
|
|
|
#endif
|
|
|
|
if(!hwnd){
|
|
|
|
hwnd = reinterpret_cast<HWND>(window()->winId());
|
|
|
|
}
|
|
|
|
DWORD style = ::GetWindowLongPtr(hwnd, GWL_STYLE);
|
|
|
|
# if (QT_VERSION == QT_VERSION_CHECK(6, 7, 2))
|
|
|
|
style &= ~(WS_MINIMIZEBOX | WS_MAXIMIZEBOX | WS_SYSMENU);
|
|
|
|
# endif
|
2024-09-05 22:17:23 +08:00
|
|
|
if (m_fixSize) {
|
2024-09-05 22:05:05 +08:00
|
|
|
::SetWindowLongPtr(hwnd, GWL_STYLE, style | WS_THICKFRAME | WS_CAPTION);;
|
|
|
|
for (int i = 0; i <= QGuiApplication::screens().count() - 1; ++i) {
|
|
|
|
connect(QGuiApplication::screens().at(i), &QScreen::logicalDotsPerInchChanged, this, [=] {
|
|
|
|
SetWindowPos(hwnd, nullptr, 0, 0, 0, 0, SWP_NOZORDER | SWP_NOOWNERZORDER | SWP_NOMOVE | SWP_FRAMECHANGED);
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
::SetWindowLongPtr(hwnd, GWL_STYLE, style | WS_MAXIMIZEBOX | WS_THICKFRAME | WS_CAPTION);
|
|
|
|
}
|
|
|
|
SetWindowPos(hwnd, nullptr, 0, 0, 0, 0, SWP_NOZORDER | SWP_NOOWNERZORDER | SWP_NOMOVE | SWP_NOSIZE | SWP_FRAMECHANGED);
|
|
|
|
connect(window(), &QQuickWindow::screenChanged, this, [hwnd] {
|
|
|
|
::SetWindowPos(hwnd, nullptr, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE | SWP_NOZORDER | SWP_FRAMECHANGED | SWP_NOOWNERZORDER);
|
|
|
|
::RedrawWindow(hwnd, nullptr, nullptr, RDW_INVALIDATE | RDW_UPDATENOW);
|
|
|
|
});
|
|
|
|
if (!window()->property("_hideShadow").toBool()) {
|
|
|
|
setShadow(hwnd);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
auto appBarHeight = m_appBar->height();
|
|
|
|
h = qRound(h + appBarHeight);
|
|
|
|
if (m_fixSize) {
|
|
|
|
window()->setMaximumSize(QSize(w, h));
|
|
|
|
window()->setMinimumSize(QSize(w, h));
|
|
|
|
} else {
|
|
|
|
window()->setMinimumHeight(window()->minimumHeight() + appBarHeight);
|
|
|
|
window()->setMaximumHeight(window()->maximumHeight() + appBarHeight);
|
|
|
|
}
|
|
|
|
window()->resize(QSize(w, h));
|
|
|
|
connect(this, &Frameless::topmostChanged, this, [this] { _setWindowTopmost(topmost()); });
|
|
|
|
_setWindowTopmost(topmost());
|
|
|
|
}
|
|
|
|
|
|
|
|
[[maybe_unused]] bool Frameless::nativeEventFilter(const QByteArray &eventType, void *message,
|
|
|
|
QT_NATIVE_EVENT_RESULT_TYPE *result) {
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
if ((eventType != qtNativeEventType()) || !message) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const auto msg = static_cast<const MSG *>(message);
|
|
|
|
auto hwnd = msg->hwnd;
|
|
|
|
if (!hwnd) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const quint64 wid = reinterpret_cast<qint64>(hwnd);
|
2024-09-05 22:17:23 +08:00
|
|
|
if (wid != m_current) {
|
2024-09-05 22:05:05 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
const auto uMsg = msg->message;
|
|
|
|
const auto wParam = msg->wParam;
|
|
|
|
const auto lParam = msg->lParam;
|
|
|
|
if (uMsg == WM_WINDOWPOSCHANGING) {
|
|
|
|
auto *wp = reinterpret_cast<WINDOWPOS *>(lParam);
|
|
|
|
if (wp != nullptr && (wp->flags & SWP_NOSIZE) == 0) {
|
|
|
|
wp->flags |= SWP_NOCOPYBITS;
|
|
|
|
*result = static_cast<QT_NATIVE_EVENT_RESULT_TYPE>(::DefWindowProcW(hwnd, uMsg, wParam, lParam));
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
} else if (uMsg == WM_NCCALCSIZE && wParam == TRUE) {
|
|
|
|
bool isMaximum = ::IsZoomed(hwnd);
|
|
|
|
if (isMaximum) {
|
|
|
|
window()->setProperty("__margins",7);
|
|
|
|
}else{
|
|
|
|
window()->setProperty("__margins",0);
|
|
|
|
}
|
|
|
|
_setMaximizeHovered(false);
|
|
|
|
*result = WVR_REDRAW;
|
|
|
|
return true;
|
|
|
|
} else if (uMsg == WM_NCHITTEST) {
|
2024-09-05 22:17:23 +08:00
|
|
|
if (m_isWindows11OrGreater) {
|
2024-09-05 22:05:05 +08:00
|
|
|
if (_hitMaximizeButton()) {
|
|
|
|
if (*result == HTNOWHERE) {
|
|
|
|
*result = HTZOOM;
|
|
|
|
}
|
|
|
|
_setMaximizeHovered(true);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
_setMaximizeHovered(false);
|
|
|
|
_setMaximizePressed(false);
|
|
|
|
}
|
|
|
|
*result = 0;
|
|
|
|
POINT nativeGlobalPos{GET_X_LPARAM(lParam), GET_Y_LPARAM(lParam)};
|
|
|
|
POINT nativeLocalPos = nativeGlobalPos;
|
|
|
|
::ScreenToClient(hwnd, &nativeLocalPos);
|
|
|
|
RECT clientRect{0, 0, 0, 0};
|
|
|
|
::GetClientRect(hwnd, &clientRect);
|
|
|
|
auto clientWidth = clientRect.right - clientRect.left;
|
|
|
|
auto clientHeight = clientRect.bottom - clientRect.top;
|
2024-09-05 22:17:23 +08:00
|
|
|
bool left = nativeLocalPos.x < m_margins;
|
|
|
|
bool right = nativeLocalPos.x > clientWidth - m_margins;
|
|
|
|
bool top = nativeLocalPos.y < m_margins;
|
|
|
|
bool bottom = nativeLocalPos.y > clientHeight - m_margins;
|
2024-09-05 22:05:05 +08:00
|
|
|
*result = 0;
|
2024-09-05 22:17:23 +08:00
|
|
|
if (!m_fixSize && !_isFullScreen() && !_isMaximized()) {
|
2024-09-05 22:05:05 +08:00
|
|
|
if (left && top) {
|
|
|
|
*result = HTTOPLEFT;
|
|
|
|
} else if (left && bottom) {
|
|
|
|
*result = HTBOTTOMLEFT;
|
|
|
|
} else if (right && top) {
|
|
|
|
*result = HTTOPRIGHT;
|
|
|
|
} else if (right && bottom) {
|
|
|
|
*result = HTBOTTOMRIGHT;
|
|
|
|
} else if (left) {
|
|
|
|
*result = HTLEFT;
|
|
|
|
} else if (right) {
|
|
|
|
*result = HTRIGHT;
|
|
|
|
} else if (top) {
|
|
|
|
*result = HTTOP;
|
|
|
|
} else if (bottom) {
|
|
|
|
*result = HTBOTTOM;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (0 != *result) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
if (_hitAppBar()) {
|
|
|
|
*result = HTCAPTION;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
*result = HTCLIENT;
|
|
|
|
return true;
|
|
|
|
} else if (uMsg == WM_NCPAINT) {
|
|
|
|
*result = FALSE;
|
|
|
|
return false;
|
|
|
|
} else if (uMsg == WM_NCACTIVATE) {
|
|
|
|
*result = TRUE;
|
2024-09-05 22:17:23 +08:00
|
|
|
if (effective() || (!effect().isEmpty() && m_currentEffect != "normal")) {
|
2024-09-05 22:05:05 +08:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
2024-09-05 22:17:23 +08:00
|
|
|
} else if (m_isWindows11OrGreater && (uMsg == WM_NCLBUTTONDBLCLK || uMsg == WM_NCLBUTTONDOWN)) {
|
2024-09-05 22:05:05 +08:00
|
|
|
if (_hitMaximizeButton()) {
|
|
|
|
QMouseEvent event = QMouseEvent(QEvent::MouseButtonPress, QPoint(), QPoint(), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier);
|
2024-09-05 22:17:23 +08:00
|
|
|
QGuiApplication::sendEvent(m_maximizeButton, &event);
|
2024-09-05 22:05:05 +08:00
|
|
|
_setMaximizePressed(true);
|
|
|
|
return true;
|
|
|
|
}
|
2024-09-05 22:17:23 +08:00
|
|
|
} else if (m_isWindows11OrGreater && (uMsg == WM_NCLBUTTONUP || uMsg == WM_NCRBUTTONUP)) {
|
2024-09-05 22:05:05 +08:00
|
|
|
if (_hitMaximizeButton()) {
|
|
|
|
QMouseEvent event = QMouseEvent(QEvent::MouseButtonRelease, QPoint(), QPoint(), Qt::LeftButton, Qt::LeftButton, Qt::NoModifier);
|
2024-09-05 22:17:23 +08:00
|
|
|
QGuiApplication::sendEvent(m_maximizeButton, &event);
|
2024-09-05 22:05:05 +08:00
|
|
|
_setMaximizePressed(false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
} else if (uMsg == WM_NCRBUTTONDOWN) {
|
|
|
|
if (wParam == HTCAPTION) {
|
|
|
|
auto pos = window()->position();
|
|
|
|
auto offset = window()->mapFromGlobal(QCursor::pos());
|
|
|
|
_showSystemMenu(QPoint(pos.x() + offset.x(), pos.y() + offset.y()));
|
|
|
|
}
|
|
|
|
} else if (uMsg == WM_KEYDOWN || uMsg == WM_SYSKEYDOWN) {
|
|
|
|
const bool altPressed = ((wParam == VK_MENU) || (::GetKeyState(VK_MENU) < 0));
|
|
|
|
const bool spacePressed = ((wParam == VK_SPACE) || (::GetKeyState(VK_SPACE) < 0));
|
|
|
|
if (altPressed && spacePressed) {
|
|
|
|
auto pos = window()->position();
|
2024-09-05 22:17:23 +08:00
|
|
|
_showSystemMenu(QPoint(pos.x(), qRound(pos.y() + m_appBar->height())));
|
2024-09-05 22:05:05 +08:00
|
|
|
}
|
|
|
|
} else if (uMsg == WM_SYSCOMMAND) {
|
|
|
|
if (wParam == SC_MINIMIZE) {
|
|
|
|
if (window()->transientParent()) {
|
|
|
|
auto _hwnd = reinterpret_cast<HWND>(window()->transientParent()->winId());
|
|
|
|
::ShowWindow(_hwnd, 2);
|
|
|
|
} else {
|
|
|
|
auto _hwnd = reinterpret_cast<HWND>(window()->winId());
|
|
|
|
::ShowWindow(_hwnd, 2);
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
#else
|
|
|
|
return false;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Frameless::_isMaximized() {
|
|
|
|
return window()->visibility() == QWindow::Maximized;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Frameless::_isFullScreen() {
|
|
|
|
return window()->visibility() == QWindow::FullScreen;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Frameless::_showSystemMenu(QPoint point) {
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
QScreen *screen = window()->screen();
|
|
|
|
if (!screen) {
|
|
|
|
screen = QGuiApplication::primaryScreen();
|
|
|
|
}
|
|
|
|
if (!screen) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
const QPoint origin = screen->geometry().topLeft();
|
|
|
|
auto nativePos = QPointF(QPointF(point - origin) * window()->devicePixelRatio()).toPoint() + origin;
|
|
|
|
HWND hwnd = reinterpret_cast<HWND>(window()->winId());
|
|
|
|
auto hMenu = ::GetSystemMenu(hwnd, FALSE);
|
|
|
|
if (_isMaximized() || _isFullScreen()) {
|
|
|
|
::EnableMenuItem(hMenu, SC_MOVE, MFS_DISABLED);
|
|
|
|
::EnableMenuItem(hMenu, SC_RESTORE, MFS_ENABLED);
|
|
|
|
} else {
|
|
|
|
::EnableMenuItem(hMenu, SC_MOVE, MFS_ENABLED);
|
|
|
|
::EnableMenuItem(hMenu, SC_RESTORE, MFS_DISABLED);
|
|
|
|
}
|
2024-09-05 22:17:23 +08:00
|
|
|
if (!m_fixSize && !_isMaximized() && !_isFullScreen()) {
|
2024-09-05 22:05:05 +08:00
|
|
|
::EnableMenuItem(hMenu, SC_SIZE, MFS_ENABLED);
|
|
|
|
::EnableMenuItem(hMenu, SC_MAXIMIZE, MFS_ENABLED);
|
|
|
|
} else {
|
|
|
|
::EnableMenuItem(hMenu, SC_SIZE, MFS_DISABLED);
|
|
|
|
::EnableMenuItem(hMenu, SC_MAXIMIZE, MFS_DISABLED);
|
|
|
|
}
|
|
|
|
const int result = ::TrackPopupMenu(hMenu, (TPM_RETURNCMD | (QGuiApplication::isRightToLeft() ? TPM_RIGHTALIGN : TPM_LEFTALIGN)), nativePos.x(),
|
|
|
|
nativePos.y(), 0, hwnd, nullptr);
|
|
|
|
if (result) {
|
|
|
|
::PostMessageW(hwnd, WM_SYSCOMMAND, result, 0);
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Frameless::_hitAppBar() {
|
|
|
|
for (int i = 0; i <= m_hitTestList.size() - 1; ++i) {
|
|
|
|
auto item = m_hitTestList.at(i);
|
|
|
|
if (containsCursorToItem(item)) {
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (containsCursorToItem(m_appBar)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Frameless::_hitMaximizeButton() {
|
|
|
|
if (containsCursorToItem(m_maximizeButton)) {
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Frameless::_setMaximizePressed(bool val) {
|
|
|
|
if (m_maximizeButton) {
|
|
|
|
m_maximizeButton->setProperty("down", val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Frameless::_setMaximizeHovered(bool val) {
|
|
|
|
if (m_maximizeButton) {
|
|
|
|
m_maximizeButton->setProperty("hover", val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Frameless::_updateCursor(int edges) {
|
|
|
|
switch (edges) {
|
|
|
|
case 0:
|
|
|
|
window()->setCursor(Qt::ArrowCursor);
|
|
|
|
break;
|
|
|
|
case Qt::LeftEdge:
|
|
|
|
case Qt::RightEdge:
|
|
|
|
window()->setCursor(Qt::SizeHorCursor);
|
|
|
|
break;
|
|
|
|
case Qt::TopEdge:
|
|
|
|
case Qt::BottomEdge:
|
|
|
|
window()->setCursor(Qt::SizeVerCursor);
|
|
|
|
break;
|
|
|
|
case Qt::LeftEdge | Qt::TopEdge:
|
|
|
|
case Qt::RightEdge | Qt::BottomEdge:
|
|
|
|
window()->setCursor(Qt::SizeFDiagCursor);
|
|
|
|
break;
|
|
|
|
case Qt::RightEdge | Qt::TopEdge:
|
|
|
|
case Qt::LeftEdge | Qt::BottomEdge:
|
|
|
|
window()->setCursor(Qt::SizeBDiagCursor);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
[[maybe_unused]] void Frameless::showFullScreen() {
|
|
|
|
window()->showFullScreen();
|
|
|
|
}
|
|
|
|
|
|
|
|
void Frameless::showMaximized() {
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
HWND hwnd = reinterpret_cast<HWND>(window()->winId());
|
|
|
|
::ShowWindow(hwnd, 3);
|
|
|
|
#else
|
|
|
|
window()->setVisibility(QQuickWindow::Maximized);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
[[maybe_unused]] void Frameless::showMinimized() {
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
HWND hwnd = reinterpret_cast<HWND>(window()->winId());
|
|
|
|
::ShowWindow(hwnd, 2);
|
|
|
|
#else
|
|
|
|
window()->setVisibility(QQuickWindow::Minimized);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void Frameless::showNormal() {
|
|
|
|
window()->setVisibility(QQuickWindow::Windowed);
|
|
|
|
}
|
|
|
|
|
|
|
|
void Frameless::setHitTestVisible(QQuickItem *val) {
|
|
|
|
if (!m_hitTestList.contains(val)) {
|
|
|
|
m_hitTestList.append(val);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void Frameless::_setWindowTopmost(bool topmost) {
|
|
|
|
#ifdef Q_OS_WIN
|
|
|
|
HWND hwnd = reinterpret_cast<HWND>(window()->winId());
|
|
|
|
if (topmost) {
|
|
|
|
::SetWindowPos(hwnd, HWND_TOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
|
|
|
|
} else {
|
|
|
|
::SetWindowPos(hwnd, HWND_NOTOPMOST, 0, 0, 0, 0, SWP_NOMOVE | SWP_NOSIZE);
|
|
|
|
}
|
|
|
|
#else
|
|
|
|
window()->setFlag(Qt::WindowStaysOnTopHint,topmost);
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
bool Frameless::eventFilter(QObject *obj, QEvent *ev) {
|
|
|
|
#ifndef Q_OS_WIN
|
|
|
|
switch (ev->type()) {
|
|
|
|
case QEvent::MouseButtonPress:
|
|
|
|
if (m_edges != 0) {
|
|
|
|
QMouseEvent *event = static_cast<QMouseEvent*>(ev);
|
|
|
|
if(event->button() == Qt::LeftButton){
|
|
|
|
_updateCursor(m_edges);
|
|
|
|
window()->startSystemResize(Qt::Edges(m_edges));
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
if(_hitAppBar()){
|
|
|
|
qint64 clickTimer = QDateTime::currentMSecsSinceEpoch();
|
|
|
|
qint64 offset = clickTimer - this->m_clickTimer;
|
|
|
|
this->m_clickTimer = clickTimer;
|
|
|
|
if(offset<300){
|
|
|
|
if(_isMaximized()){
|
|
|
|
showNormal();
|
|
|
|
}else{
|
|
|
|
showMaximized();
|
|
|
|
}
|
|
|
|
}else{
|
|
|
|
window()->startSystemMove();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case QEvent::MouseButtonRelease:
|
|
|
|
m_edges = 0;
|
|
|
|
break;
|
|
|
|
case QEvent::MouseMove: {
|
|
|
|
if(_isMaximized() || _isFullScreen()){
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (m_fixSize) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
QMouseEvent *event = static_cast<QMouseEvent*>(ev);
|
|
|
|
QPoint p =
|
|
|
|
#if QT_VERSION < QT_VERSION_CHECK(6,0,0)
|
|
|
|
event->pos();
|
|
|
|
#else
|
|
|
|
event->position().toPoint();
|
|
|
|
#endif
|
|
|
|
if (p.x() >= m_margins && p.x() <= (window()->width() - m_margins) && p.y() >= m_margins &&
|
|
|
|
p.y() <= (window()->height() - m_margins)) {
|
|
|
|
if (m_edges != 0) {
|
|
|
|
m_edges = 0;
|
|
|
|
_updateCursor(m_edges);
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
m_edges = 0;
|
|
|
|
if (p.x() < m_margins) {
|
|
|
|
m_edges |= Qt::LeftEdge;
|
|
|
|
}
|
|
|
|
if (p.x() > (window()->width() - m_margins)) {
|
|
|
|
m_edges |= Qt::RightEdge;
|
|
|
|
}
|
|
|
|
if (p.y() < m_margins) {
|
|
|
|
m_edges |= Qt::TopEdge;
|
|
|
|
}
|
|
|
|
if (p.y() > (window()->height() - m_margins)) {
|
|
|
|
m_edges |= Qt::BottomEdge;
|
|
|
|
}
|
|
|
|
_updateCursor(m_edges);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
return QObject::eventFilter(obj, ev);
|
|
|
|
}
|