added triggers onTimer

added map view in ADeditor
This commit is contained in:
2010-09-02 23:34:39 +04:00
parent 7752f7be12
commit c898f978da
10 changed files with 169 additions and 15 deletions

23
ADeditor/mapmodel.h Normal file
View File

@@ -0,0 +1,23 @@
#ifndef MAPMODEL_H
#define MAPMODEL_H
#include <QAbstractListModel>
#include "../loader.h"
class MapModel : public QAbstractListModel
{
Q_OBJECT
public:
explicit MapModel(QList <tbMap> maps, QObject *parent = 0);
int rowCount(const QModelIndex &parent = QModelIndex()) const;
QVariant data(const QModelIndex &index, int role) const;
void refresh(QList <tbMap> maps);
signals:
public slots:
private:
QList <tbMap> maps;
};
#endif // MAPMODEL_H