FTXUI/examples/dom/spinner.cpp

48 lines
1.7 KiB
C++
Raw Normal View History

#include <chrono> // for operator""s, chrono_literals
#include <ftxui/dom/elements.hpp> // for Element, operator|, separator, filler, hbox, size, spinner, text, vbox, bold, border, Fit, EQUAL, WIDTH
#include <ftxui/screen/screen.hpp> // for Full, Screen
#include <iostream> // for cout, endl, ostream
#include <string> // for to_string, operator<<, string
#include <thread> // for sleep_for
#include <utility> // for move
#include <vector> // for vector
2021-05-02 02:40:35 +08:00
2022-01-07 18:03:54 +08:00
#include "ftxui/dom/node.hpp" // for Render
#include "ftxui/screen/color.hpp" // for ftxui
2019-01-07 05:28:15 +08:00
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;
for (int i = 0; i < 23; ++i) {
2019-01-07 05:28:15 +08:00
if (i != 0)
2020-03-27 08:42:46 +08:00
entries.push_back(separator());
entries.push_back( //
hbox({
text(std::to_string(i)) | size(WIDTH, EQUAL, 2),
separator(),
spinner(i, index) | bold,
}));
2019-01-07 05:28:15 +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));
Render(screen, document);
2021-03-22 05:54:39 +08:00
std::cout << reset_position;
screen.Print();
2019-01-07 05:28:15 +08:00
reset_position = screen.ResetPosition();
std::this_thread::sleep_for(0.1s);
}
std::cout << std::endl;
}
2020-09-06 19:46:56 +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.