#include // for array #include // for sin #include // for ComponentBase #include // for SliderOption #include // for size, GREATER_THAN, GaugeDirection, GaugeDirection::Up, HEIGHT #include // for ConstRef, Ref #include // for shared_ptr, __shared_ptr_access #include "ftxui/component/captured_mouse.hpp" // for ftxui #include "ftxui/component/component.hpp" // for Horizontal, Slider, operator|= #include "ftxui/component/screen_interactive.hpp" // for ScreenInteractive using namespace ftxui; int main(int argc, const char* argv[]) { auto screen = ScreenInteractive::TerminalOutput(); std::array values; for (int i = 0; i < values.size(); ++i) { values[i] = 50 + 20 * std::sin(i * 0.3); } auto layout_horizontal = Container::Horizontal({}); for (int i = 0; i < values.size(); ++i) { // In C++17: SliderOption option; option.value = &values[i]; option.max = 100; option.increment = 5; option.direction = GaugeDirection::Up; layout_horizontal->Add(Slider(option)); /* In C++20: layout_horizontal->Add(Slider({ .value = &values[i], .max = 100, .increment = 5, .direction = GaugeDirection::Up, })); */ } layout_horizontal |= size(HEIGHT, GREATER_THAN, 20); screen.Loop(layout_horizontal); } // 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.