SVG5/seventfilter.h
2025-10-12 13:55:56 +09:00

22 lines
327 B
C++

#ifndef SEVENTFILTER_H
#define SEVENTFILTER_H
#include <QObject>
#include <QEvent>
class SEventFilter : public QObject
{
Q_OBJECT
public:
explicit SEventFilter(QObject *parent = nullptr);
signals:
// QObject interface
public:
bool eventFilter(QObject *watched, QEvent *event);
};
#endif // SEVENTFILTER_H