#include // for array #include // for sin #include // for ComponentBase #include // for SliderOption #include // for Direction, Direction::Up #include // for size, GREATER_THAN, 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() { 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 (auto& value : values) { // In C++17: SliderOption option; option.value = &value; option.max = 100; option.increment = 5; option.direction = Direction::Up; layout_horizontal->Add(Slider(option)); /* In C++20: layout_horizontal->Add(Slider({ .value = &values[i], .max = 100, .increment = 5, .direction = Direction::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.