2018-10-10 01:06:03 +08:00
|
|
|
#ifndef FTXUI_COMPONENT_MENU
|
|
|
|
#define FTXUI_COMPONENT_MENU
|
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
#include <functional> // for function
|
|
|
|
#include <string> // for wstring
|
|
|
|
#include <vector> // for vector
|
2020-03-24 04:26:00 +08:00
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
#include "ftxui/component/component.hpp" // for Component
|
|
|
|
#include "ftxui/component/component_base.hpp" // for ComponentBase
|
|
|
|
#include "ftxui/dom/elements.hpp" // for Element, Decorator, operator|, bold, inverted, nothing
|
|
|
|
#include "ftxui/screen/box.hpp" // for Box
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2019-01-12 22:00:08 +08:00
|
|
|
namespace ftxui {
|
2021-05-02 02:40:35 +08:00
|
|
|
struct Event;
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2020-08-16 08:24:50 +08:00
|
|
|
/// @brief A list of items. The user can navigate through them.
|
|
|
|
/// @ingroup component
|
2021-05-10 02:32:27 +08:00
|
|
|
class MenuBase : public ComponentBase {
|
2018-10-10 01:06:03 +08:00
|
|
|
public:
|
2021-05-10 02:32:27 +08:00
|
|
|
// Access this interface from a Component
|
|
|
|
static MenuBase* From(Component component);
|
|
|
|
|
2018-10-10 01:06:03 +08:00
|
|
|
// Constructor.
|
2021-05-10 02:32:27 +08:00
|
|
|
MenuBase(const std::vector<std::wstring>* entries, int* selected_);
|
|
|
|
~MenuBase() override = default;
|
2018-10-10 01:06:03 +08:00
|
|
|
|
|
|
|
// State.
|
2021-04-25 00:16:13 +08:00
|
|
|
int focused = 0;
|
2018-10-10 01:06:03 +08:00
|
|
|
|
2021-04-25 00:16:13 +08:00
|
|
|
Decorator normal_style = nothing;
|
2019-01-20 05:06:05 +08:00
|
|
|
Decorator focused_style = inverted;
|
2019-01-12 22:00:08 +08:00
|
|
|
Decorator selected_style = bold;
|
2021-04-25 00:16:13 +08:00
|
|
|
Decorator selected_focused_style = focused_style | selected_style;
|
2019-01-03 07:35:59 +08:00
|
|
|
|
2018-10-10 01:06:03 +08:00
|
|
|
// State update callback.
|
2020-03-24 04:26:00 +08:00
|
|
|
std::function<void()> on_change = []() {};
|
|
|
|
std::function<void()> on_enter = []() {};
|
2018-10-10 01:06:03 +08:00
|
|
|
|
|
|
|
// 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;
|
2021-04-19 04:33:41 +08:00
|
|
|
|
2021-05-10 02:32:27 +08:00
|
|
|
protected:
|
|
|
|
const std::vector<std::wstring>* const entries_;
|
|
|
|
int* selected_ = 0;
|
|
|
|
|
2021-04-19 04:33:41 +08:00
|
|
|
bool OnMouseEvent(Event);
|
|
|
|
|
|
|
|
std::vector<Box> boxes_;
|
2018-10-10 01:06:03 +08:00
|
|
|
};
|
|
|
|
|
2020-03-24 04:26:00 +08:00
|
|
|
} // namespace ftxui
|
2018-10-10 01:06:03 +08:00
|
|
|
|
|
|
|
#endif /* end of include guard: FTXUI_COMPONENT_MENU */
|
2020-08-16 06:24:18 +08:00
|
|
|
|
|
|
|
// 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.
|