SelectVolume loads covers from ComicVine

This commit is contained in:
Luis Ángel San Martín
2013-10-12 21:18:59 +02:00
parent 9938167a90
commit 80d0236010
8 changed files with 112 additions and 47 deletions

View File

@ -21,6 +21,7 @@ public:
QVariant headerData(int section, Qt::Orientation orientation,
int role = Qt::DisplayRole) const;
QModelIndex index(int row, int column, const QModelIndex &parent = QModelIndex()) const;
signals:
public slots:
@ -28,11 +29,14 @@ public slots:
private:
QList <QList <QString> * > _data;
public:
enum Column {
SERIES,
SERIES = 0,
YEAR,
ISSUES,
PUBLISHER
PUBLISHER,
COVER_URL,
DECK
};
};