Home
last modified time | relevance | path

Searched refs:ViewOnTouchListener (Results 1 – 4 of 4) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Devent_listener.cpp62 void ViewOnTouchListener::SetBindTouchStartFuncName(jerry_value_t bindTouchStartFunc) in SetBindTouchStartFuncName()
69 void ViewOnTouchListener::SetBindTouchMoveFuncName(jerry_value_t bindTouchMoveFunc) in SetBindTouchMoveFuncName()
77 void ViewOnTouchListener::SetBindTouchEndFuncName(jerry_value_t bindTouchEndFunc) in SetBindTouchEndFuncName()
84 void ViewOnTouchListener::SetBindSwipeFuncName(jerry_value_t bindSwipeFunc) in SetBindSwipeFuncName()
91 void ViewOnTouchListener::SetStopPropagation(bool isStopPropogation) in SetStopPropagation()
96 bool ViewOnTouchListener::OnDragStart(UIView& view, const DragEvent &event) in OnDragStart()
113 bool ViewOnTouchListener::OnDrag(UIView& view, const DragEvent& event) in OnDrag()
130 bool ViewOnTouchListener::OnDragEnd(UIView& view, const DragEvent &event) in OnDragEnd()
H A Devent_listener.h189 class ViewOnTouchListener final : public UIView::OnDragListener {
191 ACE_DISALLOW_COPY_AND_MOVE(ViewOnTouchListener);
192 ViewOnTouchListener(jerry_value_t vm, bool isStopPropagation) in ViewOnTouchListener() function
202 ~ViewOnTouchListener() in ~ViewOnTouchListener()
H A Dcomponent.cpp1183 onTouchListener_ = new ViewOnTouchListener(viewModel_, isStopPropagation); in SetSwipeEventListener()
1200 onTouchListener_ = new ViewOnTouchListener(viewModel_, isStopPropagation); in SetTouchStartEventListener()
1218 onTouchListener_ = new ViewOnTouchListener(viewModel_, isStopPropagation); in SetTouchMoveEventListener()
1235 onTouchListener_ = new ViewOnTouchListener(viewModel_, isStopPropagation); in SetTouchEndEventListener()
H A Dcomponent.h616 ViewOnTouchListener *onTouchListener_;