FTXUI
0.8.1
C++ functional terminal UI.
examples/dom/style_gallery.cpp
#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/box.hpp
"
// for ftxui
#include "
ftxui/screen/color.hpp
"
// for Color, Color::Blue
int
main(
int
argc,
const
char
* argv[]) {
using namespace
ftxui
;
// clang-format off
auto
document =
hbox
({
text
(
"normal"
) ,
text
(
" "
) ,
text
(
"bold"
) |
bold
,
text
(
" "
) ,
text
(
"dim"
) |
dim
,
text
(
" "
) ,
text
(
"inverted"
) |
inverted
,
text
(
" "
) ,
text
(
"underlined"
)|
underlined
,
text
(
" "
) ,
text
(
"blink"
) |
blink
,
text
(
" "
) ,
text
(
"color"
) |
color
(
Color::Blue
) ,
text
(
" "
) ,
text
(
"bgcolor"
) |
bgcolor
(
Color::Blue
),
});
// clang-format on
auto
screen =
Screen::Create
(
Dimension::Full
(),
Dimension::Fit
(document));
Render
(screen, document);
screen.Print();
return
0;
}
// 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.
ftxui
Definition:
captured_mouse.hpp:6
node.hpp
ftxui::inverted
Element inverted(Element)
Add a filter that will invert the foreground and the background colors.
Definition:
inverted.cpp:29
ftxui::color
Decorator color(Color)
Decorate using a foreground color.
Definition:
color.cpp:86
ftxui::bold
Element bold(Element)
Use a bold font, for elements with more emphasis.
Definition:
bold.cpp:28
box.hpp
ftxui::hbox
Element hbox(Elements)
A container displaying elements horizontally one by one.
Definition:
hbox.cpp:75
elements.hpp
ftxui::underlined
Element underlined(Element)
Make the underlined element to be underlined.
Definition:
underlined.cpp:28
ftxui::Color::Blue
@ Blue
Definition:
color.hpp:44
ftxui::Dimension::Fit
Dimensions Fit(Element &)
Definition:
util.cpp:71
ftxui::bgcolor
Decorator bgcolor(Color)
Decorate using a background color.
Definition:
color.cpp:100
ftxui::blink
Element blink(Element)
The text drawn alternates in between visible and hidden.
Definition:
blink.cpp:28
ftxui::Screen::Create
static Screen Create(Dimensions dimension)
Create a screen with the given dimension.
Definition:
screen.cpp:115
color.hpp
ftxui::Dimension::Full
Dimensions Full()
Definition:
screen.cpp:103
ftxui::dim
Element dim(Element)
Use a light font, for elements with less emphasis.
Definition:
dim.cpp:28
ftxui::Render
void Render(Screen &screen, const Element &node)
Display an element on a ftxui::Screen.
Definition:
node.cpp:34
screen.hpp
ftxui::text
Element text(std::wstring text)
Display a piece of unicode text.
Definition:
text.cpp:106