before ADeditor correct

This commit is contained in:
unknown
2010-08-25 21:55:42 +04:00
parent 02acdc4d2b
commit 8d6a589224
14 changed files with 868 additions and 702 deletions

23
ADeditor/splashmodel.h Normal file
View File

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