QTfrontend/ui/mouseoverfilter.h
author nemo
Fri, 17 Feb 2012 20:42:22 -0500
changeset 6706 c4272519b128
parent 6616 f77bb02b669f
child 10248 7b9b44a051f8
permissions -rw-r--r--
Experiment. This has bugged me for a long time. Should be possible to tell a team with 1 health from a team with 0

#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