mirror of
https://github.com/zhuzichu520/FluentUI.git
synced 2025-04-11 11:11:31 +08:00
15 lines
321 B
C++
15 lines
321 B
C++
#ifndef NATIVEEVENTFILTER_H
|
|
#define NATIVEEVENTFILTER_H
|
|
|
|
#include <QObject>
|
|
#include <QAbstractNativeEventFilter>
|
|
|
|
class NativeEventFilter : public QAbstractNativeEventFilter
|
|
{
|
|
|
|
public:
|
|
bool nativeEventFilter(const QByteArray &eventType, void *message, qintptr *result) override;
|
|
};
|
|
|
|
#endif // NATIVEEVENTFILTER_H
|