#ifndef FTXUI_COMPONENT_MENU #define FTXUI_COMPONENT_MENU #include #include "ftxui/component/component.hpp" #include "ftxui/dom/elements.hpp" namespace ftxui { class Menu : public Component { public: // Constructor. Menu() = default; ~Menu() override = default; // State. std::vector entries = {}; int selected = 0; Decorator focused_style = inverted; Decorator selected_style = bold; Decorator normal_style = nothing; // State update callback. std::function on_change = []() {}; std::function on_enter = []() {}; // Component implementation. Element Render() override; bool OnEvent(Event) override; }; } // namespace ftxui #endif /* end of include guard: FTXUI_COMPONENT_MENU */ // Copyright 2020 Arthur Sonzogni. All rights reserved. // Use of this source code is governed by the MIT license that can be found in // the LICENSE file.