From e5370435a9d4297d0ba227f2237d7ed16bba7e82 Mon Sep 17 00:00:00 2001 From: Yuhang Zhao <zhaoyuhang@rankyee.com> Date: 周三, 27 12月 2023 17:15:52 +0800 Subject: [PATCH] fix some win32 issues --- src/core/qwindowkit_windows.h | 123 ++++++++++++++++++++++++++++++++++++++++ 1 files changed, 121 insertions(+), 2 deletions(-) diff --git a/src/core/qwindowkit_windows.h b/src/core/qwindowkit_windows.h index b36f429..2e0c2dd 100644 --- a/src/core/qwindowkit_windows.h +++ b/src/core/qwindowkit_windows.h @@ -4,6 +4,8 @@ #include <QtCore/qt_windows.h> #include <QtCore/qglobal.h> +#include <QWKCore/qwkglobal.h> + #ifndef GET_X_LPARAM # define GET_X_LPARAM(lp) (static_cast<int>(static_cast<short>(LOWORD(lp)))) #endif @@ -13,11 +15,11 @@ #endif #ifndef IsMinimized -# define IsMinimized(hwnd) (::IsIconic(hwnd) != FALSE) +# define IsMinimized(hwnd) (::IsIconic(hwnd)) #endif #ifndef IsMaximized -# define IsMaximized(hwnd) (::IsZoomed(hwnd) != FALSE) +# define IsMaximized(hwnd) (::IsZoomed(hwnd)) #endif #ifndef RECT_WIDTH @@ -45,4 +47,121 @@ # define WM_NCUAHDRAWFRAME (0x00AF) #endif +namespace QWK { + + namespace Private { + + QWK_CORE_EXPORT RTL_OSVERSIONINFOW GetRealOSVersion(); + + inline bool IsWindows1122H2OrGreater_Real() { + RTL_OSVERSIONINFOW rovi = GetRealOSVersion(); + return (rovi.dwMajorVersion > 10) || + (rovi.dwMajorVersion == 10 && rovi.dwMinorVersion >= 0 && + rovi.dwBuildNumber >= 22621); + } + + inline bool IsWindows11OrGreater_Real() { + RTL_OSVERSIONINFOW rovi = GetRealOSVersion(); + return (rovi.dwMajorVersion > 10) || + (rovi.dwMajorVersion == 10 && rovi.dwMinorVersion >= 0 && + rovi.dwBuildNumber >= 22000); + } + + inline bool IsWindows101903OrGreater_Real() { + RTL_OSVERSIONINFOW rovi = GetRealOSVersion(); + return (rovi.dwMajorVersion > 10) || + (rovi.dwMajorVersion == 10 && rovi.dwMinorVersion >= 0 && + rovi.dwBuildNumber >= 18362); + } + + inline bool IsWindows101809OrGreater_Real() { + RTL_OSVERSIONINFOW rovi = GetRealOSVersion(); + return (rovi.dwMajorVersion > 10) || + (rovi.dwMajorVersion == 10 && rovi.dwMinorVersion >= 0 && + rovi.dwBuildNumber >= 17763); + } + + inline bool IsWindows10OrGreater_Real() { + RTL_OSVERSIONINFOW rovi = GetRealOSVersion(); + return (rovi.dwMajorVersion > 10) || + (rovi.dwMajorVersion == 10 && rovi.dwMinorVersion >= 0); + } + + inline bool IsWindows8Point1OrGreater_Real() { + RTL_OSVERSIONINFOW rovi = GetRealOSVersion(); + return (rovi.dwMajorVersion > 6) || + (rovi.dwMajorVersion == 6 && rovi.dwMinorVersion >= 3); + } + + inline bool IsWindows8OrGreater_Real() { + RTL_OSVERSIONINFOW rovi = GetRealOSVersion(); + return (rovi.dwMajorVersion > 6) || + (rovi.dwMajorVersion == 6 && rovi.dwMinorVersion >= 2); + } + + inline bool IsWindows10Only_Real() { + return IsWindows10OrGreater_Real() && !IsWindows11OrGreater_Real(); + } + + } + + // + // Version Helpers + // + + static inline bool isWin8OrGreater() { + static const bool result = Private::IsWindows8OrGreater_Real(); + return result; + } + + static inline bool isWin8Point1OrGreater() { + static const bool result = Private::IsWindows8Point1OrGreater_Real(); + return result; + } + + static inline bool isWin10OrGreater() { + static const bool result = Private::IsWindows10OrGreater_Real(); + return result; + } + + static inline bool isWin101809OrGreater() { + static const bool result = Private::IsWindows101809OrGreater_Real(); + return result; + } + + static inline bool isWin101903OrGreater() { + static const bool result = Private::IsWindows101903OrGreater_Real(); + return result; + } + + static inline bool isWin11OrGreater() { + static const bool result = Private::IsWindows11OrGreater_Real(); + return result; + } + + static inline bool isWin1122H2OrGreater() { + static const bool result = Private::IsWindows1122H2OrGreater_Real(); + return result; + } + + static inline bool isWin10Only() { + static const bool result = Private::IsWindows10Only_Real(); + return result; + }; + + // + // Native Event Helpers + // + + inline bool isImmersiveColorSetChange(WPARAM wParam, LPARAM lParam) { + return !wParam && lParam && + std::wcscmp(reinterpret_cast<LPCWSTR>(lParam), L"ImmersiveColorSet") == 0; + } + +} + +#if QT_VERSION < QT_VERSION_CHECK(6, 0, 0) +Q_DECLARE_METATYPE(QMargins) +#endif + #endif // QWINDOWKIT_WINDOWS_H -- Gitblit v1.9.1