FTXUI
6.1.9
C++ functional terminal UI.
Chargement...
Recherche...
Aucune correspondance
examples/dom/vbox_hbox.cpp
// Copyright 2020 Arthur Sonzogni. Tous droits réservés.
// L'utilisation de ce code source est régie par la licence MIT que l'on peut trouver dans
// le fichier LICENSE.
#include <stdio.h>
// for getchar
#include <
ftxui/dom/elements.hpp
>
// for filler, text, hbox, vbox
#include <
ftxui/screen/screen.hpp
>
// for Full, Screen
#include <memory>
// for allocator
#include "
ftxui/dom/node.hpp
"
// for Render
#include "
ftxui/screen/color.hpp
"
// for ftxui
int
main
() {
using namespace
ftxui
;
auto
document =
//
vbox({
hbox({
text(
"north-west"
),
filler(),
text(
"north-east"
),
}),
filler(),
hbox({
filler(),
text(
"center"
),
filler(),
}),
filler(),
hbox({
text(
"south-west"
),
filler(),
text(
"south-east"
),
}),
});
auto
screen
= Screen::Create(Dimension::Full());
Render
(
screen
, document);
screen
.Print();
getchar();
return
0;
}
color.hpp
screen
auto screen
Definition
composition.cpp:56
elements.hpp
main
int main()
Definition
examples/component/button.cpp:33
Render
void Render(Screen &screen, const Element &element)
Affiche un élément sur un ftxui::Screen.
Definition
node.cpp:83
ftxui
L'espace de noms FTXUI ftxui::
Definition
animation.hpp:10
node.hpp
screen.hpp