QTfrontend/ui/mouseoverfilter.h
author LocutusOfBorg
Mon, 12 Sep 2022 12:51:41 -0400
branch1.0.0
changeset 15862 c96220666d93
parent 10248 7b9b44a051f8
permissions -rw-r--r--
Make the new network-bsd package optional, by implementing the keyword REQUIRED in the check_haskell_package_exists macro

#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