FTXUI/include/ftxui/component
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
..
animation.hpp Animation (#355) 2022-03-13 18:51:46 +01:00
captured_mouse.hpp Remove explicit default destructors (#157) 2021-07-17 12:02:08 +02:00
component_base.hpp Animation (#355) 2022-03-13 18:51:46 +01:00
component_options.hpp Feature: Slider in any directions. (#468) 2022-08-30 18:52:33 +02:00
component.hpp Feature: Slider in any directions. (#468) 2022-08-30 18:52:33 +02:00
event.hpp Add clang-tidy. (#368) 2022-03-31 02:17:43 +02:00
mouse.hpp Use IWYU. 2021-05-01 23:19:07 +02:00
receiver.hpp Execute IWYU and format. 2021-06-21 23:10:51 +02:00
screen_interactive.hpp Remove NXXM. Execute IWYU. (#397) 2022-05-08 08:44:38 +02:00
task.hpp Animation (#355) 2022-03-13 18:51:46 +01:00