FTXUI 6.1.9
C++ functional terminal UI.
Chargement...
Recherche...
Aucune correspondance
examples/component/window.cpp
Aller à la documentation de ce fichier.
1// Copyright 2023 Arthur Sonzogni. Tous droits réservés.
2// L'utilisation de ce code source est régie par la licence MIT qui peut être trouvée
3// dans le fichier LICENSE.
6#include <string>
7
8using namespace ftxui;
9
11 class Impl : public ComponentBase {
12 private:
13 bool checked[3] = {false, false, false};
14 float slider = 50;
15
16 public:
17 Impl() {
18 Add(Container::Vertical({
19 Checkbox("Cochez-moi", &checked[0]),
20 Checkbox("Cochez-moi", &checked[1]),
21 Checkbox("Cochez-moi", &checked[2]),
22 Slider("Curseur", &slider, 0.f, 100.f),
23 }));
24 }
25 };
26 return Make<Impl>();
27}
28
29int main() {
30 int window_1_left = 20;
31 int window_1_top = 10;
32 int window_1_width = 40;
33 int window_1_height = 20;
34
35 auto window_1 = Window({
36 .inner = DummyWindowContent(),
37 .title = "Première fenêtre",
38 .left = &window_1_left,
39 .top = &window_1_top,
40 .width = &window_1_width,
41 .height = &window_1_height,
42 });
43
44 auto window_2 = Window({
45 .inner = DummyWindowContent(),
46 .title = "Ma fenêtre",
47 .left = 40,
48 .top = 20,
49 });
50
51 auto window_3 = Window({
52 .inner = DummyWindowContent(),
53 .title = "Ma fenêtre",
54 .left = 60,
55 .top = 30,
56 });
57
58 auto window_4 = Window({
59 .inner = DummyWindowContent(),
60 });
61
62 auto window_5 = Window({});
63
64 auto window_container = Container::Stacked({
65 window_1,
66 window_2,
67 window_3,
68 window_4,
69 window_5,
70 });
71
72 auto display_win_1 = Renderer([&] {
73 return text("window_1: " + //
74 std::to_string(window_1_width) + "x" +
75 std::to_string(window_1_height) + " + " +
76 std::to_string(window_1_left) + "," +
77 std::to_string(window_1_top));
78 });
79
80 auto layout = Container::Vertical({
81 display_win_1,
82 window_container,
83 });
84
86 screen.Loop(layout);
87
88 return EXIT_SUCCESS;
89}
auto screen
Component DummyWindowContent()
void Add(Component children)
Ajoute un enfant. @param child L'enfant à attacher.
Definition component.cpp:70
static ScreenInteractive Fullscreen()
Il implémente son propre rendu en tant que ftxui::Element. Il implémente la navigation au clavier en ...
Component Renderer(Component child, std::function< Element()>)
Renvoie un nouveau composant, similaire à |child|, mais utilisant |render| comme événement Component:...
Component Checkbox(CheckboxOption options)
Dessine un élément à cocher.
Element text(std::wstring text)
Affiche un morceau de texte unicode.
Definition text.cpp:160
L'espace de noms FTXUI ftxui::
Definition animation.hpp:10
std::shared_ptr< T > Make(Args &&... args)
Definition component.hpp:27
Component Window(WindowOptions option)
Component Slider(SliderOption< T > options)
Un curseur dans n'importe quelle direction.
std::shared_ptr< ComponentBase > Component