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. All rights reserved. | 4 * Copyright (C) 2009 Google, Inc. All rights reserved. |
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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 virtual void setNeedsBoundariesUpdate() OVERRIDE { m_needsBoundariesOrTransf
ormUpdate = true; } | 52 virtual void setNeedsBoundariesUpdate() OVERRIDE { m_needsBoundariesOrTransf
ormUpdate = true; } |
53 virtual void setNeedsTransformUpdate() OVERRIDE { m_needsBoundariesOrTransfo
rmUpdate = true; } | 53 virtual void setNeedsTransformUpdate() OVERRIDE { m_needsBoundariesOrTransfo
rmUpdate = true; } |
54 | 54 |
55 IntSize containerSize() const { return m_containerSize; } | 55 IntSize containerSize() const { return m_containerSize; } |
56 void setContainerSize(const IntSize& containerSize) | 56 void setContainerSize(const IntSize& containerSize) |
57 { | 57 { |
58 // SVGImage::draw() does a view layout prior to painting, | 58 // SVGImage::draw() does a view layout prior to painting, |
59 // and we need that layout to know of the new size otherwise | 59 // and we need that layout to know of the new size otherwise |
60 // the rendering may be incorrectly using the old size. | 60 // the rendering may be incorrectly using the old size. |
61 if (m_containerSize != containerSize) | 61 if (m_containerSize != containerSize) |
62 setNeedsLayout(); | 62 setNeedsLayoutAndFullRepaint(); |
63 m_containerSize = containerSize; | 63 m_containerSize = containerSize; |
64 } | 64 } |
65 | 65 |
66 // localToBorderBoxTransform maps local SVG viewport coordinates to local CS
S box coordinates. | 66 // localToBorderBoxTransform maps local SVG viewport coordinates to local CS
S box coordinates. |
67 const AffineTransform& localToBorderBoxTransform() const { return m_localToB
orderBoxTransform; } | 67 const AffineTransform& localToBorderBoxTransform() const { return m_localToB
orderBoxTransform; } |
68 | 68 |
69 private: | 69 private: |
70 virtual RenderObjectChildList* virtualChildren() OVERRIDE { return children(
); } | 70 virtual RenderObjectChildList* virtualChildren() OVERRIDE { return children(
); } |
71 virtual const RenderObjectChildList* virtualChildren() const OVERRIDE { retu
rn children(); } | 71 virtual const RenderObjectChildList* virtualChildren() const OVERRIDE { retu
rn children(); } |
72 | 72 |
(...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
121 bool m_isLayoutSizeChanged : 1; | 121 bool m_isLayoutSizeChanged : 1; |
122 bool m_needsBoundariesOrTransformUpdate : 1; | 122 bool m_needsBoundariesOrTransformUpdate : 1; |
123 bool m_hasBoxDecorations : 1; | 123 bool m_hasBoxDecorations : 1; |
124 }; | 124 }; |
125 | 125 |
126 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGRoot, isSVGRoot()); | 126 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGRoot, isSVGRoot()); |
127 | 127 |
128 } // namespace WebCore | 128 } // namespace WebCore |
129 | 129 |
130 #endif // RenderSVGRoot_h | 130 #endif // RenderSVGRoot_h |
OLD | NEW |