Home
last modified time | relevance | path

Searched refs:targetDragDropNode (Results 1 – 6 of 6) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/box/
H A Drender_box.cpp364 SetInsertIndex(targetDragDropNode, newInfo); in PanOnActionUpdate()
365 if (targetDragDropNode != initialDragDropNode_) { in PanOnActionUpdate()
371 if (preDragDropNode == targetDragDropNode) { in PanOnActionUpdate()
372 if (targetDragDropNode && targetDragDropNode->GetOnDragMove()) { in PanOnActionUpdate()
380 if (targetDragDropNode && targetDragDropNode->GetOnDragEnter()) { in PanOnActionUpdate()
383 SetPreDragDropNode(targetDragDropNode); in PanOnActionUpdate()
436 auto targetDragDropNode = GetPreDragDropNode(); in PanOnActionEnd() local
437 if (!targetDragDropNode) { in PanOnActionEnd()
440 if (targetDragDropNode->GetOnDrop()) { in PanOnActionEnd()
445 SetInsertIndex(targetDragDropNode, newInfo); in PanOnActionEnd()
[all …]
H A Drender_box.h284 void SetInsertIndex(const RefPtr<DragDropEvent>& targetDragDropNode, const GestureEvent& info);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/image/
H A Drender_image.cpp1035 auto targetDragDropNode = FindDragDropNode(pipelineContext, info); in PanOnActionUpdate() local
1037 if (preDragDropNode == targetDragDropNode) { in PanOnActionUpdate()
1038 if (targetDragDropNode && targetDragDropNode->GetOnDragMove()) { in PanOnActionUpdate()
1039 (targetDragDropNode->GetOnDragMove())(event, extraParams->ToString()); in PanOnActionUpdate()
1046 if (targetDragDropNode && targetDragDropNode->GetOnDragEnter()) { in PanOnActionUpdate()
1047 (targetDragDropNode->GetOnDragEnter())(event, extraParams->ToString()); in PanOnActionUpdate()
1049 SetPreDragDropNode(targetDragDropNode); in PanOnActionUpdate()
1100 auto targetDragDropNode = GetPreDragDropNode(); in PanOnActionEnd() local
1101 if (!targetDragDropNode) { in PanOnActionEnd()
1104 if (targetDragDropNode->GetOnDrop()) { in PanOnActionEnd()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/text/
H A Drender_text.cpp1101 auto targetDragDropNode = FindDragDropNode(pipelineContext, info); in PanOnActionUpdate() local
1103 if (preDragDropNode == targetDragDropNode) { in PanOnActionUpdate()
1104 if (targetDragDropNode && targetDragDropNode->GetOnDragMove()) { in PanOnActionUpdate()
1105 (targetDragDropNode->GetOnDragMove())(event, extraParams->ToString()); in PanOnActionUpdate()
1112 if (targetDragDropNode && targetDragDropNode->GetOnDragEnter()) { in PanOnActionUpdate()
1113 (targetDragDropNode->GetOnDragEnter())(event, extraParams->ToString()); in PanOnActionUpdate()
1115 SetPreDragDropNode(targetDragDropNode); in PanOnActionUpdate()
1176 auto targetDragDropNode = GetPreDragDropNode(); in PanOnActionEnd() local
1177 if (!targetDragDropNode) { in PanOnActionEnd()
1180 if (targetDragDropNode->GetOnDrop()) { in PanOnActionEnd()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components/web/
H A Drender_web.cpp1127 auto targetDragDropNode = FindDragDropNode(pipelineContext, info); in PanOnActionUpdate() local
1129 if (preDragDropNode == targetDragDropNode) { in PanOnActionUpdate()
1130 if (targetDragDropNode && targetDragDropNode->GetOnDragMove()) { in PanOnActionUpdate()
1131 (targetDragDropNode->GetOnDragMove())(event, extraParams->ToString()); in PanOnActionUpdate()
1138 if (targetDragDropNode && targetDragDropNode->GetOnDragEnter()) { in PanOnActionUpdate()
1139 (targetDragDropNode->GetOnDragEnter())(event, extraParams->ToString()); in PanOnActionUpdate()
1141 SetPreDragDropNode(targetDragDropNode); in PanOnActionUpdate()
1205 auto targetDragDropNode = GetPreDragDropNode(); in PanOnActionEnd() local
1206 if (!targetDragDropNode) { in PanOnActionEnd()
1209 if (targetDragDropNode->GetOnDrop()) { in PanOnActionEnd()
[all …]
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/
H A Dpipeline_context.cpp2960 auto targetDragDropNode = in ProcessDragEvent() local
2970 if (targetDragDropNode == preTargetDragDropNode) { in ProcessDragEvent()
2971 if (targetDragDropNode && targetDragDropNode->GetOnDragMove()) { in ProcessDragEvent()
2982 if (targetDragDropNode != initDragDropNode) { in ProcessDragEvent()
2996 if (targetDragDropNode && targetDragDropNode->GetOnDragEnter()) { in ProcessDragEvent()
3000 SetPreTargetRenderNode(targetDragDropNode); in ProcessDragEvent()
3007 auto targetDragDropNode = in ProcessDragEventEnd() local
3025 if (targetDragDropNode && targetDragDropNode->GetOnDrop()) { in ProcessDragEventEnd()
3032 (targetDragDropNode->GetOnDrop())(event, extraParams->ToString()); in ProcessDragEventEnd()
3038 if (targetDragDropNode != initDragDropNode) { in ProcessDragEventEnd()
[all …]