2020-05-26 16:34:33 +00:00
|
|
|
//
|
2020-06-21 12:25:28 +00:00
|
|
|
// GuiScraperMulti.h
|
2020-05-26 16:34:33 +00:00
|
|
|
//
|
2020-06-21 12:25:28 +00:00
|
|
|
// Multiple game scraping user interface.
|
|
|
|
// Shows the progress for the scraping as it's running.
|
|
|
|
// This interface is triggered from GuiScraperMenu.
|
|
|
|
// GuiScraperSearch is called from here.
|
2020-05-26 16:34:33 +00:00
|
|
|
//
|
|
|
|
|
2014-06-25 16:29:58 +00:00
|
|
|
#pragma once
|
2017-10-31 17:12:50 +00:00
|
|
|
#ifndef ES_APP_GUIS_GUI_SCRAPER_MULTI_H
|
|
|
|
#define ES_APP_GUIS_GUI_SCRAPER_MULTI_H
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
#include "components/ComponentGrid.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "components/NinePatchComponent.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
#include "scrapers/Scraper.h"
|
2017-11-01 22:21:10 +00:00
|
|
|
#include "GuiComponent.h"
|
2020-06-06 11:10:33 +00:00
|
|
|
#include "MetaData.h"
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-06-06 12:14:13 +00:00
|
|
|
class GuiScraperSearch;
|
2014-06-25 16:29:58 +00:00
|
|
|
class TextComponent;
|
|
|
|
|
|
|
|
class GuiScraperMulti : public GuiComponent
|
|
|
|
{
|
|
|
|
public:
|
2020-06-21 12:25:28 +00:00
|
|
|
GuiScraperMulti(
|
|
|
|
Window* window,
|
|
|
|
const std::queue<ScraperSearchParams>& searches,
|
|
|
|
bool approveResults);
|
2020-05-26 16:34:33 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
virtual ~GuiScraperMulti();
|
2014-06-25 16:29:58 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
void onSizeChanged() override;
|
2020-06-07 18:09:02 +00:00
|
|
|
|
2020-06-21 12:25:28 +00:00
|
|
|
std::vector<HelpPrompt> getHelpPrompts() override;
|
|
|
|
HelpStyle getHelpStyle() override;
|
2014-06-25 16:29:58 +00:00
|
|
|
|
|
|
|
private:
|
2020-06-21 12:25:28 +00:00
|
|
|
void acceptResult(const ScraperSearchResult& result);
|
|
|
|
void skip();
|
|
|
|
void doNextSearch();
|
|
|
|
|
|
|
|
void finish();
|
|
|
|
|
|
|
|
unsigned int mTotalGames;
|
|
|
|
unsigned int mCurrentGame;
|
|
|
|
unsigned int mTotalSuccessful;
|
|
|
|
unsigned int mTotalSkipped;
|
|
|
|
std::queue<ScraperSearchParams> mSearchQueue;
|
|
|
|
std::vector<MetaDataDecl> mMetaDataDecl;
|
|
|
|
|
|
|
|
NinePatchComponent mBackground;
|
|
|
|
ComponentGrid mGrid;
|
|
|
|
|
|
|
|
std::shared_ptr<TextComponent> mTitle;
|
|
|
|
std::shared_ptr<TextComponent> mSystem;
|
|
|
|
std::shared_ptr<TextComponent> mSubtitle;
|
|
|
|
std::shared_ptr<GuiScraperSearch> mSearchComp;
|
|
|
|
std::shared_ptr<ComponentGrid> mButtonGrid;
|
2014-06-25 16:29:58 +00:00
|
|
|
};
|
2017-10-31 17:12:50 +00:00
|
|
|
|
|
|
|
#endif // ES_APP_GUIS_GUI_SCRAPER_MULTI_H
|