FTXUI 6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
nested_screen.cpp
Go to the documentation of this file.
1// Copyright 2020 Arthur Sonzogni. Todos los derechos reservados.
2// El uso de este código fuente se rige por la licencia MIT que se puede encontrar en
3// el archivo LICENSE.
4#include <memory> // for allocator, shared_ptr, __shared_ptr_access
5#include <string> // for operator+, string, char_traits, basic_string
6
7#include "ftxui/component/captured_mouse.hpp" // for ftxui
8#include "ftxui/component/component.hpp" // for Button, Vertical, Renderer
9#include "ftxui/component/component_base.hpp" // for ComponentBase
10#include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive
11#include "ftxui/dom/elements.hpp" // for separator, text, Element, operator|, vbox, border
12
13using namespace ftxui;
14
15void Nested(std::string path) {
17 auto back_button = Button("Back", screen.ExitLoopClosure());
18 auto goto_1 = Button("Goto /1", [path] { Nested(path + "/1"); });
19 auto goto_2 = Button("Goto /2", [path] { Nested(path + "/2"); });
20 auto goto_3 = Button("Goto /3", [path] { Nested(path + "/3"); });
21 auto layout = Container::Vertical({
22 back_button,
23 goto_1,
24 goto_2,
25 goto_3,
26 });
27 auto renderer = Renderer(layout, [&] {
28 return vbox({
29 text("path: " + path),
30 separator(),
31 back_button->Render(),
32 goto_1->Render(),
33 goto_2->Render(),
34 goto_3->Render(),
35 }) |
36 border;
37 });
38 screen.Loop(renderer);
39}
40
41int main() {
43 auto button_quit = Button("Quit", screen.ExitLoopClosure());
44 auto button_nested = Button("Nested", [] { Nested(""); });
45 screen.Loop(Container::Vertical({
46 button_quit,
47 button_nested,
48 }));
49 return 0;
50}
auto screen
static ScreenInteractive FitComponent()
Component Button(ButtonOption options)
Dibuja un botón. Ejecuta una función al hacer clic.
Component Renderer(Component child, std::function< Element()>)
Retorna un nuevo Componente, similar a |child|, pero usando |render| como el evento Component::Render...
virtual void Render(Screen &screen)
Muestra un elemento en un ftxui::Screen.
Definition node.cpp:59
Element text(std::wstring text)
Muestra un fragmento de texto Unicode.
Definition text.cpp:160
Element separator()
Dibuja una separación vertical u horizontal entre otros dos elementos.
El espacio de nombres ftxui:: de FTXUI.
Definition animation.hpp:10
Element vbox(Elements)
void Nested(std::string path)
int main()