QTfrontend/ui/mouseoverfilter.h
author unc0rr
Fri, 16 Nov 2012 00:46:33 +0400
branchphysfslayer
changeset 8031 fc40b343c45c
parent 6616 f77bb02b669f
child 10248 7b9b44a051f8
permissions -rw-r--r--
Script loading via physfs which doesn't work: - Some scripts just refuse to load for no obvious reason - Some scripts load fine when you set BUFSIZE to a large value, like 64k, but don't load with small values Error messages in both cases don't seem to have relation to lua file contents

#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