added new comic_vine folder containing all the ComicVine related clases

added QtScript dependency (json parser)
This commit is contained in:
Luis Ángel San Martín
2013-10-07 16:48:05 +02:00
parent b88715e26e
commit 9795f514e7
29 changed files with 733 additions and 354 deletions

View File

@ -0,0 +1,23 @@
#ifndef SELECT_VOLUME_H
#define SELECT_VOLUME_H
#include <QWidget>
class QLabel;
class QTableView;
class VolumesModel;
class SelectVolume : public QWidget
{
Q_OBJECT
public:
SelectVolume(QWidget * parent = 0);
virtual ~SelectVolume();
private:
QLabel * cover;
QLabel * detailLabel;
QTableView * tableVolumes;
VolumesModel * model;
};
#endif // SELECT_VOLUME_H