QTfrontend/ui/mouseoverfilter.h
author nemo
Tue, 13 Mar 2018 10:20:41 -0400
branchqt5transition
changeset 13184 ddfb4a73524b
parent 10248 7b9b44a051f8
permissions -rw-r--r--
try plastique with fallback to windows - we should find a way to alert the user that qt5-style-plugins would improve rendering

#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