mirror of
https://github.com/YACReader/yacreader
synced 2025-06-04 01:28:55 -04:00
24 lines
394 B
C++
24 lines
394 B
C++
#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
|