Treat `Event::PointerGone` as `PointerEvent::Released` (#4419)

* Closes #4406
* Closes #4418 

If `Event::PointerGone` occurs, it is treated as
`PointerEvent::Released`.
This commit is contained in:
rustbasic 2024-05-11 20:17:58 +09:00 committed by GitHub
parent 11fa9cc7ee
commit 66d2b3ffe4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
4 changed files with 12 additions and 8 deletions

View File

@ -1875,8 +1875,8 @@ impl Context {
drag_started: _,
dragged,
drag_stopped: _,
contains_pointer,
hovered,
contains_pointer,
} = interact_widgets;
if true {

View File

@ -800,6 +800,10 @@ impl PointerState {
}
Event::PointerGone => {
self.latest_pos = None;
self.pointer_events.push(PointerEvent::Released {
click: None,
button: PointerButton::Primary,
});
// NOTE: we do NOT clear `self.interact_pos` here. It will be cleared next frame.
}
Event::MouseMoved(delta) => *self.motion.get_or_insert(Vec2::ZERO) += *delta,

View File

@ -283,7 +283,7 @@ pub(crate) fn interact(
drag_started,
dragged,
drag_stopped,
contains_pointer,
hovered,
contains_pointer,
}
}

View File

@ -466,23 +466,23 @@ fn response_summary(response: &egui::Response, show_hovers: bool) -> String {
// These are in inverse logical/chonological order, because we show them in the ui that way:
if response.triple_clicked_by(button) {
writeln!(new_info, "Triple-clicked{button_suffix}").ok();
writeln!(new_info, "Triple_clicked_by{button_suffix}").ok();
}
if response.double_clicked_by(button) {
writeln!(new_info, "Double-clicked{button_suffix}").ok();
writeln!(new_info, "Double_clicked_by{button_suffix}").ok();
}
if response.clicked_by(button) {
writeln!(new_info, "Clicked{button_suffix}").ok();
writeln!(new_info, "Clicked_by{button_suffix}").ok();
}
if response.drag_stopped_by(button) {
writeln!(new_info, "Drag stopped{button_suffix}").ok();
writeln!(new_info, "Drag_stopped_by{button_suffix}").ok();
}
if response.dragged_by(button) {
writeln!(new_info, "Dragged{button_suffix}").ok();
writeln!(new_info, "Dragged_by{button_suffix}").ok();
}
if response.drag_started_by(button) {
writeln!(new_info, "Drag started{button_suffix}").ok();
writeln!(new_info, "Drag_started_by{button_suffix}").ok();
}
}