Files
aliendefender/ADeditor/animlabel.h
buull 0a9679fd99 some bugfix in ADeditor
memory optimization in AD
2010-09-18 00:00:32 +04:00

23 lines
335 B
C++

#ifndef ANIMLABEL_H
#define ANIMLABEL_H
#include <QLabel>
class AnimLabel : public QLabel
{
Q_OBJECT
public:
explicit AnimLabel(QWidget *parent = 0);
void setAnimation(const QStringList &anim);
signals:
public slots:
private:
QList<QPixmap *> images;
int imgIndex;
void timerEvent(QTimerEvent *);
};
#endif // ANIMLABEL_H