mirror of
https://github.com/RetroDECK/ES-DE.git
synced 2024-11-24 07:05:39 +00:00
67aa6b3dbd
Includes lots of conversions from tabs to spaces. Only cosmetic code changes in this commit.
63 lines
1.5 KiB
C++
63 lines
1.5 KiB
C++
//
|
|
// GuiScraperMulti.h
|
|
//
|
|
// 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.
|
|
//
|
|
|
|
#pragma once
|
|
#ifndef ES_APP_GUIS_GUI_SCRAPER_MULTI_H
|
|
#define ES_APP_GUIS_GUI_SCRAPER_MULTI_H
|
|
|
|
#include "components/ComponentGrid.h"
|
|
#include "components/NinePatchComponent.h"
|
|
#include "scrapers/Scraper.h"
|
|
#include "GuiComponent.h"
|
|
#include "MetaData.h"
|
|
|
|
class GuiScraperSearch;
|
|
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;
|
|
HelpStyle getHelpStyle() 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;
|
|
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;
|
|
};
|
|
|
|
#endif // ES_APP_GUIS_GUI_SCRAPER_MULTI_H
|