| 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 20 matching lines...) Expand all Loading... |
| 31 #ifndef ViewportAnchor_h | 31 #ifndef ViewportAnchor_h |
| 32 #define ViewportAnchor_h | 32 #define ViewportAnchor_h |
| 33 | 33 |
| 34 #include "platform/geometry/FloatSize.h" | 34 #include "platform/geometry/FloatSize.h" |
| 35 #include "platform/geometry/IntPoint.h" | 35 #include "platform/geometry/IntPoint.h" |
| 36 #include "platform/geometry/IntRect.h" | 36 #include "platform/geometry/IntRect.h" |
| 37 #include "platform/geometry/LayoutRect.h" | 37 #include "platform/geometry/LayoutRect.h" |
| 38 #include "platform/heap/Handle.h" | 38 #include "platform/heap/Handle.h" |
| 39 #include "wtf/RefCounted.h" | 39 #include "wtf/RefCounted.h" |
| 40 | 40 |
| 41 namespace WebCore { | 41 namespace blink { |
| 42 class EventHandler; | 42 class EventHandler; |
| 43 class IntSize; | 43 class IntSize; |
| 44 class Node; | 44 class Node; |
| 45 } | 45 } |
| 46 | 46 |
| 47 namespace blink { | 47 namespace blink { |
| 48 | 48 |
| 49 // ViewportAnchor provides a way to anchor a viewport origin to a DOM node. | 49 // ViewportAnchor provides a way to anchor a viewport origin to a DOM node. |
| 50 // In particular, the user supplies the current viewport (in CSS coordinates) | 50 // In particular, the user supplies the current viewport (in CSS coordinates) |
| 51 // and an anchor point (in view coordinates, e.g., (0, 0) == viewport origin, | 51 // and an anchor point (in view coordinates, e.g., (0, 0) == viewport origin, |
| 52 // (0.5, 0) == viewport top center). The anchor point tracks the underlying DOM | 52 // (0.5, 0) == viewport top center). The anchor point tracks the underlying DOM |
| 53 // node; as the node moves or the view is resized, the viewport anchor maintains | 53 // node; as the node moves or the view is resized, the viewport anchor maintains |
| 54 // its orientation relative to the node, and the viewport origin maintains its | 54 // its orientation relative to the node, and the viewport origin maintains its |
| 55 // orientation relative to the anchor. | 55 // orientation relative to the anchor. |
| 56 class ViewportAnchor { | 56 class ViewportAnchor { |
| 57 STACK_ALLOCATED(); | 57 STACK_ALLOCATED(); |
| 58 public: | 58 public: |
| 59 explicit ViewportAnchor(WebCore::EventHandler* eventHandler); | 59 explicit ViewportAnchor(blink::EventHandler* eventHandler); |
| 60 | 60 |
| 61 void setAnchor(const WebCore::IntRect& viewRect, const WebCore::FloatSize& a
nchorInViewCoords); | 61 void setAnchor(const blink::IntRect& viewRect, const blink::FloatSize& ancho
rInViewCoords); |
| 62 | 62 |
| 63 WebCore::IntPoint computeOrigin(const WebCore::IntSize& currentViewSize) con
st; | 63 blink::IntPoint computeOrigin(const blink::IntSize& currentViewSize) const; |
| 64 | 64 |
| 65 private: | 65 private: |
| 66 RawPtrWillBeMember<WebCore::EventHandler> m_eventHandler; | 66 RawPtrWillBeMember<blink::EventHandler> m_eventHandler; |
| 67 | 67 |
| 68 WebCore::IntRect m_viewRect; | 68 blink::IntRect m_viewRect; |
| 69 | 69 |
| 70 RefPtrWillBeMember<WebCore::Node> m_anchorNode; | 70 RefPtrWillBeMember<blink::Node> m_anchorNode; |
| 71 WebCore::LayoutRect m_anchorNodeBounds; | 71 blink::LayoutRect m_anchorNodeBounds; |
| 72 | 72 |
| 73 WebCore::FloatSize m_anchorInViewCoords; | 73 blink::FloatSize m_anchorInViewCoords; |
| 74 WebCore::FloatSize m_anchorInNodeCoords; | 74 blink::FloatSize m_anchorInNodeCoords; |
| 75 }; | 75 }; |
| 76 | 76 |
| 77 } // namespace blink | 77 } // namespace blink |
| 78 | 78 |
| 79 #endif | 79 #endif |
| OLD | NEW |