FTXUI
6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
examples/dom/border.cpp
// Copyright 2020 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.
#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
vbox
Element vbox(Elements children)
Un contenedor que muestra elementos verticalmente uno por uno.
Definition
vbox.cpp:95
hbox
return hbox({ text(std::to_string(int(progress *100))+"% ")|size(WIDTH, EQUAL, 5), gauge(progress), })
ftxui
El espacio de nombres ftxui:: de FTXUI.
Definition
animation.hpp:10
node.hpp
screen.hpp