FTXUI  6.1.9
C++ functional terminal UI.
Loading...
Searching...
No Matches
examples/dom/separator.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, center, separator, operator|, flex, Element, vbox, Fit, hbox, border
#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 ftxui
int main() {
using namespace ftxui;
auto document = hbox({
text("left-column"),
vbox({
center(text("top")) | flex,
center(text("bottom")),
}) | flex,
text("right-column"),
}) |
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
Element flex(Element)
Make a child element to expand proportionally to the space left in a container.
Definition flex.cpp:123
Element hbox(Elements)
A container displaying elements horizontally one by one.
Definition hbox.cpp:94
Element center(Element)
Center an element horizontally and vertically.
Element text(std::wstring text)
Display a piece of unicode text.
Definition text.cpp:160
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
Element border(Element)
Draw a border around the element.
Definition border.cpp:227
Element vbox(Elements)
A container displaying elements vertically one by one.
Definition vbox.cpp:96