fix tests

This commit is contained in:
Will McGugan
2022-09-26 09:51:33 +01:00
parent 53d8e02d0d
commit 3f0955cbe5
19 changed files with 314 additions and 39 deletions

21
docs/events/click.md Normal file
View File

@@ -0,0 +1,21 @@
# Click
The `Click` event is sent to a widget when the user clicks a mouse button.
- [x] Bubbles
- [ ] Verbose
## Attributes
| attribute | type | purpose |
| ---------- | ---- | ----------------------------------------- |
| `x` | int | Mouse x coordinate, relative to Widget |
| `y` | int | Mouse y coordinate, relative to Widget |
| `delta_x` | int | Change in x since last mouse event |
| `delta_y` | int | Change in y since last mouse event |
| `button` | int | Index of mouse button |
| `shift` | bool | Shift key pressed if True |
| `meta` | bool | Meta key pressed if True |
| `ctrl` | bool | Ctrl key pressed if True |
| `screen_x` | int | Mouse x coordinate relative to the screen |
| `screen_y` | int | Mouse y coordinate relative to the screen |