FTXUI/cmake
Arthur Sonzogni b3ba747d82
Feature: Slider in any directions. (#468)
Add the `SliderOption` option supporting:
```cpp
{
  Ref<T> value;
  ConstRef<T> min = T(0);
  ConstRef<T> max = T(100);
  ConstRef<T> increment = (max() - min()) / 20;
  GaugeDirection direction = GaugeDirection::Right;
  Color color_active = Color::White;
  Color color_inactive = Color::GrayDark;
};
```

In particular, this supports multiple direction. This resolves:
https://github.com/ArthurSonzogni/FTXUI/issues/467

This one do not support adding a label. The old constructors can still
be used to have a label.
2022-08-30 18:52:33 +02:00
..
ftxui_benchmark.cmake Add code coverage support. (#378) 2022-04-17 15:47:20 +02:00
ftxui_coverage.cmake Add code coverage support. (#378) 2022-04-17 15:47:20 +02:00
ftxui_export.cmake Cleanup. (#132) 2021-06-26 15:14:27 +02:00
ftxui_fuzzer.cmake Add general fuzzer. (#159) 2021-07-17 15:53:25 +02:00
ftxui_install.cmake Rename library for vcpkg. (#140) 2021-07-06 02:10:35 +02:00
ftxui_package.cmake Merge workflows. (#234) 2021-10-17 20:10:07 +02:00
ftxui_set_options.cmake Feature: Slider in any directions. (#468) 2022-08-30 18:52:33 +02:00
ftxui_test.cmake Feature: Slider in any directions. (#468) 2022-08-30 18:52:33 +02:00
iwyu.cmake Typo in iwyu.cmake (#447) 2022-08-07 12:15:52 +02:00