FTXUI
0.8.1
C++ functional terminal UI.
examples/dom/window.cpp
#include <
ftxui/dom/elements.hpp
>
#include <
ftxui/screen/screen.hpp
>
#include <vector>
#include "
ftxui/dom/node.hpp
"
#include "
ftxui/screen/box.hpp
"
#include "
ftxui/screen/color.hpp
"
int
main(
void
) {
using namespace
ftxui
;
Element
document =
graph
([](
int
x,
int
y) {
std::vector<int> result(x, 0);
for
(
int
i{0}; i < x; ++i) {
result[i] = ((3 * i) / 2) % y;
}
return
result;
}) |
color
(
Color::Red
) |
border
|
color
(
Color::Green
) |
bgcolor
(
Color::DarkBlue
);
auto
screen =
Screen::Create
(
Dimension::Fixed
(80),
Dimension::Fixed
(10));
Render
(screen, document);
screen.Print();
}
// 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::border
Element border(Element)
Draw a border around the element.
Definition:
border.cpp:138
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
box.hpp
elements.hpp
ftxui::graph
Element graph(GraphFunction)
Draw a graph using a GraphFunction.
Definition:
graph.cpp:59
ftxui::Element
std::shared_ptr< Node > Element
Definition:
elements.hpp:15
ftxui::bgcolor
Decorator bgcolor(Color)
Decorate using a background color.
Definition:
color.cpp:100
ftxui::Dimension::Fixed
Dimensions Fixed(int)
Definition:
screen.cpp:96
ftxui::Screen::Create
static Screen Create(Dimensions dimension)
Create a screen with the given dimension.
Definition:
screen.cpp:115
color.hpp
ftxui::Render
void Render(Screen &screen, const Element &node)
Display an element on a ftxui::Screen.
Definition:
node.cpp:34
ftxui::Color::DarkBlue
@ DarkBlue
Definition:
color.hpp:79
screen.hpp