FTXUI/include/ftxui/component/menu.hpp

54 lines
1.5 KiB
C++
Raw Normal View History

#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
#include "ftxui/component/component.hpp" // for Component
#include "ftxui/component/component_base.hpp" // for ComponentBase
#include "ftxui/component/component_options.hpp" // for Component
2021-05-10 02:32:27 +08:00
#include "ftxui/dom/elements.hpp" // for Element, Decorator, operator|, bold, inverted, nothing
#include "ftxui/screen/box.hpp" // for Box
namespace ftxui {
2021-05-02 02:40:35 +08:00
struct Event;
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 {
public:
2021-05-10 02:32:27 +08:00
// Access this interface from a Component
static MenuBase* From(Component component);
// Constructor.
MenuBase(const std::vector<std::wstring>* entries,
int* selected_,
ConstRef<MenuOption> option = {});
2021-05-10 02:32:27 +08:00
~MenuBase() override = default;
// State.
int focused = 0;
// Component implementation.
Element Render() override;
bool OnEvent(Event) override;
2021-05-10 02:32:27 +08:00
protected:
const std::vector<std::wstring>* const entries_;
int* selected_ = 0;
ConstRef<MenuOption> option_;
2021-05-10 02:32:27 +08:00
bool OnMouseEvent(Event);
std::vector<Box> boxes_;
};
} // 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.