/foundation/arkui/ace_engine/interfaces/native/event/ |
H A D | ui_input_event.cpp | 66 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 D | ui_input_event_impl.h | 35 ArkUIEventTypeId eventTypeId; member
|
/foundation/arkui/ace_engine_lite/frameworks/src/core/components/ |
H A D | input_radio_component.cpp | 72 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 D | input_checkbox_component.cpp | 59 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 D | switch_component.cpp | 89 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 D | list_component.cpp | 88 bool ListComponent::RegisterPrivateEventListener(uint16_t eventTypeId, JSValue funcValue, bool isStopPropagation) in RegisterPrivateEventListener() argument 92 switch (eventTypeId) { in RegisterPrivateEventListener()
|
H A D | input_edittext_component.cpp | 125 bool InputEditTextComponent::RegisterPrivateEventListener(uint16_t eventTypeId, in RegisterPrivateEventListener() argument 129 if (eventTypeId == K_CHANGE) { in RegisterPrivateEventListener()
|
H A D | swiper_component.cpp | 129 bool SwiperComponent::RegisterPrivateEventListener(uint16_t eventTypeId, in RegisterPrivateEventListener() argument 133 if (eventTypeId == K_CHANGE) { in RegisterPrivateEventListener()
|
H A D | switch_component.h | 35 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
|
H A D | input_radio_component.h | 40 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
|
H A D | list_component.h | 37 bool RegisterPrivateEventListener(uint16_t eventTypeId, JSValue funcValue, bool isStopPropagation) override;
|
H A D | input_checkbox_component.h | 39 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
|
H A D | slider_component.h | 36 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
|
H A D | slider_component.cpp | 65 bool SliderComponent::RegisterPrivateEventListener(uint16_t eventTypeId, in RegisterPrivateEventListener() argument 69 switch (eventTypeId) { in RegisterPrivateEventListener()
|
H A D | input_edittext_component.h | 45 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
|
H A D | tabs_component.h | 47 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue) override;
|
H A D | swiper_component.h | 39 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
|
H A D | tabs_component.cpp | 145 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 D | component.cpp | 1193 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 D | component.h | 330 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 D | image_animator_component.h | 64 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
|
H A D | picker_view_component.h | 137 bool RegisterPrivateEventListener(uint16_t eventTypeId, jerry_value_t funcValue, bool isStopPropagation) override;
|
H A D | image_animator_component.cpp | 136 bool ImageAnimatorComponent::RegisterPrivateEventListener(uint16_t eventTypeId, in RegisterPrivateEventListener() argument 140 if (eventTypeId == K_STOP) { in RegisterPrivateEventListener()
|
H A D | camera_component.h | 152 bool RegisterPrivateEventListener(uint16_t eventTypeId,
|
/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | gesture_impl.cpp | 555 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()
|