aboutsummaryrefslogtreecommitdiffstats
path: root/src/quick/handlers/qquicksinglepointhandler.cpp
diff options
context:
space:
mode:
authorShawn Rutledge <shawn.rutledge@qt.io>2017-03-24 07:44:14 +0100
committerShawn Rutledge <shawn.rutledge@qt.io>2018-06-28 09:44:50 +0000
commitca9e2a0d7488cbbb94d8343c43eb49c6ee5f6519 (patch)
tree79a0ba3e2a54af085f9efc187f36bfc8f100a4cd /src/quick/handlers/qquicksinglepointhandler.cpp
parent3cda7df8ac8fc6f9a5562e89a4b047449dc3b2bc (diff)
Add HoverHandler to detect a hovering mouse pointer
Detect whether the handler's parent contains the mouse, while the point property tracks the event point (position etc.) Task-number: QTBUG-68072 Change-Id: Ica99332596eab3e344852a11f1ceb7aaf6348c86 Reviewed-by: Qt CI Bot <qt_ci_bot@qt-project.org> Reviewed-by: Jan Arve Sæther <jan-arve.saether@qt.io>
Diffstat (limited to 'src/quick/handlers/qquicksinglepointhandler.cpp')
-rw-r--r--src/quick/handlers/qquicksinglepointhandler.cpp7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/quick/handlers/qquicksinglepointhandler.cpp b/src/quick/handlers/qquicksinglepointhandler.cpp
index 04b4214bab..84f8349a53 100644
--- a/src/quick/handlers/qquicksinglepointhandler.cpp
+++ b/src/quick/handlers/qquicksinglepointhandler.cpp
@@ -120,7 +120,7 @@ bool QQuickSinglePointHandler::wantsPointerEvent(QQuickPointerEvent *event)
}
}
if (chosen && candidatePointCount == 1) {
- m_pointInfo.m_id = chosen->pointId();
+ setPointId(chosen->pointId());
chosen->setAccepted();
}
}
@@ -185,6 +185,11 @@ void QQuickSinglePointHandler::moveTarget(QPointF pos, QQuickEventPoint *point)
m_pointInfo.m_position = target()->mapFromScene(m_pointInfo.m_scenePosition);
}
+void QQuickSinglePointHandler::setPointId(int id)
+{
+ m_pointInfo.m_id = id;
+}
+
/*!
\qmlproperty int QtQuick::SinglePointHandler::acceptedButtons