FTXUI 6.1.9
C++ functional terminal UI.
载入中...
搜索中...
未找到
checkbox_in_frame.cpp
浏览该文件的文档.
1// 版权所有 2020 Arthur Sonzogni。保留所有权利。
2// 本源代码的使用受 MIT 许可证的管辖,该许可证可在
3// 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("Checkbox" + std::to_string(i), &states[i]));
23 }
24
25 auto renderer = Renderer(container, [&] {
26 return container->Render() | vscroll_indicator | frame |
28 });
29
30 auto screen = ScreenInteractive::FitComponent();
31 screen.Loop(renderer);
32
33 return 0;
34}
static ScreenInteractive FitComponent()
创建一个 ScreenInteractive,其宽度和高度与正在绘制的组件匹配。
Component Renderer(Component child, std::function< Element()>)
返回一个新组件,类似于 |child|,但使用 |render| 作为 Component::Render() 事件。
Component Checkbox(CheckboxOption options)
绘制可勾选元素。
Decorator size(WidthOrHeight, Constraint, int value)
对元素大小应用约束。
#include "ftxui/component/component_base.hpp" // 用于 ComponentBase
Element border(Element)