Propagate mouse events to ListWidget children (#694)

This commit is contained in:
Anton P 2024-12-08 12:48:57 +02:00 committed by GitHub
parent 12c6ade461
commit 8614a7cbcc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 1 deletions

View File

@ -1349,7 +1349,8 @@ class ListWidget : WidgetGroup, OnScrollHandler, OnAdapterChangeHandler {
itemrc.right += rc.left - scrollOffset.x;
itemrc.top += rc.top - scrollOffset.y;
itemrc.bottom += rc.top - scrollOffset.y;
if (itemrc.isPointInside(Point(event.x, event.y))) {
auto point = Point(event.x, event.y);
if (itemrc.isPointInside(point)) {
if (_adapter && _adapter.wantMouseEvents) {
auto itemWidget = _adapter.itemWidget(i);
if (itemWidget) {
@ -1358,6 +1359,12 @@ class ListWidget : WidgetGroup, OnScrollHandler, OnAdapterChangeHandler {
if (event.action == MouseAction.Move && event.noModifiers && itemWidget.hasTooltip) {
itemWidget.scheduleTooltip(200);
}
foreach (j; 0 .. itemWidget.childCount) {
auto child = itemWidget.child(j);
if (child.isPointInside(point)) {
child.onMouseEvent(event);
}
}
itemWidget.onMouseEvent(event);
itemWidget.parent = oldParent;
}