QTfrontend/ui/mouseoverfilter.h
author Marcin Mielniczuk <marmistrz.dev@zoho.eu>
Tue, 03 Jul 2018 22:37:15 +0300
changeset 13440 2e5a5eee8d80
parent 10248 7b9b44a051f8
permissions -rw-r--r--
Update rand and log to the latest versions

#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