Searched refs:RotationGesture (Results 1 - 11 of 11) sorted by relevance
/foundation/arkui/ace_engine/frameworks/core/gestures/ |
H A D | rotation_gesture.h | 30 class ACE_EXPORT RotationGesture : public Gesture { class 31 DECLARE_ACE_TYPE(RotationGesture, Gesture); 34 RotationGesture() = default; 35 RotationGesture(int32_t fingers, double angle) : Gesture(fingers), angle_(angle) {} in RotationGesture() function in OHOS::Ace::RotationGesture 36 ~RotationGesture() override = default;
|
H A D | rotation_gesture.cpp | 22 RefPtr<GestureRecognizer> RotationGesture::CreateRecognizer(WeakPtr<PipelineBase> context) in CreateRecognizer()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/gestures/ |
H A D | rotation_gesture.h | 30 class ACE_FORCE_EXPORT RotationGesture : public Gesture { class 31 DECLARE_ACE_TYPE(RotationGesture, Gesture); 34 RotationGesture() in RotationGesture() function in OHOS::Ace::NG::RotationGesture 44 RotationGesture(int32_t fingers, double angle); 45 ~RotationGesture() override = default;
|
H A D | rotation_gesture.cpp | 25 RotationGesture::RotationGesture(int32_t fingers, double angle) : Gesture(fingers) in RotationGesture() function in OHOS::Ace::NG::RotationGesture 40 RefPtr<NGGestureRecognizer> RotationGesture::CreateRecognizer() in CreateRecognizer()
|
/foundation/arkui/ace_engine/test/unittest/core/gestures/ |
H A D | rotation_recognizer_test_ng.cpp | 702 * @tc.desc: Test RotationGesture CreateRecognizer function 714 auto rotationGestureNG = AceType::DynamicCast<NG::RotationGesture>(gestureProcessor->TopGestureNG()); in HWTEST_F() 717 RotationGesture rotationGesture = RotationGesture(FINGER_NUMBER, ROTATION_GESTURE_ANGLE); in HWTEST_F() 750 * @tc.desc: Test RotationGesture CreateRecognizer function 762 auto rotationGestureNG = AceType::DynamicCast<NG::RotationGesture>(gestureProcessor->TopGestureNG()); in HWTEST_F() 765 RotationGesture rotationGesture = RotationGesture(FINGER_NUMBER, 0.0); in HWTEST_F() 767 RotationGesture rotationGestureTwo = RotationGesture(FINGER_NUMBE in HWTEST_F() [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/cppview/ |
H A D | gesture.h | 63 class ACE_EXPORT RotationGesture : public Gesture { class
|
H A D | gesture.cpp | 204 void RotationGesture::Create(int32_t fingers, double angle) in Create() 213 auto gesture = AceType::MakeRefPtr<OHOS::Ace::RotationGesture>(fingersNum, angleNum); in Create()
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | gesture_model_impl.cpp | 118 auto gesture = AceType::MakeRefPtr<RotationGesture>(fingersNum, angleNum); in Create()
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/gesture/ |
H A D | gesture_model_ng.cpp | 177 auto gesture = AceType::MakeRefPtr<NG::RotationGesture>(fingersNum, angleNum); in Create()
|
/foundation/arkui/ace_engine/frameworks/bridge/cj_frontend/interfaces/cj_ffi/ |
H A D | cj_gesture_ffi.cpp | 280 // RotationGesture 290 auto gesture = AceType::MakeRefPtr<NG::RotationGesture>(fingersNum, angleNum); in FfiOHOSAceFrameworkRotationGestureCreate()
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_gesture_modifier.cpp | 114 auto rotationGestureObject = AceType::MakeRefPtr<RotationGesture>(fingers, angle); in createRotationGesture()
|
Completed in 7 milliseconds