QTfrontend/ui/mouseoverfilter.h
author mikade
Sat, 13 Apr 2013 19:31:31 +0200
branch0.9.19
changeset 8877 928050d58c2b
parent 6616 f77bb02b669f
child 10248 7b9b44a051f8
permissions -rw-r--r--
remove delays from "one of everything" weaponset it doesn't make sense to have the default delays on stuff like baseball bat, cake etc. when you can just use melons/hellish grenades etc. straight from the go

#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