FTXUI  6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
examples/dom/border_colored.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 make_boxed = [] {
return vbox({
text("borderLight") | borderStyled(LIGHT, Color::Red),
text("borderDashed") | borderStyled(DASHED, Color::Green),
text("borderHeavy") | borderStyled(HEAVY, Color::Blue),
text("borderDouble") | borderStyled(DOUBLE, Color::Yellow),
text("borderRounded") | borderStyled(ROUNDED, Color::Cyan),
});
};
auto document = hbox({
make_boxed(),
make_boxed(),
make_boxed(),
}) |
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 hbox(Elements)
A container displaying elements horizontally one by one.
Definition hbox.cpp:94
Element text(std::wstring text)
Display a piece of unicode text.
Definition text.cpp:160
Decorator borderStyled(BorderStyle)
Same as border but with different styles.
Definition border.cpp:243
Element separator()
Draw a vertical or horizontal separation in between two other elements.
void Render(Screen &screen, const Element &element)
Display an element on a ftxui::Screen.
Definition node.cpp:88
Decorator color(Color)
Decorate using a foreground color.
Definition color.cpp:110
Element vbox(Elements)
A container displaying elements vertically one by one.
Definition vbox.cpp:96
@ DOUBLE
Definition elements.hpp:31
@ HEAVY
Definition elements.hpp:30
@ ROUNDED
Definition elements.hpp:32
@ DASHED
Definition elements.hpp:29
@ LIGHT
Definition elements.hpp:28