FTXUI  5.0.0
C++ functional terminal UI.
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 =
Screen::Create(Dimension::Fit(document), Dimension::Fit(document));
Render(screen, document);
screen.Print();
std::cout << std::endl;
}
Dimensions Fit(Element &)
Definition: util.cpp:95
Element borderDouble(Element)
Draw a double border around the element.
Definition: border.cpp:405
Element borderDashed(Element)
Draw a light 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.
Definition: separator.cpp:207
Element hbox(Elements)
A container displaying elements horizontally one by one.
Definition: hbox.cpp:83
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:120
Element separatorDashed()
Draw a vertical or horizontal separation in between two other elements, using the DASHED style.
Definition: separator.cpp:244
Element borderLight(Element)
Draw a dashed 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:47
Element separatorDouble()
Draw a vertical or horizontal separation in between two other elements, using the DOUBLE style.
Definition: separator.cpp:318
Element separatorHeavy()
Draw a vertical or horizontal separation in between two other elements, using the HEAVY style.
Definition: separator.cpp:281
Element vbox(Elements)
A container displaying elements vertically one by one.
Definition: vbox.cpp:83