FTXUI  5.0.0
C++ functional terminal UI.
examples/dom/border_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/dom/elements.hpp> // for operator|, text, Element, Fit, borderDouble, borderHeavy, borderLight, borderRounded, vbox
#include <ftxui/screen/screen.hpp> // for Screen
#include <iostream> // for endl, cout, ostream
#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 = vbox({
text("borderLight") | borderLight,
text("borderDashed") | borderDashed,
text("borderHeavy") | borderHeavy,
text("borderDouble") | borderDouble,
text("borderRounded") | borderRounded,
});
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 borderRounded(Element)
Draw a rounded border around the element.
Definition: border.cpp:440
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 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 vbox(Elements)
A container displaying elements vertically one by one.
Definition: vbox.cpp:83