1
    2
    3
    4
    5
    6
    7
    8
    9
   10
   11
   12
   13
   14
   15
   16
   17
   18
   19
   20
   21
   22
   23
   24
   25
   26
   27
   28
   29
   30
   31
   32
   33
   34
   35
   36
   37
   38
   39
   40
   41
   42
   43
   44
   45
   46
   47
   48
   49
   50
   51
   52
   53
   54
   55
   56
   57
   58
   59
   60
   61
   62
   63
   64
   65
   66
   67
   68
   69
   70
   71
   72
   73
   74
   75
   76
   77
   78
   79
   80
   81
   82
   83
   84
   85

content / browser / android / content_ui_event_handler.h [blame]

// Copyright 2018 The Chromium Authors
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.

#ifndef CONTENT_BROWSER_ANDROID_CONTENT_UI_EVENT_HANDLER_H_
#define CONTENT_BROWSER_ANDROID_CONTENT_UI_EVENT_HANDLER_H_

#include "base/android/jni_android.h"
#include "base/android/jni_weak_ref.h"
#include "base/android/scoped_java_ref.h"
#include "base/memory/raw_ptr.h"

namespace ui {
class KeyEventAndroid;
class MotionEventAndroid;
}  // namespace ui

namespace content {

class RenderWidgetHostViewAndroid;
class WebContentsImpl;

// Handles UI events that need Java layer access.
// Owned by |WebContentsViewAndroid|.
class ContentUiEventHandler {
 public:
  ContentUiEventHandler(JNIEnv* env,
                        const base::android::JavaRef<jobject>& obj,
                        WebContentsImpl* web_contents);

  ContentUiEventHandler(const ContentUiEventHandler&) = delete;
  ContentUiEventHandler& operator=(const ContentUiEventHandler&) = delete;

  base::android::ScopedJavaLocalRef<jobject> GetJavaObject();

  bool OnGenericMotionEvent(const ui::MotionEventAndroid& event);
  bool OnKeyUp(const ui::KeyEventAndroid& event);
  bool DispatchKeyEvent(const ui::KeyEventAndroid& event);
  bool ScrollBy(float delta_x, float delta_y);
  bool ScrollTo(float x, float y);

  void SendMouseWheelEvent(JNIEnv* env,
                           const base::android::JavaParamRef<jobject>& obj,
                           jlong time_ns,
                           jfloat x,
                           jfloat y,
                           jfloat ticks_x,
                           jfloat ticks_y,
                           jint meta_state,
                           jint source);
  void SendMouseEvent(JNIEnv* env,
                      const base::android::JavaParamRef<jobject>& obj,
                      jlong time_ns,
                      jint android_action,
                      jfloat x,
                      jfloat y,
                      jint pointer_id,
                      jfloat orientation,
                      jfloat pressure,
                      jfloat tilt,
                      jint android_action_button,
                      jint android_button_state,
                      jint android_meta_state,
                      jint android_tool_type);
  void SendScrollEvent(JNIEnv* env,
                       const base::android::JavaParamRef<jobject>& jobj,
                       jlong time_ms,
                       jfloat delta_x,
                       jfloat delta_y);
  void CancelFling(JNIEnv* env,
                   const base::android::JavaParamRef<jobject>& jobj,
                   jlong time_ms);

 private:
  RenderWidgetHostViewAndroid* GetRenderWidgetHostView();

  // A weak reference to the Java ContentUiEventHandler object.
  JavaObjectWeakGlobalRef java_ref_;

  const raw_ptr<WebContentsImpl> web_contents_;
};

}  // namespace content

#endif  // CONTENT_BROWSER_ANDROID_CONTENT_UI_EVENT_HANDLER_H_