FTXUI 6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
checkbox_in_frame.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 <array> // for array
5#include <memory> // for shared_ptr, __shared_ptr_access
6#include <string> // for operator+, to_string
7
8#include "ftxui/component/captured_mouse.hpp" // for ftxui
9#include "ftxui/component/component.hpp" // for Checkbox, Renderer, Vertical
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, vscroll_indicator, HEIGHT, LESS_THAN
13
14using namespace ftxui;
15
16int main() {
17 std::array<bool, 30> states;
18
19 auto container = Container::Vertical({});
20 for (int i = 0; i < 30; ++i) {
21 states[i] = false;
22 container->Add(Checkbox("Casilla de verificación" + std::to_string(i), &states[i]));
23 }
24
25 auto renderer = Renderer(container, [&] {
26 return container->Render() | vscroll_indicator | frame |
28 });
29
31 screen.Loop(renderer);
32
33 return 0;
34}
int main()
auto screen
static ScreenInteractive FitComponent()
Component Renderer(Component child, std::function< Element()>)
Retorna un nuevo Componente, similar a |child|, pero usando |render| como el evento Component::Render...
Component Checkbox(CheckboxOption options)
Dibuja un elemento seleccionable.
Decorator size(WidthOrHeight, Constraint, int value)
Aplica una restricción al tamaño de un elemento.
Element border(Element)
Draw a border around the element.
El espacio de nombres ftxui:: de FTXUI.
Definition animation.hpp:10
@ LESS_THAN
Definition elements.hpp:162