mirror of
https://github.com/YACReader/yacreader
synced 2025-07-26 08:55:05 -04:00
added new comic_vine folder containing all the ComicVine related clases
added QtScript dependency (json parser)
This commit is contained in:
23
YACReaderLibrary/comic_vine/select_volume.h
Normal file
23
YACReaderLibrary/comic_vine/select_volume.h
Normal 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
|
Reference in New Issue
Block a user