FTXUI
0.8.1
C++ functional terminal UI.
examples/dom/vbox_hbox.cpp
#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/box.hpp
"
// for ftxui
int
main(
int
argc,
const
char
* argv[]) {
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;
}
// 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
Definition:
captured_mouse.hpp:6
node.hpp
box.hpp
ftxui::filler
Element filler()
An element that will take expand proportionnally to the space left in a container.
Definition:
flex.cpp:94
ftxui::hbox
Element hbox(Elements)
A container displaying elements horizontally one by one.
Definition:
hbox.cpp:75
elements.hpp
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::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