Searched refs:DEFAULT_PINCH_DISTANCE (Results 1 - 8 of 8) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/components/gesture_listener/ |
H A D | render_gesture_listener.cpp | 26 constexpr double DEFAULT_PINCH_DISTANCE = 1.0; member 423 pinchRecognizer_ = AceType::MakeRefPtr<PinchRecognizer>(DEFAULT_PINCH_FINGER, DEFAULT_PINCH_DISTANCE); in SetOnPinchStartCallback() 435 pinchRecognizer_ = AceType::MakeRefPtr<PinchRecognizer>(DEFAULT_PINCH_FINGER, DEFAULT_PINCH_DISTANCE); in SetOnPinchUpdateCallback() 447 pinchRecognizer_ = AceType::MakeRefPtr<PinchRecognizer>(DEFAULT_PINCH_FINGER, DEFAULT_PINCH_DISTANCE); in SetOnPinchEndCallback() 459 pinchRecognizer_ = AceType::MakeRefPtr<PinchRecognizer>(DEFAULT_PINCH_FINGER, DEFAULT_PINCH_DISTANCE); in SetOnPinchCancelCallback()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/ |
H A D | gesture.cpp | 33 constexpr double DEFAULT_PINCH_DISTANCE = 3.0; member 181 double distanceNum = DEFAULT_PINCH_DISTANCE; in Create() 184 distanceNum = LessNotEqual(distance, 0.0) ? DEFAULT_PINCH_DISTANCE : distance; in Create()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/gestures/recognizers/ |
H A D | pinch_recognizer.cpp | 26 constexpr Dimension DEFAULT_PINCH_DISTANCE = Dimension(5.0, DimensionUnit::VP); member 38 distance_ = DEFAULT_PINCH_DISTANCE.ConvertToPx(); in PinchRecognizer()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_gesture_ffi.cpp | 38 constexpr double DEFAULT_PINCH_DISTANCE = 3.0; member 257 double distanceNum = Utils::CheckMin(0.0, DEFAULT_PINCH_DISTANCE, distance); in FfiOHOSAceFrameworkPinchGestureCreate()
|
/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | gesture_impl.cpp | 373 constexpr double DEFAULT_PINCH_DISTANCE = 5.0f; member 420 distance = DEFAULT_PINCH_DISTANCE; in CreatePinchGesture()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_gesture.cpp | 225 constexpr double DEFAULT_PINCH_DISTANCE = 5.0; member 415 double distanceNum = DEFAULT_PINCH_DISTANCE; in Create() 428 distanceNum = LessNotEqual(distanceNumber, 0.0) ? DEFAULT_PINCH_DISTANCE : distanceNumber; in Create()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_common_bridge.cpp | 75 constexpr double DEFAULT_PINCH_DISTANCE = 5.0; member 6344 distance = distanceValue <= 0.0 ? DEFAULT_PINCH_DISTANCE : distanceValue; in GetPinchGestureValue() 7323 double distance = DEFAULT_PINCH_DISTANCE; in AddPinchGesture() 7457 double distance = DEFAULT_PINCH_DISTANCE; in AddPinchGestureToGroup()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/web/ |
H A D | web_pattern.cpp | 279 constexpr double DEFAULT_PINCH_DISTANCE = 6.0; member 935 pinchGesture_ = MakeRefPtr<PinchGesture>(DEFAULT_PINCH_FINGER, DEFAULT_PINCH_DISTANCE); in InitPinchEvent()
|
Completed in 33 milliseconds