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, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2007, 2008 Rob Buis <buis@kde.org> |
4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
5 * Copyright (C) 2009 Google, Inc. All rights reserved. | 5 * Copyright (C) 2009 Google, Inc. All rights reserved. |
6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 6 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
7 * | 7 * |
8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 | 48 |
49 void LayoutSVGContainer::layout() | 49 void LayoutSVGContainer::layout() |
50 { | 50 { |
51 ASSERT(needsLayout()); | 51 ASSERT(needsLayout()); |
52 LayoutAnalyzer::Scope analyzer(*this); | 52 LayoutAnalyzer::Scope analyzer(*this); |
53 | 53 |
54 // Allow LayoutSVGViewportContainer to update its viewport. | 54 // Allow LayoutSVGViewportContainer to update its viewport. |
55 calcViewport(); | 55 calcViewport(); |
56 | 56 |
57 // Allow LayoutSVGTransformableContainer to update its transform. | 57 // Allow LayoutSVGTransformableContainer to update its transform. |
58 bool updatedTransform = calculateLocalTransform(); | 58 unsigned updatedTransform = calculateLocalTransform(); |
59 m_didScreenScaleFactorChange = updatedTransform || SVGLayoutSupport::screenS
caleFactorChanged(parent()); | 59 m_didScreenScaleFactorChange = |
| 60 (updatedTransform & ScaleChange) || SVGLayoutSupport::screenScaleFactorC
hanged(parent()); |
60 | 61 |
61 // LayoutSVGViewportContainer needs to set the 'layout size changed' flag. | 62 // LayoutSVGViewportContainer needs to set the 'layout size changed' flag. |
62 determineIfLayoutSizeChanged(); | 63 determineIfLayoutSizeChanged(); |
63 | 64 |
64 // When hasRelativeLengths() is false, no descendants have relative lengths | 65 // When hasRelativeLengths() is false, no descendants have relative lengths |
65 // (hence no one is interested in viewport size changes). | 66 // (hence no one is interested in viewport size changes). |
66 bool layoutSizeChanged = element()->hasRelativeLengths() | 67 bool layoutSizeChanged = element()->hasRelativeLengths() |
67 && SVGLayoutSupport::layoutSizeOfNearestViewportChanged(this); | 68 && SVGLayoutSupport::layoutSizeOfNearestViewportChanged(this); |
68 | 69 |
69 SVGLayoutSupport::layoutChildren(firstChild(), false, m_didScreenScaleFactor
Change, layoutSizeChanged); | 70 SVGLayoutSupport::layoutChildren(firstChild(), false, m_didScreenScaleFactor
Change, layoutSizeChanged); |
(...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
194 updateHitTestResult(result, localLayoutPoint); | 195 updateHitTestResult(result, localLayoutPoint); |
195 if (result.addNodeToListBasedTestResult(element(), localLayoutPoint)
== StopHitTesting) | 196 if (result.addNodeToListBasedTestResult(element(), localLayoutPoint)
== StopHitTesting) |
196 return true; | 197 return true; |
197 } | 198 } |
198 } | 199 } |
199 // 16.4: "If there are no graphics elements whose relevant graphics content
is under the pointer (i.e., there is no target element), the event is not dispat
ched." | 200 // 16.4: "If there are no graphics elements whose relevant graphics content
is under the pointer (i.e., there is no target element), the event is not dispat
ched." |
200 return false; | 201 return false; |
201 } | 202 } |
202 | 203 |
203 } // namespace blink | 204 } // namespace blink |
OLD | NEW |