// SPDX-License-Identifier: MIT // // EmulationStation Desktop Edition // BadgesComponent.h // // Game badges icons. // Used by gamelist views. // #ifndef ES_APP_COMPONENTS_BADGES_COMPONENT_H #define ES_APP_COMPONENTS_BADGES_COMPONENT_H #include "FlexboxComponent.h" #include "GuiComponent.h" #include "ImageComponent.h" #include "renderers/Renderer.h" #define NUM_SLOTS 4 #define SLOT_FAVORITE "favorite" #define SLOT_COMPLETED "completed" #define SLOT_KIDS "kidgame" #define SLOT_BROKEN "broken" class TextureResource; class BadgesComponent : public FlexboxComponent { public: BadgesComponent(Window* window); std::string getValue() const override; // Should be a list of strings. void setValue(const std::string& value) override; virtual void applyTheme(const std::shared_ptr& theme, const std::string& view, const std::string& element, unsigned int properties) override; virtual std::vector getHelpPrompts() override; private: std::vector mSlots; std::map mBadgeIcons; std::map mImageComponents; }; #endif // ES_APP_COMPONENTS_BADGES_COMPONENT_H