minor changes in ComicVineDialog

This commit is contained in:
Luis Ángel San Martín
2013-10-07 22:50:42 +02:00
parent 9795f514e7
commit 5ef8df423b
2 changed files with 46 additions and 27 deletions

View File

@ -44,17 +44,25 @@ protected slots:
void launchSearchVolume();
void launchSearchComic();
void showSelectVolume();
void showSelectComic();
private:
enum ScrapperMode
{
SingleComic, //the scrapper has been opened for a single comic
Volume, //the scrapper is trying to get comics info for a whole volume
SingleComicInList //the scrapper has been opened for a list of unrelated comics
};
enum ScrapperStatus
{
SingleComic,
Volume,
SingleComicInSeries,
AutoSearching,
AskingForInfo,
SelectingComic,
SelectingSeries
};
ScrapperMode mode;
ScrapperStatus status;
ComicVineClient * comicVineClient;