added SortVolumeComics widget (and models)

This commit is contained in:
Luis Ángel San Martín
2013-10-19 09:20:23 +02:00
parent 8678e5368d
commit 63636dd417
19 changed files with 411 additions and 72 deletions

View File

@ -4,10 +4,11 @@
#include <QWidget>
class QLabel;
class QTableView;
class VolumesModel;
class QModelIndex;
class ScrapperTableView;
class SelectVolume : public QWidget
{
Q_OBJECT
@ -20,10 +21,11 @@ public slots:
void setCover(const QByteArray &);
void setDescription(const QString & jsonDetail);
void openLink(const QString & link);
QString getSelectedVolumeId();
private:
QLabel * cover;
QLabel * detailLabel;
QTableView * tableVolumes;
ScrapperTableView * tableVolumes;
VolumesModel * model;
};