You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.
wow-app/filter.h

26 lines
570 B

#ifndef FILTER_H
#define FILTER_H
#include <QObject>
class filter : public QObject
{
Q_OBJECT
private:
bool m_tabPressed;
public:
explicit filter(QObject *parent = 0);
protected:
bool eventFilter(QObject *obj, QEvent *ev);
signals:
void sequencePressed(const QVariant &o, const QVariant &seq);
void sequenceReleased(const QVariant &o, const QVariant &seq);
void mousePressed(const QVariant &o, const QVariant &x, const QVariant &y);
void mouseReleased(const QVariant &o, const QVariant &x, const QVariant &y);
};
#endif // FILTER_H