FTXUI/include/ftxui/component/menu.hpp
ArthurSonzogni 493e734680 Set clang-format macro indent.
1) Set clang-format macro indent.
2) Run clang-format on every files.
2020-03-23 21:26:00 +01:00

37 lines
765 B
C++

#ifndef FTXUI_COMPONENT_MENU
#define FTXUI_COMPONENT_MENU
#include <functional>
#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<std::wstring> entries = {};
int selected = 0;
Decorator focused_style = inverted;
Decorator selected_style = bold;
Decorator normal_style = nothing;
// State update callback.
std::function<void()> on_change = []() {};
std::function<void()> on_enter = []() {};
// Component implementation.
Element Render() override;
bool OnEvent(Event) override;
};
} // namespace ftxui
#endif /* end of include guard: FTXUI_COMPONENT_MENU */