Lines Matching refs:touchPoint

2881         QTouchEvent::TouchPoint touchPoint = e->points.at(i);  in processTouchEvent()  local
2885 touchPoint.d = touchPoint.d->detach(); in processTouchEvent()
2890 ActiveTouchPointsKey touchInfoKey(e->device, touchPoint.id()); in processTouchEvent()
2892 switch (touchPoint.state()) { in processTouchEvent()
2904 window = QGuiApplication::topLevelAt(touchPoint.screenPos().toPoint()); in processTouchEvent()
2911 touchPoint.d->startScreenPos = touchPoint.screenPos(); in processTouchEvent()
2912 touchPoint.d->lastScreenPos = touchPoint.screenPos(); in processTouchEvent()
2913 touchPoint.d->startNormalizedPos = touchPoint.normalizedPos(); in processTouchEvent()
2914 touchPoint.d->lastNormalizedPos = touchPoint.normalizedPos(); in processTouchEvent()
2915 if (touchPoint.pressure() < qreal(0.)) in processTouchEvent()
2916 touchPoint.d->pressure = qreal(1.); in processTouchEvent()
2918 touchInfo.touchPoint = touchPoint; in processTouchEvent()
2926 previousTouchPoint = touchInfo.touchPoint; in processTouchEvent()
2927 touchPoint.d->startScreenPos = previousTouchPoint.startScreenPos(); in processTouchEvent()
2928 touchPoint.d->lastScreenPos = previousTouchPoint.screenPos(); in processTouchEvent()
2929 touchPoint.d->startPos = previousTouchPoint.startPos(); in processTouchEvent()
2930 touchPoint.d->lastPos = previousTouchPoint.pos(); in processTouchEvent()
2931 touchPoint.d->startNormalizedPos = previousTouchPoint.startNormalizedPos(); in processTouchEvent()
2932 touchPoint.d->lastNormalizedPos = previousTouchPoint.normalizedPos(); in processTouchEvent()
2933 if (touchPoint.pressure() < qreal(0.)) in processTouchEvent()
2934 touchPoint.d->pressure = qreal(0.); in processTouchEvent()
2943 previousTouchPoint = touchInfo.touchPoint; in processTouchEvent()
2944 touchPoint.d->startScreenPos = previousTouchPoint.startScreenPos(); in processTouchEvent()
2945 touchPoint.d->lastScreenPos = previousTouchPoint.screenPos(); in processTouchEvent()
2946 touchPoint.d->startPos = previousTouchPoint.startPos(); in processTouchEvent()
2947 touchPoint.d->lastPos = previousTouchPoint.pos(); in processTouchEvent()
2948 touchPoint.d->startNormalizedPos = previousTouchPoint.startNormalizedPos(); in processTouchEvent()
2949 touchPoint.d->lastNormalizedPos = previousTouchPoint.normalizedPos(); in processTouchEvent()
2950 if (touchPoint.pressure() < qreal(0.)) in processTouchEvent()
2951 touchPoint.d->pressure = qreal(1.); in processTouchEvent()
2955 if (touchPoint.state() == Qt::TouchPointStationary) { in processTouchEvent()
2956 if (touchInfo.touchPoint.velocity() != touchPoint.velocity()) { in processTouchEvent()
2957 touchInfo.touchPoint.setVelocity(touchPoint.velocity()); in processTouchEvent()
2958 touchPoint.d->stationaryWithModifiedProperty = true; in processTouchEvent()
2961 if (!qFuzzyCompare(touchInfo.touchPoint.pressure(), touchPoint.pressure())) { in processTouchEvent()
2962 touchInfo.touchPoint.setPressure(touchPoint.pressure()); in processTouchEvent()
2963 touchPoint.d->stationaryWithModifiedProperty = true; in processTouchEvent()
2967 touchInfo.touchPoint = touchPoint; in processTouchEvent()
2978 touchPoint.d->scenePos = touchPoint.screenPos(); in processTouchEvent()
2979 touchPoint.d->startScenePos = touchPoint.startScreenPos(); in processTouchEvent()
2980 touchPoint.d->lastScenePos = touchPoint.lastScreenPos(); in processTouchEvent()
2983 maskAndPoints.first |= touchPoint.state(); in processTouchEvent()
2984 maskAndPoints.second.append(touchPoint); in processTouchEvent()
3040 QTouchEvent::TouchPoint &touchPoint = touchEvent._touchPoints[i]; in processTouchEvent() local
3043 const QPointF screenPos = touchPoint.screenPos(); in processTouchEvent()
3046 touchPoint.d->pos = w->mapFromGlobal(screenPos.toPoint()) + delta; in processTouchEvent()
3047 if (touchPoint.state() == Qt::TouchPointPressed) { in processTouchEvent()
3051touchPoint.d->startPos = w->mapFromGlobal(touchPoint.startScreenPos().toPoint()) + delta; in processTouchEvent()
3052touchPoint.d->lastPos = w->mapFromGlobal(touchPoint.lastScreenPos().toPoint()) + delta; in processTouchEvent()
3066 for (const auto &touchPoint : touchPoints) { in processTouchEvent() local
3067 if (touchPoint.id() == m_fakeMouseSourcePointId) { in processTouchEvent()
3068 switch (touchPoint.state()) { in processTouchEvent()
3082 if (touchPoint.state() != Qt::TouchPointReleased) { in processTouchEvent()
3084touchPoint.pos(), touchPoint.screenPos(), w)); in processTouchEvent()
3089 touchPoint.pos(), in processTouchEvent()
3090 touchPoint.screenPos(), in processTouchEvent()
3112 QTouchEvent::TouchPoint touchPoint = e->points.at(i); in processTouchEvent() local
3113 if (touchPoint.state() == Qt::TouchPointReleased) in processTouchEvent()
3114 d->activeTouchPoints.remove(ActiveTouchPointsKey(e->device, touchPoint.id())); in processTouchEvent()