added "Complete/NotComplete" status to folders, now the user can track if he/she has all the comics of a certain collection

This commit is contained in:
Luis Ángel San Martín
2014-06-10 21:37:58 +02:00
commit 24cc997891
749 changed files with 69010 additions and 0 deletions

View File

@ -0,0 +1,22 @@
#ifndef SEARCH_SINGLE_COMIC_H
#define SEARCH_SINGLE_COMIC_H
#include <QWidget>
class ScraperLineEdit;
class SearchSingleComic : public QWidget
{
Q_OBJECT
public:
SearchSingleComic(QWidget * parent = 0);
QString getVolumeInfo();
QString getComicInfo();
int getComicNumber();
void clean();
private:
ScraperLineEdit * titleEdit;
ScraperLineEdit * numberEdit;
ScraperLineEdit * volumeEdit;
};
#endif // SEARCH_SINGLE_COMIC_H