QTfrontend/ui/mouseoverfilter.h
author unc0rr
Wed, 28 Dec 2011 18:40:02 +0300
changeset 6535 51a7e71ad317
parent 6477 ad5741c252b9
child 6616 f77bb02b669f
permissions -rw-r--r--
It seems there's no need to copy gear's msg. Fixes bots getting stuck after hog switch.

#ifndef MOUSEOVERFILTER_H
#define MOUSEOVERFILTER_H

#include <QObject>

#include "ui_hwform.h"
#include "ui/page/AbstractPage.h"

class MouseOverFilter : public QObject
{
    Q_OBJECT
public:
    explicit MouseOverFilter(QObject *parent = 0);
    void setUi(Ui_HWForm *uiForm);
protected:
    bool eventFilter( QObject *dist, QEvent *event );
signals:

public slots:

private:
    Ui_HWForm *ui;
    AbstractPage* abstractpage;

};

#endif // MOUSEOVERFILTER_H