Home
last modified time | relevance | path

Searched refs:DragEventAction (Results 1 – 18 of 18) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/adapter/ohos/entrance/
H A Dace_view_ohos.cpp319 DragEventAction action; in ProcessDragEvent()
326 action = DragEventAction::DRAG_EVENT_MOVE; in ProcessDragEvent()
331 action = DragEventAction::DRAG_EVENT_END; in ProcessDragEvent()
336 action = DragEventAction::DRAG_EVENT_START; in ProcessDragEvent()
341 action = DragEventAction::DRAG_EVENT_OUT; in ProcessDragEvent()
350 void AceViewOhos::ProcessDragEvent(int32_t x, int32_t y, const DragEventAction& action, in ProcessDragEvent()
H A Dace_ability.cpp774 DragEventAction action; in OnDrag()
777 action = DragEventAction::DRAG_EVENT_END; in OnDrag()
780 action = DragEventAction::DRAG_EVENT_OUT; in OnDrag()
783 action = DragEventAction::DRAG_EVENT_MOVE; in OnDrag()
787 action = DragEventAction::DRAG_EVENT_START; in OnDrag()
H A Dace_view_ohos.h95 void ProcessDragEvent(int32_t x, int32_t y, const DragEventAction& action,
H A Ddialog_container.cpp194 const PointerEvent& pointerEvent, const DragEventAction& action, in InitializeDragEventCallback()
H A Dui_content_impl.cpp619 DragEventAction action; in OnDrag()
622 action = DragEventAction::DRAG_EVENT_END; in OnDrag()
625 action = DragEventAction::DRAG_EVENT_OUT; in OnDrag()
628 action = DragEventAction::DRAG_EVENT_MOVE; in OnDrag()
632 action = DragEventAction::DRAG_EVENT_START; in OnDrag()
H A Dace_container.cpp1042 …const PointerEvent& pointerEvent, const DragEventAction& action, const RefPtr<NG::FrameNode>& node… in InitializeCallback()
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/pipeline/
H A Dpipeline_context_test_ng.cpp762 …context_->OnDragEvent({ DEFAULT_INT1, DEFAULT_INT1 }, DragEventAction::DRAG_EVENT_START_FOR_CONTRO…
771 context_->OnDragEvent({ DEFAULT_INT1, DEFAULT_INT1 }, DragEventAction::DRAG_EVENT_OUT);
780 context_->OnDragEvent({ DEFAULT_INT10, DEFAULT_INT10 }, DragEventAction::DRAG_EVENT_START);
789 context_->OnDragEvent({ DEFAULT_INT10, DEFAULT_INT10 }, DragEventAction::DRAG_EVENT_END);
798 context_->OnDragEvent({ DEFAULT_INT10, DEFAULT_INT10 }, DragEventAction::DRAG_EVENT_MOVE);
801 context_->OnDragEvent({ DEFAULT_INT10, DEFAULT_INT10 }, DragEventAction::DRAG_EVENT_MOVE);
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/gestures/
H A Dgesture_info.h103 enum class DragEventAction { enum
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/common/
H A Dcontainer.h67 using DragEventCallBack = std::function<void(const PointerEvent&, const DragEventAction&,
/ohos5.0/foundation/arkui/ace_engine/test/unittest/core/manager/
H A Ddrag_drop_func_wrapper_test_ng_coverage.cpp425 context->OnDragEvent({globalX, globalY }, DragEventAction::DRAG_EVENT_START_FOR_CONTROLLER); in __anon8b7ebbcb0402()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline_ng/
H A Dpipeline_context.cpp3863 void PipelineContext::OnDragEvent(const PointerEvent& pointerEvent, DragEventAction action, in OnDragEvent()
3876 if (action == DragEventAction::DRAG_EVENT_START_FOR_CONTROLLER) { in OnDragEvent()
3881 if (action == DragEventAction::DRAG_EVENT_OUT) { in OnDragEvent()
3889 if (action == DragEventAction::DRAG_EVENT_START) { in OnDragEvent()
3896 if (action == DragEventAction::DRAG_EVENT_END) { in OnDragEvent()
3900 if (action == DragEventAction::DRAG_EVENT_MOVE) { in OnDragEvent()
H A Dpipeline_context.h193 void OnDragEvent(const PointerEvent& pointerEvent, DragEventAction action,
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/manager/drag_drop/
H A Ddrag_drop_func_wrapper.cpp277 { dragAction->x, dragAction->y }, DragEventAction::DRAG_EVENT_START_FOR_CONTROLLER); in StartDragAction()
/ohos5.0/foundation/arkui/ace_engine/test/mock/core/pipeline/
H A Dmock_pipeline_context.cpp197 const PointerEvent& pointerEvent, DragEventAction action, const RefPtr<NG::FrameNode>& node) in OnDragEvent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/pipeline/
H A Dpipeline_context.h666 void OnDragEvent(const PointerEvent& pointerEvent, DragEventAction action,
H A Dpipeline_context.cpp3056 void PipelineContext::OnDragEvent(const PointerEvent& pointerEvent, DragEventAction action, in OnDragEvent()
3096 if (action == DragEventAction::DRAG_EVENT_START) { in OnDragEvent()
3102 if (action != DragEventAction::DRAG_EVENT_END) { in OnDragEvent()
H A Dpipeline_base.h222 virtual void OnDragEvent(const PointerEvent& pointerEvent, DragEventAction action,
/ohos5.0/foundation/arkui/ace_engine/interfaces/napi/kits/drag_controller/
H A Djs_drag_controller.cpp663 …context->OnDragEvent({ ctx->globalX, ctx->globalY }, DragEventAction::DRAG_EVENT_START_FOR_CONTROL… in HandleOnDragStart()