mirror of
https://github.com/ArthurSonzogni/FTXUI.git
synced 2024-11-01 08:41:33 +08:00
38 lines
1014 B
C++
38 lines
1014 B
C++
#include <chrono>
|
|
#include <iostream>
|
|
#include <thread>
|
|
|
|
#include "ftxui/screen/screen.hpp"
|
|
#include "ftxui/dom/elements.hpp"
|
|
#include "ftxui/screen/string.hpp"
|
|
|
|
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());
|
|
entries.push_back(
|
|
hbox(
|
|
text(to_wstring(i)) | size(WIDTH, EQUAL, 2),
|
|
separator(),
|
|
spinner(i, index) | bold
|
|
)
|
|
);
|
|
}
|
|
auto document = hbox(vbox(std::move(entries)) | border, filler());
|
|
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
|
|
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;
|
|
}
|