FTXUI 6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
menu_entries_animated.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 <iostream> // for basic_ostream::operator<<, operator<<, endl, basic_ostream, basic_ostream<>::__ostream_type, cout, ostream
5#include <memory> // for shared_ptr, __shared_ptr_access
6#include <string> // for to_string, allocator
7
8#include "ftxui/component/captured_mouse.hpp" // for ftxui
9#include "ftxui/component/component.hpp" // for MenuEntryAnimated, Renderer, Vertical
10#include "ftxui/component/component_base.hpp" // for ComponentBase
11#include "ftxui/component/component_options.hpp" // for MenuEntryAnimated
12#include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive
13#include "ftxui/dom/elements.hpp" // for operator|, separator, Element, Decorator, color, text, hbox, size, bold, frame, inverted, vbox, HEIGHT, LESS_THAN, border
14#include "ftxui/screen/color.hpp" // for Color, Color::Blue, Color::Cyan, Color::Green, Color::Red, Color::Yellow
15
16using namespace ftxui;
17
18// Define a special style for some menu entry.
29
30int main() {
32
33 int selected = 0;
34 auto menu = Container::Vertical(
35 {
36 MenuEntry(" 1. rear", Colored(Color::Red)),
37 MenuEntry(" 2. drown", Colored(Color::Yellow)),
38 MenuEntry(" 3. nail", Colored(Color::Green)),
39 MenuEntry(" 4. quit", Colored(Color::Cyan)),
40 MenuEntry(" 5. decorative", Colored(Color::Blue)),
41 MenuEntry(" 7. costume"),
42 MenuEntry(" 8. pick"),
43 MenuEntry(" 9. oral"),
44 MenuEntry("11. minister"),
45 MenuEntry("12. football"),
46 MenuEntry("13. welcome"),
47 MenuEntry("14. copper"),
48 MenuEntry("15. inhabitant"),
49 },
50 &selected);
51
52 // Display together the menu with a border
53 auto renderer = Renderer(menu, [&] {
54 return vbox({
55 hbox(text("selected = "), text(std::to_string(selected))),
56 separator(),
57 menu->Render() | frame,
58 }) |
59 border | bgcolor(Color::Black);
60 });
61
62 screen.Loop(renderer);
63
64 std::cout << "Selected element = " << selected << std::endl;
65}
static ScreenInteractive TerminalOutput()
AnimatedColorsOption animated_colors
Component MenuEntry(MenuEntryOption options)
A specific menu entry. They can be put into a Container::Vertical to form a menu.
Component Renderer(Component child, std::function< Element()>)
Return a new Component, similar to |child|, but using |render| as the Component::Render() event.
Component Vertical(Components children)
A list of components, drawn one by one vertically and navigated vertically using up/down arrow key or...
Option for the MenuEntry component.
virtual void Render(Screen &screen)
Display an element on a ftxui::Screen.
Definition node.cpp:59
Decorator bgcolor(Color)
Decorate using a background color.
Element text(std::wstring text)
Display a piece of unicode text.
Definition text.cpp:160
Element separator()
Draw a vertical or horizontal separation in between two other elements.
Element vbox(Elements)
A container displaying elements vertically one by one.
Definition vbox.cpp:96
Color is a class that represents a color in the terminal user interface.
Definition color.hpp:22
MenuEntryOption Colored(ftxui::Color c)
The FTXUI ftxui:: namespace.
Definition animation.hpp:10
Element hbox(Elements)
A container displaying elements horizontally one by one.
Definition hbox.cpp:94
Element frame(Element)
Allow an element to be displayed inside a 'virtual' area. It size can be larger than its container....
Definition frame.cpp:118