/foundation/arkui/ace_engine/frameworks/core/components_ng/gestures/recognizers/ |
H A D | click_recognizer.h | 65 void SetDistanceThreshold(double distanceThreshold) in SetDistanceThreshold() argument
|
H A D | click_recognizer.cpp | 83 ClickRecognizer::ClickRecognizer(int32_t fingers, int32_t count, double distanceThreshold) in ClickRecognizer() argument
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/event/ |
H A D | click_event.h | 110 void AddDistanceThreshold(double distanceThreshold) in AddDistanceThreshold() argument
|
H A D | gesture_event_hub.cpp | 472 void GestureEventHub::SetUserOnClick(GestureEventFunc&& clickEvent, double distanceThreshold) in SetUserOnClick() argument 490 void GestureEventHub::SetNodeClickDistance(double distanceThreshold) in SetNodeClickDistance() argument 557 AddClickEvent(const RefPtr<ClickEvent>& clickEvent, double distanceThreshold) AddClickEvent() argument [all...] |
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/ |
H A D | js_location_button.cpp | 146 double distanceThreshold = std::numeric_limits<double>::infinity(); in JsOnClick() local 151 NG::ViewAbstract::SetOnClick(std::move(onTap), distanceThreshold); in JsOnClick() local
|
H A D | js_save_button.cpp | 146 double distanceThreshold = std::numeric_limits<double>::infinity(); in JsOnClick() local 151 NG::ViewAbstract::SetOnClick(std::move(onTap), distanceThreshold); in JsOnClick() local
|
H A D | js_paste_button.cpp | 145 double distanceThreshold = std::numeric_limits<double>::infinity(); in JsOnClick() local 150 NG::ViewAbstract::SetOnClick(std::move(onTap), distanceThreshold); in JsOnClick() local
|
H A D | js_interactable_view.cpp | 218 double distanceThreshold = std::numeric_limits<double>::infinity(); in JsOnClick() local 224 ViewAbstractModel::GetInstance()->SetOnClick(std::move(onTap), std::move(onClick), distanceThreshold); in JsOnClick() local
|
H A D | js_gesture.cpp | 286 JSRef<JSVal> distanceThreshold = obj->GetProperty(TAP_GESTURE_DISTANCE); in Create() local
|
H A D | js_button.cpp | 558 double distanceThreshold = std::numeric_limits<double>::infinity(); in JsOnClick() local 563 ButtonModel::GetInstance()->OnClick(std::move(onTap), std::move(onClick), distanceThreshold); in JsOnClick() local
|
H A D | js_text.cpp | 705 double distanceThreshold = std::numeric_limits<double>::infinity(); in JsOnClick() local 710 TextModel::GetInstance()->SetOnClick(std::move(onClick), distanceThreshold); in JsOnClick() local 741 double distanceThreshold = std::numeric_limits<double>::infinity(); in JsOnClickWithoutNGBUILD() local 746 TextModel::GetInstance()->SetOnClick(std::move(onClickId), distanceThreshold); in JsOnClickWithoutNGBUILD() local [all...] |
H A D | js_view_abstract.cpp | 9805 double distanceThreshold = std::numeric_limits<double>::infinity(); in JsOnClick() local 9813 ViewAbstractModel::GetInstance()->SetOnClick(std::move(tmpOnTap), std::move(onClick), distanceThreshold); in JsOnClick() local
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/jsview/models/ |
H A D | gesture_model_impl.cpp | 66 void TapGestureModelImpl::Create(int32_t countNum, int32_t fingersNum, double distanceThreshold) in Create() argument
|
H A D | text_model_impl.cpp | 278 void TextModelImpl::SetOnClick(std::function<void(BaseEventInfo*)>&& click, double distanceThreshold) in SetOnClick() argument
|
H A D | button_model_impl.cpp | 178 OnClick(GestureEventFunc&& tapEventFunc, ClickEventFunc&& clickEventFunc, double distanceThreshold) OnClick() argument
|
H A D | view_abstract_model_impl.cpp | 1015 SetOnClick( GestureEventFunc&& tapEventFunc, ClickEventFunc&& clickEventFunc, double distanceThreshold) SetOnClick() argument
|
/foundation/multimodalinput/input/service/touch_event_normalize/include/ |
H A D | touchpad_transform_processor.h | 67 const float distanceThreshold = 0.2F; member in OHOS::MMI::final
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/base/ |
H A D | view_abstract_model_ng.h | 918 ViewAbstract::SetOnClick(std::move(tapEventFunc), distanceThreshold); variable
|
H A D | view_abstract.cpp | 1011 void ViewAbstract::SetOnClick(GestureEventFunc&& clickEventFunc, double distanceThreshold) in SetOnClick() argument 1017 gestureHub->SetUserOnClick(std::move(clickEventFunc), distanceThreshold); in SetOnClick() local 3808 void ViewAbstract::SetOnClick(FrameNode* frameNode, GestureEventFunc&& clickEventFunc, double distanceThreshold) in SetOnClick() argument 3812 gestureHub->SetUserOnClick(std::move(clickEventFunc), distanceThreshold); in SetOnClick() local
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/gesture/ |
H A D | gesture_model_ng.cpp | 125 void TapGestureModelNG::Create(int32_t countNum, int32_t fingersNum, double distanceThreshold) in Create() argument
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/button/ |
H A D | button_model_ng.cpp | 312 void ButtonModelNG::OnClick(GestureEventFunc&& tapEventFunc, ClickEventFunc&& clickEventFunc, double distanceThreshold) in OnClick() argument 314 ViewAbstract::SetOnClick(std::move(tapEventFunc), distanceThreshold); in OnClick() local
|
/foundation/arkui/ace_engine/frameworks/core/interfaces/native/node/ |
H A D | node_gesture_modifier.cpp | 86 createTapGestureWithDistanceThreshold( ArkUI_Int32 count, ArkUI_Int32 fingers, double distanceThreshold, void* userData) createTapGestureWithDistanceThreshold() argument
|
/foundation/arkui/ace_engine/interfaces/native/node/ |
H A D | gesture_impl.cpp | 396 ArkUI_GestureRecognizer* CreateTapGestureWithDistanceThreshold(int32_t count, int32_t fingers, double distanceThreshold) in CreateTapGestureWithDistanceThreshold() argument
|
/foundation/arkui/ace_engine/frameworks/core/components_ng/pattern/text/ |
H A D | text_model_ng.cpp | 381 void TextModelNG::SetOnClick(std::function<void(BaseEventInfo* info)>&& click, double distanceThreshold) in SetOnClick() argument 388 textPattern->SetOnClickEvent(std::move(clickFunc), distanceThreshold); in SetOnClick() local
|
/foundation/arkui/ace_engine/frameworks/bridge/declarative_frontend/engine/jsi/nativeModule/ |
H A D | arkts_native_common_bridge.cpp | 7219 double distanceThreshold = DEFAULT_TAP_DISTANCE; in AddTapGesture() local 7381 double distanceThreshold = DEFAULT_TAP_DISTANCE; in AddTapGestureToGroup() local 6239 GetTapGestureValue(ArkUIRuntimeCallInfo* runtimeCallInfo, int32_t& fingers, int32_t& count, double& distanceThreshold, uint32_t argNumber) GetTapGestureValue() argument
|