Files
FTXUI/examples/dom/spinner.cpp

43 lines
1.2 KiB
C++
Raw Normal View History

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.
2019-01-06 22:28:15 +01:00
#include <chrono>
#include <iostream>
#include <thread>
#include "ftxui/dom/elements.hpp"
2020-03-27 01:42:46 +01:00
#include "ftxui/screen/screen.hpp"
2019-01-12 18:24:46 +01:00
#include "ftxui/screen/string.hpp"
2019-01-06 22:28:15 +01:00
2020-03-27 01:42:46 +01:00
int main(int argc, const char* argv[]) {
2019-01-06 22:28:15 +01:00
using namespace ftxui;
using namespace std::chrono_literals;
std::string reset_position;
2020-03-27 01:42:46 +01:00
for (int index = 0; index < 200; ++index) {
2019-01-06 22:28:15 +01:00
std::vector<Element> entries;
2020-03-27 01:42:46 +01:00
for (int i = 0; i < 22; ++i) {
2019-01-06 22:28:15 +01:00
if (i != 0)
2020-03-27 01:42:46 +01:00
entries.push_back(separator());
2020-03-22 22:32:44 +01:00
// clang-format off
2019-01-06 22:28:15 +01:00
entries.push_back(
hbox(
text(to_wstring(i)) | size(WIDTH, EQUAL, 2),
separator(),
2019-01-06 22:28:15 +01:00
spinner(i, index) | bold
)
);
2020-03-22 22:32:44 +01:00
// clang-format on
2019-01-06 22:28:15 +01:00
}
2019-01-19 22:06:05 +01:00
auto document = hbox(vbox(std::move(entries)) | border, filler());
2019-01-26 21:52:55 +01:00
auto screen = Screen::Create(Dimension::Full(), Dimension::Fit(document));
2019-01-06 22:28:15 +01: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;
}