From dddf96c011723a12b11acc2980c10eb370961021 Mon Sep 17 00:00:00 2001
From: Zhao Yuhang <2546789017@qq.com>
Date: 周五, 15 12月 2023 21:35:17 +0800
Subject: [PATCH] add qt impl

---
 src/core/windowitemdelegate_p.h |   13 ++++++++++---
 1 files changed, 10 insertions(+), 3 deletions(-)

diff --git a/src/core/windowitemdelegate_p.h b/src/core/windowitemdelegate_p.h
index ee47067..ab2d066 100644
--- a/src/core/windowitemdelegate_p.h
+++ b/src/core/windowitemdelegate_p.h
@@ -5,7 +5,7 @@
 #include <QtCore/QPoint>
 #include <QtGui/QWindow>
 
-#include <QWKCore/qwkcoreglobal.h>
+#include <QWKCore/qwkglobal.h>
 
 namespace QWK {
 
@@ -24,12 +24,19 @@
         // Host property query
         virtual QWindow *hostWindow(const QObject *host) const = 0;
         virtual bool isHostSizeFixed(const QObject *host) const = 0;
+        virtual bool isWindowActive(const QObject *host) const = 0;
+        virtual Qt::WindowStates getWindowState(const QObject *host) const = 0;
+        virtual Qt::WindowFlags getWindowFlags(const QObject *host) const = 0;
 
         // Callbacks
-        virtual void resetQtGrabbedControl() const;
+        virtual void resetQtGrabbedControl(QObject *host) const;
+        virtual void setWindowState(QObject *host, const Qt::WindowStates &state) const = 0;
+        virtual void setCursorShape(QObject *host, const Qt::CursorShape shape) const = 0;
+        virtual void restoreCursorShape(QObject *host) const = 0;
+        virtual void setWindowFlags(QObject *host, const Qt::WindowFlags &flags) const = 0;
 
     private:
-        Q_DISABLE_COPY_MOVE(WindowItemDelegate)
+        Q_DISABLE_COPY(WindowItemDelegate)
     };
 
 }

--
Gitblit v1.9.1