FTXUI 6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
menu_in_frame.cpp
Go to the documentation of this file.
1// Copyright 2020 Arthur Sonzogni. All rights reserved.
2// Use of this source code is governed by the MIT license that can be found in
3// the LICENSE file.
4#include <memory> // for shared_ptr, __shared_ptr_access
5#include <string> // for string, basic_string, operator+, to_string
6#include <vector> // for vector
7
8#include "ftxui/component/captured_mouse.hpp" // for ftxui
9#include "ftxui/component/component.hpp" // for Radiobox, Renderer
10#include "ftxui/component/component_base.hpp" // for ComponentBase
11#include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive
12#include "ftxui/dom/elements.hpp" // for operator|, Element, size, border, frame, HEIGHT, LESS_THAN
13
14using namespace ftxui;
15
16int main() {
17 std::vector<std::string> entries;
18 int selected = 0;
19
20 for (int i = 0; i < 30; ++i)
21 entries.push_back("Entry " + std::to_string(i));
22 auto radiobox = Menu(&entries, &selected);
23 auto renderer = Renderer(radiobox, [&] {
24 return radiobox->Render() | vscroll_indicator | frame |
26 });
27
28 auto screen = ScreenInteractive::FitComponent();
29 screen.Loop(renderer);
30
31 return 0;
32}
static ScreenInteractive FitComponent()
Component Menu(MenuOption options)
A list of text. The focused element is selected.
Component Renderer(Component child, std::function< Element()>)
Return a new Component, similar to |child|, but using |render| as the Component::Render() event.
Decorator size(WidthOrHeight, Constraint, int value)
Apply a constraint on the size of an element.
Element border(Element)
Draw a border around the element.
int main()
The FTXUI ftxui:: namespace.
Definition animation.hpp:10
@ LESS_THAN
Definition elements.hpp:162