Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(845)

Side by Side Diff: Source/core/svg/SVGLengthContext.h

Issue 947983002: Move zoom handling for x and y properties to svg (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: move function Created 5 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « Source/core/layout/svg/SVGPathData.cpp ('k') | Source/core/svg/SVGLengthContext.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright (C) Research In Motion Limited 2011. All rights reserved. 2 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
3 * 3 *
4 * This library is free software; you can redistribute it and/or 4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public 5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either 6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version. 7 * version 2 of the License, or (at your option) any later version.
8 * 8 *
9 * This library is distributed in the hope that it will be useful, 9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details. 12 * Library General Public License for more details.
13 * 13 *
14 * You should have received a copy of the GNU Library General Public License 14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to 15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, 16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA. 17 * Boston, MA 02110-1301, USA.
18 */ 18 */
19 19
20 #ifndef SVGLengthContext_h 20 #ifndef SVGLengthContext_h
21 #define SVGLengthContext_h 21 #define SVGLengthContext_h
22 22
23 #include "core/svg/SVGUnitTypes.h" 23 #include "core/svg/SVGUnitTypes.h"
24 #include "platform/Length.h" 24 #include "platform/Length.h"
25 #include "platform/geometry/FloatRect.h" 25 #include "platform/geometry/FloatRect.h"
26 26
27 namespace blink { 27 namespace blink {
28 28
29 class LayoutStyle;
29 class SVGElement; 30 class SVGElement;
30 class SVGLength; 31 class SVGLength;
31 32
32 enum SVGLengthType { 33 enum SVGLengthType {
33 LengthTypeUnknown = 0, 34 LengthTypeUnknown = 0,
34 LengthTypeNumber, 35 LengthTypeNumber,
35 LengthTypePercentage, 36 LengthTypePercentage,
36 LengthTypeEMS, 37 LengthTypeEMS,
37 LengthTypeEXS, 38 LengthTypeEXS,
38 LengthTypePX, 39 LengthTypePX,
(...skipping 21 matching lines...) Expand all
60 return resolveRectangle(context, type, viewport, *context->x()->currentV alue(), *context->y()->currentValue(), *context->width()->currentValue(), *conte xt->height()->currentValue()); 61 return resolveRectangle(context, type, viewport, *context->x()->currentV alue(), *context->y()->currentValue(), *context->width()->currentValue(), *conte xt->height()->currentValue());
61 } 62 }
62 63
63 static FloatRect resolveRectangle(const SVGElement*, SVGUnitTypes::SVGUnitTy pe, const FloatRect& viewport, const SVGLength& x, const SVGLength& y, const SVG Length& width, const SVGLength& height); 64 static FloatRect resolveRectangle(const SVGElement*, SVGUnitTypes::SVGUnitTy pe, const FloatRect& viewport, const SVGLength& x, const SVGLength& y, const SVG Length& width, const SVGLength& height);
64 static FloatPoint resolvePoint(const SVGElement*, SVGUnitTypes::SVGUnitType, const SVGLength& x, const SVGLength& y); 65 static FloatPoint resolvePoint(const SVGElement*, SVGUnitTypes::SVGUnitType, const SVGLength& x, const SVGLength& y);
65 static float resolveLength(const SVGElement*, SVGUnitTypes::SVGUnitType, con st SVGLength&); 66 static float resolveLength(const SVGElement*, SVGUnitTypes::SVGUnitType, con st SVGLength&);
66 67
67 float convertValueToUserUnits(float, SVGLengthMode, SVGLengthType fromUnit) const; 68 float convertValueToUserUnits(float, SVGLengthMode, SVGLengthType fromUnit) const;
68 float convertValueFromUserUnits(float, SVGLengthMode, SVGLengthType toUnit) const; 69 float convertValueFromUserUnits(float, SVGLengthMode, SVGLengthType toUnit) const;
69 70
70 float valueForLength(const Length&, SVGLengthMode = LengthModeOther) const; 71 float valueForLength(const Length&, const LayoutStyle&, SVGLengthMode = Leng thModeOther) const;
71 72
72 bool determineViewport(FloatSize&) const; 73 bool determineViewport(FloatSize&) const;
73 74
74 private: 75 private:
76 float valueForLengthWithZoom(const Length&, float, SVGLengthMode) const;
77
75 float convertValueFromUserUnitsToEMS(float value) const; 78 float convertValueFromUserUnitsToEMS(float value) const;
76 float convertValueFromEMSToUserUnits(float value) const; 79 float convertValueFromEMSToUserUnits(float value) const;
77 80
78 float convertValueFromUserUnitsToEXS(float value) const; 81 float convertValueFromUserUnitsToEXS(float value) const;
79 float convertValueFromEXSToUserUnits(float value) const; 82 float convertValueFromEXSToUserUnits(float value) const;
80 83
81 RawPtrWillBeMember<const SVGElement> m_context; 84 RawPtrWillBeMember<const SVGElement> m_context;
82 }; 85 };
83 86
84 } // namespace blink 87 } // namespace blink
85 88
86 #endif // SVGLengthContext_h 89 #endif // SVGLengthContext_h
OLDNEW
« no previous file with comments | « Source/core/layout/svg/SVGPathData.cpp ('k') | Source/core/svg/SVGLengthContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698