mirror of
https://github.com/Textualize/textual.git
synced 2025-10-17 02:38:12 +03:00
Add verbose tag to events docs
This commit is contained in:
@@ -3,6 +3,7 @@
|
||||
The `Blur` event is sent to a widget when it loses focus.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `DescendantBlur` event is sent to a widget when one of its children loses focus.
|
||||
|
||||
- [x] Bubbles
|
||||
- [x] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `DescendantFocus` event is sent to a widget when one of its descendants receives focus.
|
||||
|
||||
- [x] Bubbles
|
||||
- [x] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `Enter` event is sent to a widget when the mouse pointer first moves over a widget.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [x] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `Focus` event is sent to a widget when it receives input focus.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `Hide` event is sent to a widget when it is hidden from view.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `Key` event is sent to a widget when the user presses a key on the keyboard.
|
||||
|
||||
- [x] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `Leave` event is sent to a widget when the mouse pointer moves off a widget.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [x] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@ The `Load` event is sent to the app prior to switching the terminal to applicati
|
||||
The load event is typically used to do any setup actions required by the app that don't change the display.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -5,6 +5,7 @@ The `Mount` event is sent to a widget and Application when it is first mounted.
|
||||
The mount event is typically used to set the initial state of a widget or to add new children widgets.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [x] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `MouseCapture` event is sent to a widget when it is capturing mouse events from outside of its borders on the screen.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `Click` event is sent to a widget when the user clicks a mouse button.
|
||||
|
||||
- [x] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `MouseDown` event is sent to a widget when a mouse button is pressed.
|
||||
|
||||
- [x] Bubbles
|
||||
- [x] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `MouseMove` event is sent to a widget when the mouse pointer is moved over a widget.
|
||||
|
||||
- [x] Bubbles
|
||||
- [x] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
@@ -18,4 +19,3 @@ The `MouseMove` event is sent to a widget when the mouse pointer is moved over a
|
||||
| `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 |
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `MouseRelease` event is sent to a widget when it is no longer receiving mouse events outside of its borders.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,10 +3,11 @@
|
||||
The `MouseScrollDown` event is sent to a widget when the scroll wheel (or trackpad equivalent) is moved _down_.
|
||||
|
||||
- [x] Bubbles
|
||||
- [x] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
| attribute | type | purpose |
|
||||
| --------- | ---- | -------------------------------------- |
|
||||
|-----------|------|----------------------------------------|
|
||||
| `x` | int | Mouse x coordinate, relative to Widget |
|
||||
| `y` | int | Mouse y coordinate, relative to Widget |
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `MouseScrollUp` event is sent to a widget when the scroll wheel (or trackpad equivalent) is moved _up_.
|
||||
|
||||
- [x] Bubbles
|
||||
- [x] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `MouseUp` event is sent to a widget when the user releases a mouse button.
|
||||
|
||||
- [x] Bubbles
|
||||
- [x] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
@@ -18,4 +19,3 @@ The `MouseUp` event is sent to a widget when the user releases a mouse button.
|
||||
| `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 |
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `Paste` event is sent to a widget when the user pastes text.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `Resize` event is sent to a widget when its size changes and when it is first made visible.
|
||||
|
||||
- [x] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `ScreenResume` event is sent to a **Screen** when it becomes current.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `ScreenSuspend` event is sent to a **Screen** when it is replaced by another screen.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
@@ -3,6 +3,7 @@
|
||||
The `Show` event is sent to a widget when it becomes visible.
|
||||
|
||||
- [ ] Bubbles
|
||||
- [ ] Verbose
|
||||
|
||||
## Attributes
|
||||
|
||||
|
||||
Reference in New Issue
Block a user