2018-10-10 01:06:03 +08:00
|
|
|
#ifndef FTXUI_COMPONENT_MENU
|
|
|
|
#define FTXUI_COMPONENT_MENU
|
|
|
|
|
|
|
|
#include "ftxui/component/component.hpp"
|
2019-01-03 07:35:59 +08:00
|
|
|
#include "ftxui/dom/elements.hpp"
|
2018-10-10 01:06:03 +08:00
|
|
|
#include <functional>
|
|
|
|
|
2019-01-12 22:00:08 +08:00
|
|
|
namespace ftxui {
|
2018-10-10 01:06:03 +08:00
|
|
|
|
|
|
|
class Menu : public Component {
|
|
|
|
public:
|
|
|
|
// Constructor.
|
2019-01-13 01:24:46 +08:00
|
|
|
Menu() = default;
|
|
|
|
~Menu() override = default;
|
2018-10-10 01:06:03 +08:00
|
|
|
|
|
|
|
// State.
|
|
|
|
std::vector<std::wstring> entries = {};
|
2019-01-20 05:06:05 +08:00
|
|
|
int selected = 0;
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2019-01-20 05:06:05 +08:00
|
|
|
Decorator focused_style = inverted;
|
2019-01-12 22:00:08 +08:00
|
|
|
Decorator selected_style = bold;
|
|
|
|
Decorator normal_style = nothing;
|
2019-01-03 07:35:59 +08:00
|
|
|
|
2018-10-10 01:06:03 +08:00
|
|
|
// State update callback.
|
|
|
|
std::function<void()> on_change = [](){};
|
|
|
|
std::function<void()> on_enter = [](){};
|
|
|
|
|
|
|
|
// Component implementation.
|
2019-01-12 22:00:08 +08:00
|
|
|
Element Render() override;
|
2019-01-06 23:10:57 +08:00
|
|
|
bool OnEvent(Event) override;
|
2018-10-10 01:06:03 +08:00
|
|
|
};
|
|
|
|
|
2019-01-07 00:10:35 +08:00
|
|
|
} // namespace ftxui::Component
|
2018-10-10 01:06:03 +08:00
|
|
|
|
|
|
|
#endif /* end of include guard: FTXUI_COMPONENT_MENU */
|