blob: 22afab65c2590ade3e1187fe7ef4d8ef60f54d8b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
#ifndef ANIMATION_H
#define ANIMATION_H
#include <QPointF>
#include <QList>
#include <QString>
class Frame;
class QIODevice;
class Animation
{
public:
Animation();
~Animation();
void setTotalFrames(int totalFrames);
int totalFrames() const;
void setCurrentFrame(int currentFrame);
int currentFrame() const;
void setNodeCount(int nodeCount);
int nodeCount() const;
void setNodePos(int idx, const QPointF &pos);
QPointF nodePos(int idx) const;
QString name() const;
void setName(const QString &name);
void save(QIODevice *device) const;
void load(QIODevice *device);
private:
QString m_name;
QList<Frame *> m_frames;
int m_currentFrame;
};
#endif
|