FTXUI
6.1.9
C++ functional terminal UI.
Chargement...
Recherche...
Aucune correspondance
examples/dom/border.cpp
// Copyright 2020 Arthur Sonzogni. Tous droits réservés.
// L'utilisation de ce code source est régie par la licence MIT qui peut être trouvée dans
// le fichier LICENSE.
#include <stdlib.h>
// for EXIT_SUCCESS
#include <
ftxui/dom/elements.hpp
>
// for text, operator|, vbox, border, Element, Fit, hbox
#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 =
//
hbox({
vbox({
text(
"Line 1"
),
text(
"Line 2"
),
text(
"Line 3"
),
}) | border,
vbox({
text(
"Line 4"
),
text(
"Line 5"
),
text(
"Line 6"
),
}) | border,
vbox({
text(
"Line 7"
),
text(
"Line 8"
),
text(
"Line 9"
),
}) | border,
});
auto
screen
= Screen::Create(Dimension::Full(), Dimension::Fit(document));
Render
(
screen
, document);
screen
.Print();
return
EXIT_SUCCESS;
}
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