FTXUI/include/ftxui
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
..
component Feature: Slider in any directions. (#468) 2022-08-30 18:52:33 +02:00
dom windows.h defines DrawText and shadows the function Canvas.DrawText, fix based on the solution #70 (#394) 2022-05-04 23:39:03 +02:00
screen Feature: Slider in any directions. (#468) 2022-08-30 18:52:33 +02:00
util Add ref for sliders. (#457) 2022-08-13 16:26:53 +02:00