#ifndef __KIF_ANIPLAYER_H #define __KIF_ANIPLAYER_H #include #include #include #include #include #include class KIFAniPlayer : public QWidget { Q_OBJECT public: KIFAniPlayer(const QString &filename, QWidget *parent=0, const char *name=0); ~KIFAniPlayer(); protected slots: void slotUpdate(); protected: void paintEvent(QPaintEvent *ev); void mousePressEvent(QMouseEvent *ev); QMovie *movie; QColor c; GC gc; }; #endif