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/contexts/win32windowcontext_p.h |   10 ++--------
 1 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/src/core/contexts/win32windowcontext_p.h b/src/core/contexts/win32windowcontext_p.h
index 3af0e13..ca64faf 100644
--- a/src/core/contexts/win32windowcontext_p.h
+++ b/src/core/contexts/win32windowcontext_p.h
@@ -17,8 +17,6 @@
 
     class Win32WindowContext : public AbstractWindowContext {
         Q_OBJECT
-        Q_PROPERTY(bool needBorderPainter READ needBorderPainter FINAL)
-        Q_PROPERTY(int borderThickness READ borderThickness FINAL)
     public:
         Win32WindowContext();
         ~Win32WindowContext() override;
@@ -35,11 +33,7 @@
         QString key() const override;
         void virtual_hook(int id, void *data) override;
 
-        bool needBorderPainter() const;
-        int borderThickness() const;
-
-        void resume(const QByteArray &eventType, void *message,
-                    QT_NATIVE_EVENT_RESULT_TYPE *result) override;
+        QVariant windowAttribute(const QString &key) const override;
 
     protected:
         void winIdChanged() override;
@@ -75,7 +69,7 @@
         // WM_MOUSELEAVE.
         bool mouseLeaveBlocked = false;
 
-        bool centered = false;
+        bool initialCentered = false;
     };
 
 }

--
Gitblit v1.9.1