summaryrefslogtreecommitdiffstats
path: root/gfx/layers/apz/util/DoubleTapToZoom.h
blob: 3c4503405e09839719a3024badccdb9dcaec0dda (plain)
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
/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* 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/. */

#ifndef mozilla_layers_DoubleTapToZoom_h
#define mozilla_layers_DoubleTapToZoom_h

#include "Units.h"
#include "mozilla/gfx/Matrix.h"

template <class T>
class RefPtr;

namespace mozilla {
namespace dom {
class Document;
}

namespace layers {

enum class CantZoomOutBehavior : int8_t { Nothing = 0, ZoomIn };

struct ZoomTarget {
  // The preferred target rect that we'd like to zoom in on, if possible. An
  // empty rect means the browser should zoom out.
  CSSRect targetRect;

  // If we are asked to zoom out but cannot (due to zoom constraints, etc), then
  // zoom in some small amount to provide feedback to the user.
  CantZoomOutBehavior cantZoomOutBehavior = CantZoomOutBehavior::Nothing;

  // If zooming all the way in on |targetRect| is not possible (for example, due
  // to a max zoom constraint), |elementBoundingRect| may be used to inform a
  // more optimal target scroll position (for example, we may try to maximize
  // the area of |elementBoundingRect| that's showing, while keeping
  // |targetRect| in view and keeping the zoom as close to the desired zoom as
  // possible).
  Maybe<CSSRect> elementBoundingRect;

  // The document relative (ie if the content inside the root scroll frame
  // existed without that scroll frame) pointer position at the time of the
  // double tap or location of the double tap if we can compute it. Only used if
  // the rest of this ZoomTarget is asking to zoom out but we are already at the
  // minimum zoom. In which case we zoom in a small amount on this point.
  Maybe<CSSPoint> documentRelativePointerPosition;
};

struct DoubleTapToZoomMetrics {
  // The visual viewport rect of the top-level content document.
  CSSRect mVisualViewport;
  // The scrollable rect of the root scroll container of the top-level content
  // document.
  CSSRect mRootScrollableRect;
  // If double-tap-to-zoom happens inside an OOP iframe, this transform matrix
  // is the matrix converting the coordinates relative to layout viewport origin
  // of the OOP iframe to the document origin of the top level content document.
  // If not, this is the identity matrix.
  CSSToCSSMatrix4x4 mTransformMatrix;

  bool operator==(const DoubleTapToZoomMetrics& aOther) const {
    return mVisualViewport == aOther.mVisualViewport &&
           mRootScrollableRect == aOther.mRootScrollableRect &&
           mTransformMatrix == aOther.mTransformMatrix;
  }
  friend std::ostream& operator<<(std::ostream& aStream,
                                  const DoubleTapToZoomMetrics& aUpdate);
};

/**
 * For a double tap at |aPoint|, return a ZoomTarget struct with contains a rect
 * to which the browser should zoom in response (see ZoomTarget definition for
 * more details). An empty rect means the browser should zoom out. |aDocument|
 * should be the in-process root content document for the content that was
 * tapped.
 */
ZoomTarget CalculateRectToZoomTo(
    const RefPtr<mozilla::dom::Document>& aInProcessRootContentDocument,
    const CSSPoint& aPoint, const DoubleTapToZoomMetrics& aMetrics);

}  // namespace layers
}  // namespace mozilla

#endif /* mozilla_layers_DoubleTapToZoom_h */