1
0
mirror of https://github.com/rwengine/openrw.git synced 2024-09-15 15:02:34 +02:00
openrw/rwviewer/models/AnimationListModel.hpp
2018-09-16 00:52:41 +02:00

34 lines
957 B
C++

#ifndef _ANIMATIONLISTMODEL_HPP_
#define _ANIMATIONLISTMODEL_HPP_
#include <QAbstractItemModel>
#include <loaders/LoaderIFP.hpp>
typedef std::vector<std::pair<std::string, AnimationPtr>> AnimationList;
class AnimationListModel : public QAbstractListModel {
Q_OBJECT
AnimationList animations;
public:
AnimationListModel(const AnimationList& anims, QObject* parent = 0)
: QAbstractListModel(parent), animations(anims) {
}
int rowCount(const QModelIndex& parent = QModelIndex()) const override;
int columnCount(const QModelIndex& parent = QModelIndex()) const override;
QVariant data(const QModelIndex& index,
int role = Qt::DisplayRole) const override;
QVariant headerData(int section, Qt::Orientation orientation,
int role = Qt::DisplayRole) const override;
const AnimationList& getAnimations() const {
return animations;
}
};
#endif