FTXUI
6.1.9
C++ functional terminal UI.
载入中...
搜索中...
未找到
style_blink.cpp
浏览该文件的文档.
1
// 版权所有 2020 Arthur Sonzogni。保留所有权利。
2
// 此源代码的使用受 MIT 许可证的约束,该许可证可在
3
// LICENSE 文件中找到。
4
#include <
ftxui/dom/elements.hpp
>
// for text, operator|, blink, Fit, hbox, Element
5
#include <
ftxui/screen/screen.hpp
>
// for Full, Screen
6
#include <memory>
// for allocator
7
8
#include "
ftxui/dom/node.hpp
"
// for Render
9
#include "
ftxui/screen/color.hpp
"
// for ftxui
10
11
int
main
() {
12
using namespace
ftxui
;
13
auto
document =
//
14
hbox({
15
text(
"This text is "
),
16
text(
"blink"
) | blink,
17
text(
". Do you like it?"
),
18
});
19
auto
screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
20
Render(screen, document);
21
screen.Print();
22
23
return
0;
24
}
color.hpp
elements.hpp
ftxui
#include "ftxui/component/component_base.hpp" // 用于 ComponentBase
定义
animation.hpp:9
node.hpp
screen.hpp
main
int main()
定义
style_blink.cpp:11