2019-01-07 00:10:35 +08:00
|
|
|
#include "ftxui/screen/screen.hpp"
|
2019-01-03 07:35:59 +08:00
|
|
|
#include "ftxui/dom/elements.hpp"
|
|
|
|
#include <iostream>
|
|
|
|
|
|
|
|
int main(int argc, const char *argv[])
|
|
|
|
{
|
|
|
|
using namespace ftxui::dom;
|
2019-01-07 00:10:35 +08:00
|
|
|
using namespace ftxui::screen;
|
2019-01-03 07:35:59 +08:00
|
|
|
auto document =
|
|
|
|
dbox(
|
|
|
|
frame(
|
|
|
|
vbox(
|
|
|
|
text(L"line_1"),
|
|
|
|
text(L"line_2"),
|
|
|
|
text(L"line_3"),
|
|
|
|
text(L"line_4"),
|
|
|
|
text(L"line_5")
|
|
|
|
)
|
|
|
|
),
|
|
|
|
center(
|
|
|
|
frame(
|
|
|
|
text(L"overlay")
|
|
|
|
)
|
|
|
|
)
|
|
|
|
);
|
2019-01-07 00:10:35 +08:00
|
|
|
auto screen = Screen::TerminalOutput(document);
|
2019-01-03 07:35:59 +08:00
|
|
|
Render(screen, document.get());
|
|
|
|
|
|
|
|
std::cout << screen.ToString();
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|