QTfrontend/ui/mouseoverfilter.h
author nemo
Thu, 02 Aug 2018 20:27:20 -0400
changeset 13605 422d6062620a
parent 10248 7b9b44a051f8
permissions -rw-r--r--
hijack the duck for an attempted resurrection of the creeper. initial pass.

#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;

};

#endif // MOUSEOVERFILTER_H