mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-27 16:45:38 +00:00
bc72990f39
Half of the ES code has been missing for 5 days because I am incompetent
44 lines
1 KiB
C++
44 lines
1 KiB
C++
#pragma once
|
|
|
|
#include "GuiComponent.h"
|
|
#include "components/NinePatchComponent.h"
|
|
#include "components/ComponentGrid.h"
|
|
#include "scrapers/Scraper.h"
|
|
|
|
#include <queue>
|
|
|
|
class ScraperSearchComponent;
|
|
class TextComponent;
|
|
|
|
class GuiScraperMulti : public GuiComponent
|
|
{
|
|
public:
|
|
GuiScraperMulti(Window* window, const std::queue<ScraperSearchParams>& searches, bool approveResults);
|
|
virtual ~GuiScraperMulti();
|
|
|
|
void onSizeChanged() override;
|
|
std::vector<HelpPrompt> getHelpPrompts() override;
|
|
|
|
private:
|
|
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;
|
|
|
|
NinePatchComponent mBackground;
|
|
ComponentGrid mGrid;
|
|
|
|
std::shared_ptr<TextComponent> mTitle;
|
|
std::shared_ptr<TextComponent> mSystem;
|
|
std::shared_ptr<TextComponent> mSubtitle;
|
|
std::shared_ptr<ScraperSearchComponent> mSearchComp;
|
|
std::shared_ptr<ComponentGrid> mButtonGrid;
|
|
};
|