1 2 3 4 5 6 7 8 9 10 11 12 13 14
#include <QObject> #include <QEvent> #ifndef BUSYAPPFILTER_H #define BUSYAPPFILTER_H class BusyAppFilter : public QObject { protected: bool eventFilter( QObject *obj, QEvent *event ); }; #endif // BUSYAPPFILTER_H