QTfrontend/ui/mouseoverfilter.h
author raptor <buckyballreaction@gmail.com>
Fri, 16 Aug 2019 11:02:01 -0600
changeset 15339 8951eaad20e5
parent 10248 7b9b44a051f8
permissions -rw-r--r--
Merge of 0.9.25 branch with back-grafted macOS changes

#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