mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-08 04:27:37 +00:00
95 lines
3.1 KiB
Java
95 lines
3.1 KiB
Java
/* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
|
|
|
package org.mozilla.gecko.gfx;
|
|
|
|
import org.mozilla.gecko.GeckoEvent;
|
|
import org.mozilla.gecko.GeckoThread;
|
|
import org.mozilla.gecko.mozglue.generatorannotations.WrapElementForJNI;
|
|
import org.mozilla.gecko.EventDispatcher;
|
|
import org.mozilla.gecko.util.GeckoEventListener;
|
|
|
|
import org.json.JSONObject;
|
|
|
|
import android.graphics.PointF;
|
|
import android.view.KeyEvent;
|
|
import android.view.MotionEvent;
|
|
import android.view.View;
|
|
|
|
class NativePanZoomController implements PanZoomController, GeckoEventListener {
|
|
private final PanZoomTarget mTarget;
|
|
private final EventDispatcher mDispatcher;
|
|
|
|
NativePanZoomController(PanZoomTarget target, View view, EventDispatcher dispatcher) {
|
|
mTarget = target;
|
|
mDispatcher = dispatcher;
|
|
if (GeckoThread.checkLaunchState(GeckoThread.LaunchState.GeckoRunning)) {
|
|
init();
|
|
} else {
|
|
mDispatcher.registerGeckoThreadListener(this, "Gecko:Ready");
|
|
}
|
|
}
|
|
|
|
public void handleMessage(String event, JSONObject message) {
|
|
if ("Gecko:Ready".equals(event)) {
|
|
mDispatcher.unregisterGeckoThreadListener(this, "Gecko:Ready");
|
|
init();
|
|
}
|
|
}
|
|
|
|
public boolean onTouchEvent(MotionEvent event) {
|
|
GeckoEvent wrapped = GeckoEvent.createMotionEvent(event, true);
|
|
return handleTouchEvent(wrapped);
|
|
}
|
|
|
|
public boolean onMotionEvent(MotionEvent event) {
|
|
// FIXME implement this
|
|
return false;
|
|
}
|
|
|
|
public boolean onKeyEvent(KeyEvent event) {
|
|
// FIXME implement this
|
|
return false;
|
|
}
|
|
|
|
public PointF getVelocityVector() {
|
|
// FIXME implement this
|
|
return new PointF(0, 0);
|
|
}
|
|
|
|
public void pageRectUpdated() {
|
|
// no-op in APZC, I think
|
|
}
|
|
|
|
public void abortPanning() {
|
|
// no-op in APZC, I think
|
|
}
|
|
|
|
public void notifyDefaultActionPrevented(boolean prevented) {
|
|
// This should never get called; there is a different
|
|
// codepath that notifies the APZ code of this.
|
|
throw new IllegalStateException("APZCCallbackHandler::NotifyDefaultPrevented should be getting called, not this!");
|
|
}
|
|
|
|
public native void abortAnimation();
|
|
|
|
private native void init();
|
|
private native boolean handleTouchEvent(GeckoEvent event);
|
|
private native void handleMotionEvent(GeckoEvent event);
|
|
|
|
public native void destroy();
|
|
public native boolean getRedrawHint();
|
|
public native void setOverScrollMode(int overscrollMode);
|
|
public native int getOverScrollMode();
|
|
|
|
@WrapElementForJNI(allowMultithread = true, stubName = "RequestContentRepaintWrapper")
|
|
private void requestContentRepaint(float x, float y, float width, float height, float resolution) {
|
|
mTarget.forceRedraw(new DisplayPortMetrics(x, y, x + width, y + height, resolution));
|
|
}
|
|
|
|
public void setOverscrollHandler(final Overscroll listener) {
|
|
}
|
|
}
|