FTXUI  0.8.1
C++ functional terminal UI.
examples/dom/style_color.cpp
#include <ftxui/screen/screen.hpp> // for Full, Screen
#include <memory> // for allocator
#include "ftxui/dom/elements.hpp" // for text, bgcolor, color, vbox, Fit, filler, hbox
#include "ftxui/dom/node.hpp" // for Render
#include "ftxui/screen/box.hpp" // for ftxui
#include "ftxui/screen/color.hpp" // for Color, Color::Black, Color::Blue, Color::BlueLight, Color::Cyan, Color::CyanLight, Color::Default, Color::GrayDark, Color::GrayLight, Color::Green, Color::GreenLight, Color::Magenta, Color::MagentaLight, Color::Red, Color::RedLight, Color::White, Color::Yellow, Color::YellowLight
int main(int argc, const char* argv[]) {
using namespace ftxui;
// clang-format off
auto document =
color(Color::Default, text("Default")),
color(Color::Black, text("Black")),
color(Color::GrayDark, text("GrayDark")),
color(Color::GrayLight, text("GrayLight")),
color(Color::White, text("White")),
color(Color::Blue, text("Blue")),
color(Color::BlueLight, text("BlueLight")),
color(Color::Cyan, text("Cyan")),
color(Color::CyanLight, text("CyanLight")),
color(Color::Green, text("Green")),
color(Color::GreenLight, text("GreenLight")),
color(Color::Magenta, text("Magenta")),
color(Color::MagentaLight, text("MagentaLight")),
color(Color::Red, text("Red")),
color(Color::RedLight, text("RedLight")),
color(Color::Yellow, text("Yellow")),
color(Color::YellowLight, text("YellowLight"))
),
bgcolor(Color::Default, text("Default")),
bgcolor(Color::GrayDark, text("GrayDark")),
bgcolor(Color::GrayLight, text("GrayLight")),
bgcolor(Color::BlueLight, text("BlueLight")),
bgcolor(Color::CyanLight, text("CyanLight")),
bgcolor(Color::GreenLight, text("GreenLight")),
bgcolor(Color::Magenta, text("Magenta")),
bgcolor(Color::MagentaLight, text("MagentaLight")),
bgcolor(Color::RedLight, text("RedLight")),
bgcolor(Color::Yellow, text("Yellow")),
bgcolor(Color::YellowLight, text("YellowLight"))
),
);
// 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::Color::Green
@ Green
Definition: color.hpp:42
ftxui::Color::Red
@ Red
Definition: color.hpp:41
ftxui
Definition: captured_mouse.hpp:6
node.hpp
ftxui::color
Decorator color(Color)
Decorate using a foreground color.
Definition: color.cpp:86
ftxui::Color::Magenta
@ Magenta
Definition: color.hpp:45
ftxui::Color::MagentaLight
@ MagentaLight
Definition: color.hpp:53
box.hpp
ftxui::filler
Element filler()
An element that will take expand proportionnally to the space left in a container.
Definition: flex.cpp:94
ftxui::hbox
Element hbox(Elements)
A container displaying elements horizontally one by one.
Definition: hbox.cpp:75
ftxui::Color::Yellow
@ Yellow
Definition: color.hpp:43
ftxui::Color::YellowLight
@ YellowLight
Definition: color.hpp:51
ftxui::Color::GrayDark
@ GrayDark
Definition: color.hpp:48
ftxui::Color::CyanLight
@ CyanLight
Definition: color.hpp:54
elements.hpp
ftxui::Color::RedLight
@ RedLight
Definition: color.hpp:49
ftxui::Color::GreenLight
@ GreenLight
Definition: color.hpp:50
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::Color::Black
@ Black
Definition: color.hpp:40
ftxui::vbox
Element vbox(Elements)
A container displaying elements vertically one by one.
Definition: vbox.cpp:76
ftxui::Screen::Create
static Screen Create(Dimensions dimension)
Create a screen with the given dimension.
Definition: screen.cpp:115
ftxui::Color::GrayLight
@ GrayLight
Definition: color.hpp:47
color.hpp
ftxui::Dimension::Full
Dimensions Full()
Definition: screen.cpp:103
ftxui::Render
void Render(Screen &screen, const Element &node)
Display an element on a ftxui::Screen.
Definition: node.cpp:34
ftxui::Color::BlueLight
@ BlueLight
Definition: color.hpp:52
ftxui::Color::Default
@ Default
Definition: color.hpp:36
screen.hpp
ftxui::text
Element text(std::wstring text)
Display a piece of unicode text.
Definition: text.cpp:106
ftxui::Color::Cyan
@ Cyan
Definition: color.hpp:46
ftxui::Color::White
@ White
Definition: color.hpp:55