implement View.onInterceptTouchEvent() callback

This is needed to support nested scrolling

A second GtkEventControllerLegacy gets registerd with GTK_PHASE_CAPTURE
This commit is contained in:
Julian Winkler
2024-02-24 18:50:03 +01:00
parent c03fb93727
commit 8dafa41ea9
7 changed files with 79 additions and 8 deletions

View File

@@ -311,6 +311,14 @@ JNIEXPORT void JNICALL Java_android_view_View_setBackgroundColor
JNIEXPORT void JNICALL Java_android_view_View_native_1setVisibility
(JNIEnv *, jobject, jlong, jint, jfloat);
/*
* Class: android_view_View
* Method: native_getGlobalVisibleRect
* Signature: (JLandroid/graphics/Rect;)Z
*/
JNIEXPORT jboolean JNICALL Java_android_view_View_native_1getGlobalVisibleRect
(JNIEnv *, jobject, jlong, jobject);
#ifdef __cplusplus
}
#endif