FTXUI/examples/dom/spinner.cpp

40 lines
1.0 KiB
C++
Raw Normal View History

2019-01-07 05:28:15 +08:00
#include <chrono>
#include <iostream>
#include <thread>
#include "ftxui/screen/screen.hpp"
#include "ftxui/dom/elements.hpp"
2019-01-13 01:24:46 +08:00
#include "ftxui/screen/string.hpp"
2019-01-07 05:28:15 +08:00
int main(int argc, const char *argv[])
{
using namespace ftxui;
using namespace std::chrono_literals;
std::string reset_position;
for(int index = 0; index < 200; ++index) {
std::vector<Element> entries;
for(int i = 0; i<22; ++i) {
if (i != 0)
entries.push_back(separator());
2020-03-23 05:32:44 +08:00
// clang-format off
2019-01-07 05:28:15 +08:00
entries.push_back(
hbox(
text(to_wstring(i)) | size(WIDTH, EQUAL, 2),
separator(),
2019-01-07 05:28:15 +08:00
spinner(i, index) | bold
)
);
2020-03-23 05:32:44 +08:00
// clang-format on
2019-01-07 05:28:15 +08:00
}
2019-01-20 05:06:05 +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));
2019-01-07 05:28:15 +08:00
Render(screen, document.get());
std::cout << reset_position << screen.ToString() << std::flush;
reset_position = screen.ResetPosition();
std::this_thread::sleep_for(0.1s);
}
std::cout << std::endl;
}