2020-04-20 03:00:37 +08: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.
|
|
|
|
|
2019-01-07 05:28:15 +08:00
|
|
|
#include <chrono>
|
2020-05-25 07:34:13 +08:00
|
|
|
#include <ftxui/dom/elements.hpp>
|
|
|
|
#include <ftxui/screen/screen.hpp>
|
|
|
|
#include <ftxui/screen/string.hpp>
|
2019-01-07 05:28:15 +08:00
|
|
|
#include <iostream>
|
|
|
|
#include <thread>
|
|
|
|
|
2020-03-27 08:42:46 +08:00
|
|
|
int main(int argc, const char* argv[]) {
|
2019-01-07 05:28:15 +08:00
|
|
|
using namespace ftxui;
|
|
|
|
using namespace std::chrono_literals;
|
|
|
|
|
|
|
|
std::string reset_position;
|
2020-03-27 08:42:46 +08:00
|
|
|
for (int index = 0; index < 200; ++index) {
|
2019-01-07 05:28:15 +08:00
|
|
|
std::vector<Element> entries;
|
2020-03-27 08:42:46 +08:00
|
|
|
for (int i = 0; i < 22; ++i) {
|
2019-01-07 05:28:15 +08:00
|
|
|
if (i != 0)
|
2020-03-27 08:42:46 +08:00
|
|
|
entries.push_back(separator());
|
2020-05-21 02:36:47 +08:00
|
|
|
entries.push_back( //
|
|
|
|
hbox({
|
|
|
|
text(to_wstring(i)) | size(WIDTH, EQUAL, 2),
|
|
|
|
separator(),
|
|
|
|
spinner(i, index) | bold,
|
|
|
|
}));
|
2019-01-07 05:28:15 +08:00
|
|
|
}
|
2020-05-21 02:36:47 +08:00
|
|
|
auto document = hbox({
|
|
|
|
vbox(std::move(entries)) | border,
|
|
|
|
filler(),
|
|
|
|
});
|
2019-01-27 04:52:55 +08:00
|
|
|
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
2020-05-21 03:23:59 +08:00
|
|
|
Render(screen, document);
|
2019-01-07 05:28:15 +08:00
|
|
|
std::cout << reset_position << screen.ToString() << std::flush;
|
|
|
|
reset_position = screen.ResetPosition();
|
|
|
|
|
|
|
|
std::this_thread::sleep_for(0.1s);
|
|
|
|
}
|
|
|
|
std::cout << std::endl;
|
|
|
|
}
|