QTfrontend/ui/mouseoverfilter.h
author sheepluva
Sun, 08 Dec 2013 02:43:06 +0100
changeset 9762 938d1c08d0d1
parent 6616 f77bb02b669f
child 10248 7b9b44a051f8
permissions -rw-r--r--
disallow speech bubbles to go offscreen no tint or tail-directio adjustments for indicating it's offscreen yet though

#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;
        AbstractPage* abstractpage;

};

#endif // MOUSEOVERFILTER_H