FTXUI  6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
examples/dom/style_gallery.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 text, operator|, Element, bgcolor, color, blink, bold, dim, inverted, underlined, Fit, hbox
#include <ftxui/screen/screen.hpp> // for Full, Screen
#include <memory> // for allocator
#include "ftxui/dom/node.hpp" // for Render
#include "ftxui/screen/color.hpp" // for Color, Color::Blue, ftxui
int main() {
using namespace ftxui;
// clang-format off
auto document =
hbox({
text("normal") , text(" ") ,
text("bold") | bold , text(" ") ,
text("italic") | italic , text(" ") ,
text("dim") | dim , text(" ") ,
text("inverted") | inverted , text(" ") ,
text("underlined") | underlined , text(" ") ,
text("underlinedDouble") | underlinedDouble , text(" ") ,
text("blink") | blink , text(" ") ,
text("strikethrough") | strikethrough , text(" ") ,
text("color") | color(Color::Blue) , text(" ") ,
text("bgcolor") | bgcolor(Color::Blue) , text(" ") ,
text("hyperlink") | hyperlink("https://github.com/ArthurSonzogni/FTXUI"),
});
// clang-format on
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
Render(screen, document);
screen.Print();
return 0;
}
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
Dimensions Full()
Definition screen.cpp:382
Decorator bgcolor(Color)
Decorate using a background color.
Definition color.cpp:124
Element underlinedDouble(Element)
Apply a underlinedDouble to text.
Element bold(Element)
Use a bold font, for elements with more emphasis.
Definition bold.cpp:33
Element hbox(Elements)
A container displaying elements horizontally one by one.
Definition hbox.cpp:94
Element underlined(Element)
Make the underlined element to be underlined.
Element inverted(Element)
Add a filter that will invert the foreground and the background colors.
Definition inverted.cpp:34
Element text(std::wstring text)
Display a piece of unicode text.
Definition text.cpp:160
Element strikethrough(Element)
Apply a strikethrough to text.
Element italic(Element)
Apply a underlinedDouble to text.
Definition italic.cpp:17
Element dim(Element)
Use a light font, for elements with less emphasis.
Definition dim.cpp:33
Decorator hyperlink(std::string link)
Decorate using an hyperlink. The link will be opened when the user click on it. This is supported onl...
Definition hyperlink.cpp:70
void Render(Screen &screen, const Element &element)
Display an element on a ftxui::Screen.
Definition node.cpp:88
Element blink(Element)
The text drawn alternates in between visible and hidden.
Definition blink.cpp:33
Decorator color(Color)
Decorate using a foreground color.
Definition color.cpp:110