2020-04-19 21:00:37 +02:00
|
|
|
// 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.
|
|
|
|
|
|
2018-09-22 09:49:43 +02:00
|
|
|
#include <chrono>
|
|
|
|
|
#include <iostream>
|
|
|
|
|
#include <thread>
|
|
|
|
|
|
2018-10-09 19:06:03 +02:00
|
|
|
#include "ftxui/dom/elements.hpp"
|
2020-03-22 22:32:44 +01:00
|
|
|
#include "ftxui/screen/screen.hpp"
|
2018-09-22 09:49:43 +02:00
|
|
|
|
2020-03-22 22:32:44 +01:00
|
|
|
int main(int argc, const char* argv[]) {
|
2019-01-12 15:00:08 +01:00
|
|
|
using namespace ftxui;
|
2020-05-20 20:36:47 +02:00
|
|
|
auto document = hbox({
|
2019-01-06 16:10:57 +01:00
|
|
|
window(text(L" main frame ") | hcenter,
|
2020-05-20 20:36:47 +02:00
|
|
|
vbox({
|
|
|
|
|
text(L"Line 1"),
|
|
|
|
|
text(L"Line 2"),
|
|
|
|
|
text(L"Line 3"),
|
|
|
|
|
vbox({
|
|
|
|
|
text(L"Line 4"),
|
|
|
|
|
text(L"Line 5"),
|
|
|
|
|
text(L"Line 6"),
|
|
|
|
|
}) | border,
|
|
|
|
|
hbox({
|
|
|
|
|
window(text(L"frame 2"), vbox({
|
|
|
|
|
text(L"Line 4"),
|
|
|
|
|
text(L"Line 5"),
|
|
|
|
|
text(L"Line 6"),
|
|
|
|
|
})),
|
|
|
|
|
window(text(L"frame 3"), vbox({
|
|
|
|
|
text(L"Line 7"),
|
|
|
|
|
text(L"Line 8"),
|
|
|
|
|
text(L"Line 9"),
|
|
|
|
|
})),
|
|
|
|
|
}),
|
|
|
|
|
text(L"footer footer footer footer footer"),
|
|
|
|
|
})),
|
|
|
|
|
filler(),
|
|
|
|
|
});
|
2019-01-26 21:52:55 +01:00
|
|
|
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
2020-05-20 21:23:59 +02:00
|
|
|
Render(screen, document);
|
2018-09-22 09:49:43 +02:00
|
|
|
std::cout << screen.ToString() << std::endl;
|
|
|
|
|
}
|