FTXUI
0.8.1
C++ functional terminal UI.
examples/dom/dbox.cpp
#include <
ftxui/dom/elements.hpp
>
// for text, operator|, border, Element, vbox, center, Fit, dbox
#include <
ftxui/screen/screen.hpp
>
// for Full, Screen
#include <memory>
// for allocator
#include "
ftxui/dom/node.hpp
"
// for Render
#include "
ftxui/screen/box.hpp
"
// for ftxui
int
main(
int
argc,
const
char
* argv[]) {
using namespace
ftxui
;
auto
document =
dbox
({
vbox
({
text
(
"line_1"
),
text
(
"line_2"
),
text
(
"line_3"
),
text
(
"line_4"
),
text
(
"line_5"
),
}) |
border
,
text
(
"overlay"
) |
border
|
center
,
});
auto
screen =
Screen::Create
(
Dimension::Full
(),
Dimension::Fit
(document));
Render
(screen, document);
screen.Print();
return
0;
}
// 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.
ftxui::border
Element border(Element)
Draw a border around the element.
Definition:
border.cpp:138
ftxui::center
Element center(Element)
Center an element horizontally and vertically.
Definition:
composite_decorator.cpp:28
ftxui
Definition:
captured_mouse.hpp:6
node.hpp
box.hpp
elements.hpp
ftxui::Dimension::Fit
Dimensions Fit(Element &)
Definition:
util.cpp:71
ftxui::vbox
Element vbox(Elements)
A container displaying elements vertically one by one.
Definition:
vbox.cpp:76
ftxui::Screen::Create
static Screen Create(Dimensions dimension)
Create a screen with the given dimension.
Definition:
screen.cpp:115
ftxui::dbox
Element dbox(Elements)
Stack several element on top of each other.
Definition:
dbox.cpp:50
ftxui::Dimension::Full
Dimensions Full()
Definition:
screen.cpp:103
ftxui::Render
void Render(Screen &screen, const Element &node)
Display an element on a ftxui::Screen.
Definition:
node.cpp:34
screen.hpp
ftxui::text
Element text(std::wstring text)
Display a piece of unicode text.
Definition:
text.cpp:106