FTXUI/src/ftxui/screen
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
..
box.cpp Fix focus vs flexbox interaction. (#405) 2022-05-22 21:41:29 +02:00
color_info.cpp Add clang-tidy. (#368) 2022-03-31 02:17:43 +02:00
color_test.cpp Run IWYU (#450) 2022-08-07 14:44:33 +02:00
color.cpp Fix clang-tidy. (#469) 2022-08-28 21:30:01 +02:00
screen.cpp Feature: Slider in any directions. (#468) 2022-08-30 18:52:33 +02:00
string_test.cpp Run IWYU (#450) 2022-08-07 14:44:33 +02:00
string.cpp Add clang-tidy. (#368) 2022-03-31 02:17:43 +02:00
terminal.cpp Add support for emscripten screen resize. (#463) 2022-08-21 23:04:32 +02:00
util.hpp Fix Clamp crash when entries_ size is zero (#306) 2022-01-13 01:46:09 +01:00
wcwidth.cpp Prefer std::string over std::wstring. (#179) 2021-08-08 23:25:20 +02:00