SineStriker
2023-12-17 97a65514f04eb2db667c5ee22ec99472a8dc78c9
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 QtWindowContext : public AbstractWindowContext {
        Q_OBJECT
    public:
        QtWindowContext();
        ~QtWindowContext() override;
 
        QString key() const override;
        void virtual_hook(int id, void *data) override;
 
    protected:
        bool setupHost() override;
    };
 
}
 
#endif // QTWINDOWCONTEXT_P_H