Searched refs:touchPoint (Results 1 – 5 of 5) sorted by relevance
844 WebTouchPoint touchPoint; in addTouchPoint() local845 touchPoint.state = WebTouchPoint::StatePressed; in addTouchPoint()846 touchPoint.position = WebPoint(arguments[0].toInt32(), arguments[1].toInt32()); in addTouchPoint()847 touchPoint.screenPosition = touchPoint.position; in addTouchPoint()848 touchPoint.id = touchPoints.size(); in addTouchPoint()849 touchPoints.append(touchPoint); in addTouchPoint()865 WebTouchPoint* touchPoint = &touchPoints[index]; in releaseTouchPoint() local866 touchPoint->state = WebTouchPoint::StateReleased; in releaseTouchPoint()898 WebTouchPoint* touchPoint = &touchPoints[index]; in updateTouchPoint() local899 touchPoint->state = WebTouchPoint::StateMoved; in updateTouchPoint()[all …]
504 QTouchEvent::TouchPoint touchPoint; in eventFilter() local505 touchPoint.setState(Qt::TouchPointMoved); in eventFilter()508 touchPoint.setState(Qt::TouchPointPressed); in eventFilter()510 touchPoint.setState(Qt::TouchPointReleased); in eventFilter()512 touchPoint.setId(0); in eventFilter()513 touchPoint.setScreenPos(ev->globalPos()); in eventFilter()514 touchPoint.setPos(ev->pos()); in eventFilter()515 touchPoint.setPressure(1); in eventFilter()519 m_touchPoints[0] = touchPoint; in eventFilter()521 m_touchPoints[1] = touchPoint; in eventFilter()[all …]
247 evt.data.multiTouch.touchPoint = new TouchPoint[pointerCount]; in handleTouchEvent()254 evt.data.multiTouch.touchPoint[x].id = touch->identifier(); in handleTouchEvent()255 evt.data.multiTouch.touchPoint[x].x = localPos.x(); in handleTouchEvent()256 evt.data.multiTouch.touchPoint[x].y = localPos.y(); in handleTouchEvent()257 evt.data.multiTouch.touchPoint[x].pressure = 1; // TODO in handleTouchEvent()258 evt.data.multiTouch.touchPoint[x].size = 1; // TODO in handleTouchEvent()265 delete[] evt.data.multiTouch.touchPoint; in handleTouchEvent()
1007 TouchPoint* touchPoint; member
1573 IntPoint QWebPagePrivate::TouchAdjuster::findCandidatePointForTouch(const IntPoint& touchPoint, Doc… in findCandidatePointForTouch() argument1578 int x = touchPoint.x(); in findCandidatePointForTouch()1579 int y = touchPoint.y(); in findCandidatePointForTouch()1626 IntPoint newTouchPoint = touchPoint; in findCandidatePointForTouch()