1
mirror of https://github.com/monero-project/monero-gui synced 2024-09-24 15:59:00 +02:00
monero-gui/filter.h
2014-07-07 19:08:30 +02:00

25 lines
327 B
C++

#ifndef FILTER_H
#define FILTER_H
#include <QObject>
class filter : public QObject
{
Q_OBJECT
private:
bool m_ctrlPressed;
public:
explicit filter(QObject *parent = 0);
protected:
bool eventFilter(QObject *obj, QEvent *ev);
signals:
void ctrlPressed();
void ctrlReleased();
};
#endif // FILTER_H