FTXUI/include/ftxui
Clément Roblot 64436fc52b
Checkbox button debounce (#774)
This fixes: https://github.com/ArthurSonzogni/FTXUI/issues/773

Dragging the mouse with the left button pressed now avoids activating multiple
checkboxes.

Add support for detecting mouse press transition. Added:
```cpp
// The previous mouse event.
Mouse Mouse::previous;

// Return whether the mouse transitionned from:
// released to pressed => IsPressed()
// pressed to pressed => IsHeld()
// pressed to released => IsReleased()
bool Mouse::IsPressed(Button button) const;
bool Mouse::IsHeld(Button button) const;
bool Mouse::IsReleased(Button button) const;
```
A couple of components are now activated when the mouse is pressed,
as opposed to released.

Co-authored-by: ArthurSonzogni <sonzogniarthur@gmail.com>
2024-12-26 18:45:43 +01:00
..
component Checkbox button debounce (#774) 2024-12-26 18:45:43 +01:00
dom Feature: hscroll_indicator (#753) 2024-12-26 18:45:41 +01:00
screen Move copyright to the top of files. 2023-08-19 13:57:01 +02:00
util Move copyright to the top of files. 2023-08-19 13:57:01 +02:00