OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Copyright (C) 2013 Google Inc. All rights reserved. | 2 * Copyright (C) 2013 Google Inc. All rights reserved. |
3 * | 3 * |
4 * Redistribution and use in source and binary forms, with or without | 4 * Redistribution and use in source and binary forms, with or without |
5 * modification, are permitted provided that the following conditions are | 5 * modification, are permitted provided that the following conditions are |
6 * met: | 6 * met: |
7 * | 7 * |
8 * * Redistributions of source code must retain the above copyright | 8 * * Redistributions of source code must retain the above copyright |
9 * notice, this list of conditions and the following disclaimer. | 9 * notice, this list of conditions and the following disclaimer. |
10 * * Redistributions in binary form must reproduce the above | 10 * * Redistributions in binary form must reproduce the above |
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
49 // and an anchor point (in view coordinates, e.g., (0, 0) == viewport origin, | 49 // and an anchor point (in view coordinates, e.g., (0, 0) == viewport origin, |
50 // (0.5, 0) == viewport top center). The anchor point tracks the underlying DOM | 50 // (0.5, 0) == viewport top center). The anchor point tracks the underlying DOM |
51 // node; as the node moves or the view is resized, the viewport anchor maintains | 51 // node; as the node moves or the view is resized, the viewport anchor maintains |
52 // its orientation relative to the node, and the viewport origin maintains its | 52 // its orientation relative to the node, and the viewport origin maintains its |
53 // orientation relative to the anchor. | 53 // orientation relative to the anchor. |
54 class ViewportAnchor { | 54 class ViewportAnchor { |
55 STACK_ALLOCATED(); | 55 STACK_ALLOCATED(); |
56 public: | 56 public: |
57 explicit ViewportAnchor(EventHandler*); | 57 explicit ViewportAnchor(EventHandler*); |
58 | 58 |
59 void setAnchor(const IntRect& viewRect, const FloatSize& anchorInViewCoords) ; | 59 void setAnchor(const IntRect& innerViewRect, const IntRect& outerViewRect, c onst FloatSize& anchorInViewCoords); |
60 | 60 |
61 IntPoint computeOrigin(const IntSize& currentViewSize) const; | 61 IntPoint computeInnerViewportOrigin(const IntSize& innerSize) const; |
62 | |
63 IntPoint computeOuterViewportOrigin(const IntPoint& innerOrigin, const IntSi ze& outerSize) const; | |
aelias_OOO_until_Jul13
2014/09/10 01:46:24
How about merging these two functions into:
void
timav
2014/09/10 18:22:40
Will do.
| |
62 | 64 |
63 private: | 65 private: |
64 RawPtrWillBeMember<EventHandler> m_eventHandler; | 66 RawPtrWillBeMember<EventHandler> m_eventHandler; |
65 | 67 |
66 IntRect m_viewRect; | 68 IntRect m_viewRect; |
67 | 69 |
68 RefPtrWillBeMember<Node> m_anchorNode; | 70 RefPtrWillBeMember<Node> m_anchorNode; |
69 LayoutRect m_anchorNodeBounds; | 71 LayoutRect m_anchorNodeBounds; |
70 | 72 |
71 FloatSize m_anchorInViewCoords; | 73 FloatSize m_anchorInViewCoords; |
72 FloatSize m_anchorInNodeCoords; | 74 FloatSize m_anchorInNodeCoords; |
75 FloatSize m_outerInInnerCoords; | |
aelias_OOO_until_Jul13
2014/09/10 01:46:24
Please rename this to m_normalizedPinchViewportOff
timav
2014/09/10 18:22:40
Yes. The sign was positive in the beginning, but I
| |
73 }; | 76 }; |
74 | 77 |
75 } // namespace blink | 78 } // namespace blink |
76 | 79 |
77 #endif | 80 #endif |
OLD | NEW |