FTXUI
0.8.1
C++ functional terminal UI.
deprecated.hpp
Go to the documentation of this file.
1
#ifndef FTXUI_DOM_DEPRECRATED_HPP
2
#define FTXUI_DOM_DEPRECRATED_HPP
3
4
#include "
ftxui/dom/elements.hpp
"
5
6
namespace
ftxui
{
7
Element
text
(std::wstring
text
);
8
Element
vtext
(std::wstring
text
);
9
Elements
paragraph
(std::wstring
text
);
10
}
// namespace ftxui
11
12
#endif
/* end of include guard: FTXUI_DOM_DEPRECRATED_HPP */
13
14
// Copyright 2021 Arthur Sonzogni. All rights reserved.
15
// Use of this source code is governed by the MIT license that can be found in
16
// the LICENSE file.
ftxui::paragraph
Elements paragraph(std::wstring text)
Return a vector of ftxui::text for every word of the string. This is useful combined with ftxui::hflo...
Definition:
paragraph.cpp:14
ftxui
Definition:
captured_mouse.hpp:6
ftxui::vtext
Element vtext(std::wstring text)
Display a piece unicode text vertically.
Definition:
text.cpp:166
ftxui::Elements
std::vector< Element > Elements
Definition:
elements.hpp:16
elements.hpp
ftxui::Element
std::shared_ptr< Node > Element
Definition:
elements.hpp:15
ftxui::text
Element text(std::wstring text)
Display a piece of unicode text.
Definition:
text.cpp:106