Sine Striker
2023-12-10 db00428f146a7daf2c8b5c4de6c8c1e317f950a4
src/widgets/widgetitemdelegate_p.h
@@ -10,17 +10,20 @@
namespace QWK {
    class QWK_WIDGETS_EXPORT WidgetItemDelegate : public WindowItemDelegate {
        Q_DISABLE_COPY(WidgetItemDelegate)
    public:
        WidgetItemDelegate();
        ~WidgetItemDelegate() 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;
        void resetQtGrabbedControl() const override;
    };
}