Searched refs:displayXY (Results 1 - 5 of 5) sorted by relevance
/foundation/multimodalinput/input/service/window_manager/src/ |
H A D | knuckle_dynamic_drawing_manager.cpp | 214 auto displayXY = TOUCH_DRAWING_MGR->CalcDrawCoordinate(displayInfo_, pointerItem); in ProcessUpAndCancelEvent() local 215 glowTraceSystem_->ResetDivergentPoints(displayXY.first, displayXY.second); in ProcessUpAndCancelEvent() 241 auto displayXY = TOUCH_DRAWING_MGR->CalcDrawCoordinate(displayInfo_, pointerItem); in ProcessDownEvent() local 242 float downToPrevDownDistance = static_cast<float>(sqrt(pow(lastDownX_ - displayXY.first, POW_SQUARE) + in ProcessDownEvent() 243 pow(lastDownY_ - displayXY.second, POW_SQUARE))); in ProcessDownEvent() 251 lastDownX_ = displayXY.first; in ProcessDownEvent() 252 lastDownY_ = displayXY.second; in ProcessDownEvent() 253 traceControlPoints_[pointCounter_].Set(displayXY.first, displayXY in ProcessDownEvent() 269 auto displayXY = TOUCH_DRAWING_MGR->CalcDrawCoordinate(displayInfo_, pointerItem); global() local [all...] |
H A D | touch_drawing_manager.cpp | 96 auto displayXY = CalcDrawCoordinate(displayInfo_, pointerItem); in RecordLabelsInfo() local 98 currentPt_.SetX(displayXY.first); in RecordLabelsInfo() 99 currentPt_.SetY(displayXY.second); in RecordLabelsInfo() 103 firstPt_.SetX(displayXY.first); in RecordLabelsInfo() 104 firstPt_.SetY(displayXY.second); in RecordLabelsInfo() 484 auto displayXY = CalcDrawCoordinate(displayInfo_, pointerItem); in DrawBubble() local 485 Rosen::Drawing::Point centerPt(displayXY.first, displayXY.second); in DrawBubble() 506 displayXY.first, displayXY in DrawBubble() 529 auto displayXY = CalcDrawCoordinate(displayInfo_, pointerItem); DrawPointerPositionHandler() local 598 auto displayXY = CalcDrawCoordinate(displayInfo_, item); DrawTracker() local 881 auto displayXY = WIN_MGR->TransformDisplayXY(displayInfo, physicalX, physicalY); CalcDrawCoordinate() local [all...] |
H A D | knuckle_drawing_manager.cpp | 221 auto displayXY = TOUCH_DRAWING_MGR->CalcDrawCoordinate(displayInfo_, pointerItem); in IsSingleKnuckleDoubleClick() local 222 float downToPrevDownDistance = static_cast<float>(sqrt(pow(lastDownPointer_.x - displayXY.first, POW_SQUARE) + in IsSingleKnuckleDoubleClick() 223 pow(lastDownPointer_.y - displayXY.second, POW_SQUARE))); in IsSingleKnuckleDoubleClick() 228 lastDownPointer_.x = displayXY.first; in IsSingleKnuckleDoubleClick() 229 lastDownPointer_.y = displayXY.second; in IsSingleKnuckleDoubleClick() 528 auto displayXY = TOUCH_DRAWING_MGR->CalcDrawCoordinate(displayInfo_, pointerItem); in GetPointerPos() local 529 pointerInfo.x = displayXY.first; in GetPointerPos() 530 pointerInfo.y = displayXY.second; in GetPointerPos()
|
H A D | input_windows_manager.cpp | 2937 auto displayXY = TransformDisplayXY(displayInfo, physicalX, physicalY); in UpdateDisplayInfo() local 2938 physicalX = displayXY.first; in UpdateDisplayInfo() 2939 physicalY = displayXY.second; in UpdateDisplayInfo() 4117 Vector3f displayXY = transform * logicXY; in UpdateDisplayInfo() local 4118 return {round(displayXY[0]), round(displayXY[1])}; in UpdateDisplayInfo()
|
/foundation/multimodalinput/input/service/key_command/src/ |
H A D | key_command_handler.cpp | 689 auto displayXY = WIN_MGR->TransformDisplayXY(displayInfo, physicalX, physicalY); in CalcDrawCoordinate() local 690 physicalX = displayXY.first; in CalcDrawCoordinate() 691 physicalY = displayXY.second; in CalcDrawCoordinate() 708 auto displayXY = CalcDrawCoordinate(*displayInfo, item); in HandleKnuckleGestureTouchDown() local 709 gestureLastX_ = displayXY.first; in HandleKnuckleGestureTouchDown() 710 gestureLastY_ = displayXY.second; in HandleKnuckleGestureTouchDown() 725 auto displayXY = CalcDrawCoordinate(*displayInfo, item); in HandleKnuckleGestureTouchMove() local 726 float eventX = displayXY.first; in HandleKnuckleGestureTouchMove() 727 float eventY = displayXY.second; in HandleKnuckleGestureTouchMove()
|
Completed in 13 milliseconds