cumbia-qtcontrols 1.x
Qt widgets on top of the cumbia C++ library
leftclick_with_modifiers_eater.h
Go to the documentation of this file.
1#ifndef LEFT_CLICK_WITH_MODIFIERS_EATER_H
2#define LEFT_CLICK_WITH_MODIFIERS_EATER_H
3
4#include <QObject>
5
7class LeftClickWithModifiersEater : public QObject
8{
9 Q_OBJECT
10 public:
11 LeftClickWithModifiersEater(QObject *parent) : QObject(parent) {}
12
13 protected:
14 virtual bool eventFilter(QObject *obj, QEvent *event);
15};
16
17#endif