Yuhang Zhao
2023-12-06 d5cc7b515e8897c94815ebb2d8fe6da675846149
src/quick/quickitemdelegate_p.h
@@ -12,13 +12,16 @@
    class QWK_QUICK_EXPORT QuickItemDelegate : public WindowItemDelegate {
    public:
        QuickItemDelegate();
        ~QuickItemDelegate();
        ~QuickItemDelegate() override;
    public:
        QWindow *window(QObject *obj) const override;
        QWindow *window(const QObject *obj) const override;
        bool isEnabled(const QObject *obj) const override;
        bool isVisible(const QObject *obj) const override;
        QRect mapGeometryToScene(const QObject *obj) const override;
        bool isEnabled(QObject *obj) const override;
        bool isVisible(QObject *obj) const override;
        QWindow * hostWindow(const QObject *host) const override;
        bool isHostSizeFixed(const QObject *host) const override;
    };
}