From 78f31c67d71ee743f022dd6f5930abae6f6d54f9 Mon Sep 17 00:00:00 2001
From: Yuhang Zhao <zhaoyuhang@rankyee.com>
Date: 周二, 19 12月 2023 16:43:17 +0800
Subject: [PATCH] update readme

---
 src/core/contexts/win32windowcontext_p.h |   14 ++++++--------
 1 files changed, 6 insertions(+), 8 deletions(-)

diff --git a/src/core/contexts/win32windowcontext_p.h b/src/core/contexts/win32windowcontext_p.h
index b390c93..c8c7ed4 100644
--- a/src/core/contexts/win32windowcontext_p.h
+++ b/src/core/contexts/win32windowcontext_p.h
@@ -6,10 +6,10 @@
 
 namespace QWK {
 
-    class Win10BorderHandler;
-
-    class QWK_CORE_EXPORT Win32WindowContext : public AbstractWindowContext {
+    class Win32WindowContext : public AbstractWindowContext {
         Q_OBJECT
+        Q_PROPERTY(bool needBorderPainter READ needBorderPainter FINAL)
+        Q_PROPERTY(int borderThickness READ borderThickness FINAL)
     public:
         Win32WindowContext();
         ~Win32WindowContext() override;
@@ -26,11 +26,11 @@
         QString key() const override;
         void virtual_hook(int id, void *data) override;
 
-        Q_INVOKABLE bool needWin10BorderHandler() const;
-        Q_INVOKABLE void setWin10BorderHandler(Win10BorderHandler *handler);
+        bool needBorderPainter() const;
+        int borderThickness() const;
 
     protected:
-        bool setupHost() override;
+        void winIdChanged(QWindow *oldWindow) override;
 
     public:
         bool windowProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam, LRESULT *result);
@@ -62,8 +62,6 @@
         bool mouseLeaveBlocked = false;
 
         bool centered = false;
-
-        std::unique_ptr<Win10BorderHandler> win10BorderHandler;
     };
 
 }

--
Gitblit v1.9.1