FTXUI 6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
examples/component/window.cpp
Go to the documentation of this file.
1// Copyright 2023 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.
6
7using namespace ftxui;
8
10 class Impl : public ComponentBase {
11 private:
12 bool checked[3] = {false, false, false};
13 float slider = 50;
14
15 public:
16 Impl() {
18 Checkbox("Check me", &checked[0]),
19 Checkbox("Check me", &checked[1]),
20 Checkbox("Check me", &checked[2]),
21 Slider("Slider", &slider, 0.f, 100.f),
22 }));
23 }
24 };
25 return Make<Impl>();
26}
27
28int main() {
29 int window_1_left = 20;
30 int window_1_top = 10;
31 int window_1_width = 40;
32 int window_1_height = 20;
33
34 auto window_1 = Window({
35 .inner = DummyWindowContent(),
36 .title = "First window",
37 .left = &window_1_left,
38 .top = &window_1_top,
39 .width = &window_1_width,
40 .height = &window_1_height,
41 });
42
43 auto window_2 = Window({
44 .inner = DummyWindowContent(),
45 .title = "My window",
46 .left = 40,
47 .top = 20,
48 });
49
50 auto window_3 = Window({
51 .inner = DummyWindowContent(),
52 .title = "My window",
53 .left = 60,
54 .top = 30,
55 });
56
57 auto window_4 = Window({
58 .inner = DummyWindowContent(),
59 });
60
61 auto window_5 = Window({});
62
63 auto window_container = Container::Stacked({
64 window_1,
65 window_2,
66 window_3,
67 window_4,
68 window_5,
69 });
70
71 auto display_win_1 = Renderer([&] {
72 return text("window_1: " + //
73 std::to_string(window_1_width) + "x" +
74 std::to_string(window_1_height) + " + " +
75 std::to_string(window_1_left) + "," +
76 std::to_string(window_1_top));
77 });
78
79 auto layout = Container::Vertical({
80 display_win_1,
81 window_container,
82 });
83
84 auto screen = ScreenInteractive::Fullscreen();
85 screen.Loop(layout);
86
87 return EXIT_SUCCESS;
88}
It implement rendering itself as ftxui::Element. It implement keyboard navigation by responding to ft...
void Add(Component children)
Add a child. @param child The child to be attached.
Definition component.cpp:75
static ScreenInteractive Fullscreen()
Component DummyWindowContent()
Component Vertical(Components children)
A list of components, drawn one by one vertically and navigated vertically using up/down arrow key or...
Component Stacked(Components children)
A list of components to be stacked on top of each other. Events are propagated to the first component...
std::shared_ptr< T > Make(Args &&... args)
Definition component.hpp:26
Component Renderer(Component child, std::function< Element()>)
Return a new Component, similar to |child|, but using |render| as the Component::Render() event.
Component Window(WindowOptions option)
A draggeable / resizeable window. To use multiple of them, they must be stacked using Container::Stac...
Element text(std::wstring text)
Display a piece of unicode text.
Definition text.cpp:160
Component Slider(SliderOption< T > options)
A slider in any direction.
Component Checkbox(CheckboxOption options)
Draw checkable element.
std::shared_ptr< ComponentBase > Component