/base/web/webview/interfaces/kits/napi/webviewcontroller/ |
H A D | webview_controller.h | 265 void ScrollBy(float deltaX, float deltaY); 386 void ScrollByWithAnime(float deltaX, float deltaY, int32_t duration) ; 398 bool ScrollByWithResult(float deltaX, float deltaY) const;
|
H A D | webview_controller.cpp | 1273 void WebviewController::ScrollBy(float deltaX, float deltaY) in ScrollBy() argument 1277 nweb_ptr->ScrollBy(deltaX, deltaY); in ScrollBy() 2011 void WebviewController::ScrollByWithAnime(float deltaX, float deltaY, int32_t duration) in ScrollByWithAnime() argument 2015 nweb_ptr->ScrollByWithAnime(deltaX, deltaY, duration); in ScrollByWithAnime() 2038 bool WebviewController::ScrollByWithResult(float deltaX, float deltaY) const in ScrollByWithResult() argument 2043 enabled = nweb_ptr->ScrollByWithResult(deltaX, deltaY); in ScrollByWithResult()
|
H A D | napi_webview_controller.cpp | 4325 float deltaX; in ScrollBy() local 4336 if (!NapiParseUtils::ParseFloat(env, argv[INTEGER_ZERO], deltaX)) { in ScrollBy() 4338 NWebError::FormatString(ParamCheckErrorMsgTemplate::TYPE_ERROR, "deltaX", "number")); in ScrollBy() 4363 webviewController->ScrollByWithAnime(deltaX, deltaY, duration); in ScrollBy() 4365 webviewController->ScrollBy(deltaX, deltaY); in ScrollBy() 6492 float deltaX; in ScrollByWithResult() local 6502 if (!NapiParseUtils::ParseFloat(env, argv[INTEGER_ZERO], deltaX)) { in ScrollByWithResult() 6504 NWebError::FormatString(ParamCheckErrorMsgTemplate::TYPE_ERROR, "deltaX", "number")); in ScrollByWithResult() 6519 bool scrollByWithResult = webviewController->ScrollByWithResult(deltaX, deltaY); in ScrollByWithResult()
|
/base/web/webview/test/fuzztest/ohos_nweb/nwebhelper_fuzzer/ |
H A D | nweb_create_window.h | 50 void SendMouseWheelEvent(double x, double y, double deltaX, double deltaY) override {} 201 void ScrollBy(float deltaX, float deltaY) override {}
|
/base/web/webview/test/unittest/common/ |
H A D | nweb_create_window.h | 61 void SendMouseWheelEvent(double x, double y, double deltaX, double deltaY) override 259 void ScrollBy(float deltaX, float deltaY) override
|
/base/web/webview/interfaces/kits/cj/include/ |
H A D | webview_controller_impl.h | 141 void ScrollBy(float deltaX, float deltaY); 145 void ScrollByWithAnime(float deltaX, float deltaY, int32_t duration);
|
H A D | webview_ffi.h | 61 FFI_EXPORT int32_t FfiOHOSWebviewCtlScrollBy(int64_t id, float deltaX, float deltaY); 63 FFI_EXPORT int32_t FfiOHOSWebviewCtlScrollByWithAnime(int64_t id, float deltaX, float deltaY, int32_t duration);
|
/base/web/webview/interfaces/kits/cj/src/ |
H A D | webview_controller_impl.cpp | 379 void WebviewControllerImpl::ScrollBy(float deltaX, float deltaY) in ScrollBy() argument 383 nweb_ptr->ScrollBy(deltaX, deltaY); in ScrollBy() 397 void WebviewControllerImpl::ScrollByWithAnime(float deltaX, float deltaY, int32_t duration) in ScrollByWithAnime() argument 401 nweb_ptr->ScrollByWithAnime(deltaX, deltaY, duration); in ScrollByWithAnime()
|
H A D | webview_ffi.cpp | 500 int32_t FfiOHOSWebviewCtlScrollBy(int64_t id, float deltaX, float deltaY) in FfiOHOSWebviewCtlScrollBy() argument 506 nativeWebviewCtl->ScrollBy(deltaX, deltaY); in FfiOHOSWebviewCtlScrollBy() 524 int32_t FfiOHOSWebviewCtlScrollByWithAnime(int64_t id, float deltaX, float deltaY, int32_t duration) in FfiOHOSWebviewCtlScrollByWithAnime() argument 531 nativeWebviewCtl->ScrollByWithAnime(deltaX, deltaY, duration); in FfiOHOSWebviewCtlScrollByWithAnime() 533 nativeWebviewCtl->ScrollBy(deltaX, deltaY); in FfiOHOSWebviewCtlScrollByWithAnime()
|
/base/web/webview/ohos_interface/include/ohos_nweb/ |
H A D | nweb.h | 286 virtual void SendMouseWheelEvent(double x, double y, double deltaX, double deltaY) = 0;
|