Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2009 Google, Inc. | 4 * Copyright (C) 2009 Google, Inc. |
| 5 * Copyright (C) 2009 Apple Inc. All rights reserved. | 5 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 6 * | 6 * |
| 7 * This library is free software; you can redistribute it and/or | 7 * This library is free software; you can redistribute it and/or |
| 8 * modify it under the terms of the GNU Library General Public | 8 * modify it under the terms of the GNU Library General Public |
| 9 * License as published by the Free Software Foundation; either | 9 * License as published by the Free Software Foundation; either |
| 10 * version 2 of the License, or (at your option) any later version. | 10 * version 2 of the License, or (at your option) any later version. |
| (...skipping 17 matching lines...) Expand all Loading... | |
| 28 namespace blink { | 28 namespace blink { |
| 29 | 29 |
| 30 // This is used for non-root <svg> elements and <marker> elements, neither of wh ich are SVGTransformable | 30 // This is used for non-root <svg> elements and <marker> elements, neither of wh ich are SVGTransformable |
| 31 // thus we inherit from RenderSVGContainer instead of RenderSVGTransformableCont ainer | 31 // thus we inherit from RenderSVGContainer instead of RenderSVGTransformableCont ainer |
| 32 class RenderSVGViewportContainer FINAL : public RenderSVGContainer { | 32 class RenderSVGViewportContainer FINAL : public RenderSVGContainer { |
| 33 public: | 33 public: |
| 34 explicit RenderSVGViewportContainer(SVGElement*); | 34 explicit RenderSVGViewportContainer(SVGElement*); |
| 35 FloatRect viewport() const { return m_viewport; } | 35 FloatRect viewport() const { return m_viewport; } |
| 36 | 36 |
| 37 bool isLayoutSizeChanged() const { return m_isLayoutSizeChanged; } | 37 bool isLayoutSizeChanged() const { return m_isLayoutSizeChanged; } |
| 38 virtual bool didTransformToRootUpdate() OVERRIDE { return m_didTransformToRo otUpdate; } | 38 virtual bool didTransformToRootUpdate() const OVERRIDE { return m_didTransfo rmToRootUpdate; } |
| 39 | 39 |
| 40 virtual void determineIfLayoutSizeChanged() OVERRIDE; | 40 virtual void determineIfLayoutSizeChanged() OVERRIDE; |
| 41 virtual void setNeedsTransformUpdate() OVERRIDE { m_needsTransformUpdate = t rue; } | 41 virtual void setNeedsTransformUpdate() OVERRIDE { m_needsTransformUpdate = t rue; } |
| 42 | 42 |
| 43 virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE; | 43 virtual void paint(PaintInfo&, const LayoutPoint&) OVERRIDE; |
| 44 | 44 |
| 45 virtual void clearPaintInvalidationState() OVERRIDE; | |
|
Julien - ping for review
2014/07/23 18:47:39
This should be private as we assume people will ca
Xianzhu
2014/07/23 19:05:08
Done.
| |
| 46 | |
| 45 private: | 47 private: |
| 46 virtual bool isSVGViewportContainer() const OVERRIDE { return true; } | 48 virtual bool isSVGViewportContainer() const OVERRIDE { return true; } |
| 47 virtual const char* renderName() const OVERRIDE { return "RenderSVGViewportC ontainer"; } | 49 virtual const char* renderName() const OVERRIDE { return "RenderSVGViewportC ontainer"; } |
| 48 | 50 |
| 49 AffineTransform viewportTransform() const; | 51 AffineTransform viewportTransform() const; |
| 50 virtual const AffineTransform& localToParentTransform() const OVERRIDE { ret urn m_localToParentTransform; } | 52 virtual const AffineTransform& localToParentTransform() const OVERRIDE { ret urn m_localToParentTransform; } |
| 51 | 53 |
| 52 virtual void calcViewport() OVERRIDE; | 54 virtual void calcViewport() OVERRIDE; |
| 53 virtual bool calculateLocalTransform() OVERRIDE; | 55 virtual bool calculateLocalTransform() OVERRIDE; |
| 54 | 56 |
| 55 virtual void applyViewportClip(PaintInfo&) OVERRIDE; | 57 virtual void applyViewportClip(PaintInfo&) OVERRIDE; |
| 56 virtual bool pointIsInsideViewportClip(const FloatPoint& pointInParent) OVER RIDE; | 58 virtual bool pointIsInsideViewportClip(const FloatPoint& pointInParent) OVER RIDE; |
| 57 | 59 |
| 60 #if ENABLE(ASSERT) | |
| 61 virtual bool paintInvalidationStateIsDirty() const OVERRIDE { return Render SVGContainer::paintInvalidationStateIsDirty() || m_didTransformToRootUpdate; } | |
| 62 #endif | |
| 63 | |
| 58 FloatRect m_viewport; | 64 FloatRect m_viewport; |
| 59 mutable AffineTransform m_localToParentTransform; | 65 mutable AffineTransform m_localToParentTransform; |
| 60 bool m_didTransformToRootUpdate : 1; | 66 bool m_didTransformToRootUpdate : 1; |
| 61 bool m_isLayoutSizeChanged : 1; | 67 bool m_isLayoutSizeChanged : 1; |
| 62 bool m_needsTransformUpdate : 1; | 68 bool m_needsTransformUpdate : 1; |
| 63 }; | 69 }; |
| 64 | 70 |
| 65 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGViewportContainer, isSVGViewportContain er()); | 71 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGViewportContainer, isSVGViewportContain er()); |
| 66 | 72 |
| 67 } // namespace blink | 73 } // namespace blink |
| 68 | 74 |
| 69 #endif // RenderSVGViewportContainer_h | 75 #endif // RenderSVGViewportContainer_h |
| OLD | NEW |