From 00b91a374872280a4a5addc22f08c7954a6637aa Mon Sep 17 00:00:00 2001 From: Sine Striker <trueful@163.com> Date: 周三, 15 5月 2024 10:10:51 +0800 Subject: [PATCH] minor tweaks --- src/core/qwindowkit_windows.h | 15 +++++++-------- 1 files changed, 7 insertions(+), 8 deletions(-) diff --git a/src/core/qwindowkit_windows.h b/src/core/qwindowkit_windows.h index c84f50d..ca7c9c5 100644 --- a/src/core/qwindowkit_windows.h +++ b/src/core/qwindowkit_windows.h @@ -1,3 +1,7 @@ +// Copyright (C) 2023-2024 Stdware Collections (https://www.github.com/stdware) +// Copyright (C) 2021-2023 wangwenx190 (Yuhang Zhao) +// SPDX-License-Identifier: Apache-2.0 + #ifndef QWINDOWKIT_WINDOWS_H #define QWINDOWKIT_WINDOWS_H @@ -18,14 +22,6 @@ # define GET_Y_LPARAM(lp) (static_cast<int>(static_cast<short>(HIWORD(lp)))) #endif -#ifndef IsMinimized -# define IsMinimized(hwnd) (::IsIconic(hwnd)) -#endif - -#ifndef IsMaximized -# define IsMaximized(hwnd) (::IsZoomed(hwnd)) -#endif - #ifndef RECT_WIDTH # define RECT_WIDTH(rect) ((rect).right - (rect).left) #endif @@ -35,6 +31,8 @@ #endif // Maybe undocumented Windows messages +// https://github.com/tinysec/public/blob/master/win32k/MessageTable.md +// https://ulib.sourceforge.io/doxy/a00239.html #ifndef WM_UAHDESTROYWINDOW # define WM_UAHDESTROYWINDOW (0x0090) #endif @@ -112,6 +110,7 @@ // // Registry Helpers // + #if QT_VERSION < QT_VERSION_CHECK(5, 14, 0) class QWK_CORE_EXPORT WindowsRegistryKey { public: -- Gitblit v1.9.1