wip
Yuhang Zhao
2023-12-04 778e12cb0f0d3879a0ecf8bd6fd124dc4f1a7537
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef QTWINDOWCONTEXT_P_H
#define QTWINDOWCONTEXT_P_H
 
#include <QWKCore/private/abstractwindowcontext_p.h>
 
namespace QWK {
 
    class QWK_CORE_EXPORT QtWindowContext : public AbstractWindowContext {
        Q_OBJECT
    public:
        QtWindowContext(QWindow *window, WindowItemDelegate *delegate);
        ~QtWindowContext();
 
    public:
        bool setup() override;
 
    protected:
        bool eventFilter(QObject *obj, QEvent *event) override;
    };
 
}
 
#endif // QTWINDOWCONTEXT_P_H