// SPDX-License-Identifier: MIT // // ES-DE Frontend // GuiScraperSingle.h // // Single game scraping user interface. // This interface is triggered from GuiMetaDataEd. // GuiScraperSearch is called from here. // #ifndef ES_APP_GUIS_GUI_SCRAPER_SINGLE_H #define ES_APP_GUIS_GUI_SCRAPER_SINGLE_H #include "GuiComponent.h" #include "components/NinePatchComponent.h" #include "components/ScrollIndicatorComponent.h" #include "guis/GuiScraperSearch.h" #include "views/ViewController.h" class GuiScraperSingle : public GuiComponent { public: GuiScraperSingle(ScraperSearchParams& params, std::function doneFunc, bool& savedMediaAndAborted); void onSizeChanged() override; bool input(InputConfig* config, Input input) override; void update(int deltaTime) override; std::vector getHelpPrompts() override; HelpStyle getHelpStyle() override { return ViewController::getInstance()->getViewHelpStyle(); } private: bool mClose; void close(); Renderer* mRenderer; NinePatchComponent mBackground; ComponentGrid mGrid; std::shared_ptr mGameName; std::shared_ptr mScrollUp; std::shared_ptr mScrollDown; std::shared_ptr mScrollIndicator; std::shared_ptr mSystemName; std::shared_ptr mSearch; std::shared_ptr mButtonGrid; std::shared_ptr mResultList; ScraperSearchParams mSearchParams; bool& mSavedMediaAndAborted; std::function mCancelFunc; }; #endif // ES_APP_GUIS_GUI_SCRAPER_SINGLE_H