FTXUI  6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
examples/dom/separator_style.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 <ftxui/screen/screen.hpp> // for Screen
#include <iostream> // for endl, cout, ostream
#include <memory> // for allocator
#include "ftxui/dom/elements.hpp" // for text, hbox, separatorDouble, separatorHeavy, separatorLight, vbox, operator|, Element, Fit, borderDouble, borderHeavy, borderLight
#include "ftxui/dom/node.hpp" // for Render
#include "ftxui/screen/box.hpp" // for ftxui
int main() {
using namespace ftxui;
auto document = vbox({
vbox({
text("separatorLight"),
hbox(text("left"), separatorLight(), text("right")),
vbox({
text("separatorDashed"),
hbox(text("left"), separatorDashed(), text("right")),
vbox({
text("separatorHeavy"),
hbox(text("left"), separatorHeavy(), text("right")),
vbox({
text("separatorDouble"),
hbox(text("left"), separatorDouble(), text("right")),
});
auto screen =
Render(screen, document);
screen.Print();
std::cout << std::endl;
}
static Screen Create(Dimensions dimension)
Create a screen with the given dimension.
Definition screen.cpp:394
Dimensions Fit(Element &, bool extend_beyond_screen=false)
Definition util.cpp:93
Element borderDouble(Element)
Draw a double border around the element.
Definition border.cpp:405
Element borderDashed(Element)
Draw a dashed border around the element.
Definition border.cpp:300
Element separatorLight()
Draw a vertical or horizontal separation in between two other elements, using the LIGHT style.
Element hbox(Elements)
A container displaying elements horizontally one by one.
Definition hbox.cpp:94
Element borderHeavy(Element)
Draw a heavy border around the element.
Definition border.cpp:370
Element text(std::wstring text)
Display a piece of unicode text.
Definition text.cpp:160
Element separatorDashed()
Draw a vertical or horizontal separation in between two other elements, using the DASHED style.
Element borderLight(Element)
Draw a light border around the element.
Definition border.cpp:335
void Render(Screen &screen, const Element &element)
Display an element on a ftxui::Screen.
Definition node.cpp:88
Element separatorDouble()
Draw a vertical or horizontal separation in between two other elements, using the DOUBLE style.
Element separatorHeavy()
Draw a vertical or horizontal separation in between two other elements, using the HEAVY style.
Element vbox(Elements)
A container displaying elements vertically one by one.
Definition vbox.cpp:96