// // MenuComponent.h // // Basic component for building a menu. // #pragma once #ifndef ES_CORE_COMPONENTS_MENU_COMPONENT_H #define ES_CORE_COMPONENTS_MENU_COMPONENT_H #include "components/ComponentGrid.h" #include "components/ComponentList.h" #include "components/NinePatchComponent.h" #include "components/TextComponent.h" #include "utils/StringUtil.h" class ButtonComponent; class ImageComponent; std::shared_ptr makeButtonGrid(Window* window, const std::vector< std::shared_ptr >& buttons); std::shared_ptr makeArrow(Window* window); #define TITLE_VERT_PADDING (Renderer::getScreenHeight()*0.0637f) class MenuComponent : public GuiComponent { public: MenuComponent(Window* window, const char* title, const std::shared_ptr& titleFont = Font::get(FONT_SIZE_LARGE)); virtual ~MenuComponent(); // just calls save(); void save(); void onSizeChanged() override; inline void addRow(const ComponentListRow& row, bool setCursorHere = false) { mList->addRow(row, setCursorHere); updateSize(); } inline void addWithLabel(const std::string& label, const std::shared_ptr& comp, bool setCursorHere = false, bool invert_when_selected = true) { ComponentListRow row; row.addElement(std::make_shared(mWindow, Utils::String::toUpper(label), Font::get(FONT_SIZE_MEDIUM), 0x777777FF), true); row.addElement(comp, false, invert_when_selected); addRow(row, setCursorHere); } inline void addSaveFunc(const std::function& func) { mSaveFuncs.push_back(func); }; void addButton(const std::string& label, const std::string& helpText, const std::function& callback); void setTitle(const char* title, const std::shared_ptr& font); inline void setCursorToList() { mGrid.setCursorTo(mList); } inline void setCursorToButtons() { assert(mButtonGrid); mGrid.setCursorTo(mButtonGrid); } virtual std::vector getHelpPrompts() override; private: void updateSize(); void updateGrid(); float getButtonGridHeight() const; NinePatchComponent mBackground; ComponentGrid mGrid; std::shared_ptr mTitle; std::shared_ptr mList; std::shared_ptr mButtonGrid; std::vector< std::shared_ptr > mButtons; std::vector< std::function > mSaveFuncs; }; #endif // ES_CORE_COMPONENTS_MENU_COMPONENT_H