Sine Striker
2023-12-13 f14f27f41385fd8593457413de2cf5a9c5c357e9
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#ifndef NATIVEEVENTFILTER_P_H
#define NATIVEEVENTFILTER_P_H
 
#include <QWKCore/qwkglobal.h>
 
namespace QWK {
 
    class QWK_CORE_EXPORT NativeEventFilter {
    public:
        NativeEventFilter();
        virtual ~NativeEventFilter();
 
    public:
        virtual bool nativeEventFilter(const QByteArray &eventType, void *message,
                                       QT_NATIVE_EVENT_RESULT_TYPE *result) = 0;
 
    private:
        Q_DISABLE_COPY(NativeEventFilter)
    };
 
}
 
#endif // NATIVEEVENTFILTER_P_H