Home
last modified time | relevance | path

Searched refs:eventTypeId (Results 1 - 25 of 30) sorted by relevance

12

/foundation/arkui/ace_engine/interfaces/native/event/
H A Dui_input_event.cpp66 switch (event->eventTypeId) { in OH_ArkUI_UIInputEvent_GetAction()
92 switch (event->eventTypeId) { in OH_ArkUI_UIInputEvent_GetSourceType()
125 switch (event->eventTypeId) { in OH_ArkUI_UIInputEvent_GetToolType()
158 switch (event->eventTypeId) { in OH_ArkUI_UIInputEvent_GetEventTime()
207 switch (event->eventTypeId) { in OH_ArkUI_PointerEvent_GetPointerCount()
240 switch (event->eventTypeId) { in OH_ArkUI_PointerEvent_GetPointerId()
273 switch (event->eventTypeId) { in OH_ArkUI_PointerEvent_GetX()
320 switch (event->eventTypeId) { in OH_ArkUI_PointerEvent_GetXByIndex()
353 switch (event->eventTypeId) { in OH_ArkUI_PointerEvent_GetY()
401 switch (event->eventTypeId) { in OH_ArkUI_PointerEvent_GetYByIndex()
[all...]
H A Dui_input_event_impl.h35 ArkUIEventTypeId eventTypeId; member
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/
H A Dinput_radio_component.cpp72 bool InputRadioComponent::RegisterPrivateEventListener(uint16_t eventTypeId, in RegisterPrivateEventListener() argument
76 if (eventTypeId == K_CHANGE) { in RegisterPrivateEventListener()
84 if (eventTypeId == K_CLICK) { in RegisterPrivateEventListener()
H A Dinput_checkbox_component.cpp59 bool InputCheckboxComponent::RegisterPrivateEventListener(uint16_t eventTypeId, in RegisterPrivateEventListener() argument
63 if (eventTypeId == K_CHANGE) { in RegisterPrivateEventListener()
71 if (eventTypeId == K_CLICK) { in RegisterPrivateEventListener()
H A Dswitch_component.cpp89 bool SwitchComponent::RegisterPrivateEventListener(uint16_t eventTypeId, in RegisterPrivateEventListener() argument
93 if (eventTypeId == K_CHANGE) { in RegisterPrivateEventListener()
101 if (eventTypeId == K_CLICK) { in RegisterPrivateEventListener()
H A Dlist_component.cpp88 bool ListComponent::RegisterPrivateEventListener(uint16_t eventTypeId, JSValue funcValue, bool isStopPropagation) in RegisterPrivateEventListener() argument
92 switch (eventTypeId) { in RegisterPrivateEventListener()
H A Dinput_edittext_component.cpp125 bool InputEditTextComponent::RegisterPrivateEventListener(uint16_t eventTypeId, in RegisterPrivateEventListener() argument
129 if (eventTypeId == K_CHANGE) { in RegisterPrivateEventListener()
H A Dswiper_component.cpp129 bool SwiperComponent::RegisterPrivateEventListener(uint16_t eventTypeId, in RegisterPrivateEventListener() argument
133 if (eventTypeId == K_CHANGE) { in RegisterPrivateEventListener()
H A Dswitch_component.h35 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
H A Dinput_radio_component.h40 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
H A Dlist_component.h37 bool RegisterPrivateEventListener(uint16_t eventTypeId, JSValue funcValue, bool isStopPropagation) override;
H A Dinput_checkbox_component.h39 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
H A Dslider_component.h36 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
H A Dslider_component.cpp65 bool SliderComponent::RegisterPrivateEventListener(uint16_t eventTypeId, in RegisterPrivateEventListener() argument
69 switch (eventTypeId) { in RegisterPrivateEventListener()
H A Dinput_edittext_component.h45 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
H A Dtabs_component.h47 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue) override;
H A Dswiper_component.h39 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
H A Dtabs_component.cpp145 bool TabsComponent::RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue) in RegisterPrivateEventListener() argument
147 if (!KeyParser::IsKeyValid(eventTypeId) || IS_UNDEFINED(funcValue)) { in RegisterPrivateEventListener()
150 if (eventTypeId == K_CHANGE) { in RegisterPrivateEventListener()
H A Dcomponent.cpp1193 void Component::SetTouchCancelEventListener(UIView &view, jerry_value_t eventFunc, uint16_t eventTypeId) in SetTouchCancelEventListener() argument
1195 onTouchCancelListener_ = new ViewOnTouchCancelListener(eventFunc, eventTypeId); in SetTouchCancelEventListener()
1206 void Component::SetKeyBoardEventListener(jerry_value_t eventFunc, uint16_t eventTypeId) in SetKeyBoardEventListener() argument
1213 keyBoardEventListener_ = new KeyBoardEventListener(eventFunc, eventTypeId); in SetKeyBoardEventListener()
1304 bool Component::RegisterEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) in RegisterEventListener() argument
1306 if (!KeyParser::IsKeyValid(eventTypeId) || IS_UNDEFINED(funcValue)) { in RegisterEventListener()
1317 bool registerResult = RegisterPrivateEventListener(eventTypeId, funcValue, isStopPropagation); in RegisterEventListener()
1322 return RegisterCommonEventListener(*uiView, eventTypeId, funcValue, isStopPropagation); in RegisterEventListener()
1326 const uint16_t eventTypeId, in RegisterCommonEventListener()
1330 switch (eventTypeId) { in RegisterCommonEventListener()
1325 RegisterCommonEventListener(UIView &view, const uint16_t eventTypeId, const jerry_value_t funcValue, bool isStopPropagation) RegisterCommonEventListener() argument
[all...]
H A Dcomponent.h330 virtual bool RegisterEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation);
337 const uint16_t eventTypeId,
345 virtual bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) in RegisterPrivateEventListener() argument
H A Dimage_animator_component.h64 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
H A Dpicker_view_component.h137 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
H A Dimage_animator_component.cpp136 bool ImageAnimatorComponent::RegisterPrivateEventListener(uint16_t eventTypeId, in RegisterPrivateEventListener() argument
140 if (eventTypeId == K_STOP) { in RegisterPrivateEventListener()
H A Dcamera_component.h152 bool RegisterPrivateEventListener(uint16_t eventTypeId,
/foundation/arkui/ace_engine/interfaces/native/node/
H A Dgesture_impl.cpp555 uiEvent.eventTypeId = C_MOUSE_EVENT_ID; in HandleGestureEvent()
558 uiEvent.eventTypeId = C_AXIS_EVENT_ID; in HandleGestureEvent()
561 uiEvent.eventTypeId = C_TOUCH_EVENT_ID; in HandleGestureEvent()

Completed in 14 milliseconds

12