Home
last modified time | relevance | path

Searched refs:GetPinchCenter (Results 1 – 10 of 10) sorted by relevance

/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/functions/
H A Djs_gesture_function.cpp48 "pinchCenterX", PipelineBase::Px2VpWithCurrentDensity(info.GetPinchCenter().GetX())); in CreateGestureEvent()
50 "pinchCenterY", PipelineBase::Px2VpWithCurrentDensity(info.GetPinchCenter().GetY())); in CreateGestureEvent()
H A Djs_gesture_judge_function.cpp146 …"pinchCenterX", PipelineBase::Px2VpWithCurrentDensity(pinchGestureEvent->GetPinchCenter().GetX())); in SetUniqueAttributes()
148 …"pinchCenterY", PipelineBase::Px2VpWithCurrentDensity(pinchGestureEvent->GetPinchCenter().GetY())); in SetUniqueAttributes()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/gestures/
H A Dbase_gesture_event.h143 const Offset& GetPinchCenter() const in GetPinchCenter() function
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/
H A Dcj_gesture_ffi.cpp98 ffiGestureEvent.pinchCenterX = event.GetPinchCenter().GetX(); in FormatGestureEvenFunction()
99 ffiGestureEvent.pinchCenterY = event.GetPinchCenter().GetY(); in FormatGestureEvenFunction()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/
H A Dnode_gesture_modifier.cpp267 ret.pinchCenterX = info.GetPinchCenter().GetX(); in GetGestureEvent()
268 ret.pinchCenterY = info.GetPinchCenter().GetY(); in GetGestureEvent()
339 ret->pinchCenterX = pinchGestureEvent->GetPinchCenter().GetX(); in GetUniqueGestureEvent()
340 ret->pinchCenterY = pinchGestureEvent->GetPinchCenter().GetY(); in GetUniqueGestureEvent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/gestures/
H A Dgesture_event.h129 const Offset& GetPinchCenter() const in GetPinchCenter() function
/ohos5.0/foundation/arkui/ace_engine/interfaces/napi/kits/observer/
H A Dui_observer_listener.cpp458 … napi_create_double(env_, gestureEventInfo.GetPinchCenter().GetX() / scale, &napiPinchCenterX); in AddGestureEventInfoTwo()
463 … napi_create_double(env_, gestureEventInfo.GetPinchCenter().GetY() / scale, &napiPinchCenterY); in AddGestureEventInfoTwo()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/js_frontend/
H A Djs_frontend.cpp917 .append(std::to_string(info.GetPinchCenter().GetX())) in HandleAsyncEvent()
919 .append(std::to_string(info.GetPinchCenter().GetY())) in HandleAsyncEvent()
/ohos5.0/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/
H A Darkts_native_common_bridge.cpp6152 panda::NumberRef::New(vm, pinchGestureEvent->GetPinchCenter().GetX() / density), in SetUniqueAttributes()
6153 … panda::NumberRef::New(vm, pinchGestureEvent->GetPinchCenter().GetY() / density) }; in SetUniqueAttributes()
6520 panda::NumberRef::New(vm, info.GetPinchCenter().GetX() / density), in CreateCommonGestureEventInfo()
6521 panda::NumberRef::New(vm, info.GetPinchCenter().GetY() / density), in CreateCommonGestureEventInfo()
/ohos5.0/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/
H A Dweb_pattern.cpp1046 double centerX = event.GetPinchCenter().GetX(); in HandleScaleGestureChange()
1047 double centerY = event.GetPinchCenter().GetY(); in HandleScaleGestureChange()