OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 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) Research In Motion Limited 2010. All rights reserved. | 5 * Copyright (C) Research In Motion Limited 2010. 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 87 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
98 return ctm; | 98 return ctm; |
99 } | 99 } |
100 | 100 |
101 AffineTransform SVGLocatable::getTransformToElement(SVGElement* target, Exceptio
nCode& ec, StyleUpdateStrategy styleUpdateStrategy) | 101 AffineTransform SVGLocatable::getTransformToElement(SVGElement* target, Exceptio
nCode& ec, StyleUpdateStrategy styleUpdateStrategy) |
102 { | 102 { |
103 AffineTransform ctm = getCTM(styleUpdateStrategy); | 103 AffineTransform ctm = getCTM(styleUpdateStrategy); |
104 | 104 |
105 if (target && target->isSVGGraphicsElement()) { | 105 if (target && target->isSVGGraphicsElement()) { |
106 AffineTransform targetCTM = toSVGGraphicsElement(target)->getCTM(styleUp
dateStrategy); | 106 AffineTransform targetCTM = toSVGGraphicsElement(target)->getCTM(styleUp
dateStrategy); |
107 if (!targetCTM.isInvertible()) { | 107 if (!targetCTM.isInvertible()) { |
108 ec = INVALID_STATE_ERR; | 108 ec = InvalidStateError; |
109 return ctm; | 109 return ctm; |
110 } | 110 } |
111 ctm = targetCTM.inverse() * ctm; | 111 ctm = targetCTM.inverse() * ctm; |
112 } | 112 } |
113 | 113 |
114 return ctm; | 114 return ctm; |
115 } | 115 } |
116 | 116 |
117 } | 117 } |
OLD | NEW |