Thu, 15 Jan 2015 21:03:48 +0100
Integrate friendly tips from Tor colleagues to make (or not) 4.5 alpha 3;
This includes removal of overloaded (but unused) methods, and addition of
a overlooked call to DataStruct::SetData(nsISupports, uint32_t, bool.)
1 /* -*- Mode: Java; c-basic-offset: 4; tab-width: 20; indent-tabs-mode: nil; -*-
2 * This Source Code Form is subject to the terms of the Mozilla Public
3 * License, v. 2.0. If a copy of the MPL was not distributed with this
4 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
6 package org.mozilla.gecko.gfx;
8 import org.mozilla.gecko.ZoomConstraints;
10 import android.graphics.PointF;
11 import android.graphics.RectF;
13 public interface PanZoomTarget {
14 public ImmutableViewportMetrics getViewportMetrics();
15 public ZoomConstraints getZoomConstraints();
16 public boolean isFullScreen();
17 public RectF getMaxMargins();
19 public void setAnimationTarget(ImmutableViewportMetrics viewport);
20 public void setViewportMetrics(ImmutableViewportMetrics viewport);
21 public void scrollBy(float dx, float dy);
22 public void scrollMarginsBy(float dx, float dy);
23 public void panZoomStopped();
24 /** This triggers an (asynchronous) viewport update/redraw. */
25 public void forceRedraw(DisplayPortMetrics displayPort);
27 public boolean post(Runnable action);
28 public boolean postDelayed(Runnable action, long delayMillis);
29 public void postRenderTask(RenderTask task);
30 public void removeRenderTask(RenderTask task);
31 public Object getLock();
32 public PointF convertViewPointToLayerPoint(PointF viewPoint);
33 }