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

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

Issue 896773002: [svg2] Make 'x' and 'y' presentation attributes (Closed) Base URL: https://chromium.googlesource.com/chromium/blink.git@master
Patch Set: rebase 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/svg/SVGLength.h ('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/geometry/FloatRect.h" 25 #include "platform/geometry/FloatRect.h"
25 26
26 namespace blink { 27 namespace blink {
27 28
28 class ExceptionState; 29 class ExceptionState;
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,
(...skipping 23 matching lines...) Expand all
57 template<typename T> 58 template<typename T>
58 static FloatRect resolveRectangle(const T* context, SVGUnitTypes::SVGUnitTyp e type, const FloatRect& viewport) 59 static FloatRect resolveRectangle(const T* context, SVGUnitTypes::SVGUnitTyp e type, const FloatRect& viewport)
59 { 60 {
60 return SVGLengthContext::resolveRectangle(context, type, viewport, conte xt->x()->currentValue(), context->y()->currentValue(), context->width()->current Value(), context->height()->currentValue()); 61 return SVGLengthContext::resolveRectangle(context, type, viewport, conte xt->x()->currentValue(), context->y()->currentValue(), context->width()->current Value(), context->height()->currentValue());
61 } 62 }
62 63
63 static FloatRect resolveRectangle(const SVGElement*, SVGUnitTypes::SVGUnitTy pe, const FloatRect& viewport, PassRefPtrWillBeRawPtr<SVGLength> x, PassRefPtrWi llBeRawPtr<SVGLength> y, PassRefPtrWillBeRawPtr<SVGLength> width, PassRefPtrWill BeRawPtr<SVGLength> height); 64 static FloatRect resolveRectangle(const SVGElement*, SVGUnitTypes::SVGUnitTy pe, const FloatRect& viewport, PassRefPtrWillBeRawPtr<SVGLength> x, PassRefPtrWi llBeRawPtr<SVGLength> y, PassRefPtrWillBeRawPtr<SVGLength> width, PassRefPtrWill BeRawPtr<SVGLength> height);
64 static FloatPoint resolvePoint(const SVGElement*, SVGUnitTypes::SVGUnitType, PassRefPtrWillBeRawPtr<SVGLength> x, PassRefPtrWillBeRawPtr<SVGLength> y); 65 static FloatPoint resolvePoint(const SVGElement*, SVGUnitTypes::SVGUnitType, PassRefPtrWillBeRawPtr<SVGLength> x, PassRefPtrWillBeRawPtr<SVGLength> y);
65 static float resolveLength(const SVGElement*, SVGUnitTypes::SVGUnitType, Pas sRefPtrWillBeRawPtr<SVGLength>); 66 static float resolveLength(const SVGElement*, SVGUnitTypes::SVGUnitType, Pas sRefPtrWillBeRawPtr<SVGLength>);
66 67
68 float valueForLength(const Length&, SVGLengthMode = LengthModeOther);
69
67 float convertValueToUserUnits(float, SVGLengthMode, SVGLengthType fromUnit, ExceptionState&) const; 70 float convertValueToUserUnits(float, SVGLengthMode, SVGLengthType fromUnit, ExceptionState&) const;
fs 2015/02/06 12:28:53 If https://codereview.chromium.org/901193002/ land
68 float convertValueFromUserUnits(float, SVGLengthMode, SVGLengthType toUnit, ExceptionState&) const; 71 float convertValueFromUserUnits(float, SVGLengthMode, SVGLengthType toUnit, ExceptionState&) const;
69 72
70 bool determineViewport(FloatSize&) const; 73 bool determineViewport(FloatSize&) const;
71 74
72 private: 75 private:
73 float convertValueFromUserUnitsToPercentage(float value, SVGLengthMode, Exce ptionState&) const; 76 float convertValueFromUserUnitsToPercentage(float value, SVGLengthMode, Exce ptionState&) const;
74 float convertValueFromPercentageToUserUnits(float value, SVGLengthMode, Exce ptionState&) const; 77 float convertValueFromPercentageToUserUnits(float value, SVGLengthMode, Exce ptionState&) const;
75 static float convertValueFromPercentageToUserUnits(float value, SVGLengthMod e, const FloatSize& viewportSize); 78 static float convertValueFromPercentageToUserUnits(float value, SVGLengthMod e, const FloatSize& viewportSize);
76 static float convertValueFromPercentageToUserUnits(const SVGLength& value, c onst FloatSize& viewportSize); 79 static float convertValueFromPercentageToUserUnits(const SVGLength& value, c onst FloatSize& viewportSize);
77 80
78 float convertValueFromUserUnitsToEMS(float value, ExceptionState&) const; 81 float convertValueFromUserUnitsToEMS(float value, ExceptionState&) const;
79 float convertValueFromEMSToUserUnits(float value, ExceptionState&) const; 82 float convertValueFromEMSToUserUnits(float value, ExceptionState&) const;
80 83
81 float convertValueFromUserUnitsToEXS(float value, ExceptionState&) const; 84 float convertValueFromUserUnitsToEXS(float value, ExceptionState&) const;
82 float convertValueFromEXSToUserUnits(float value, ExceptionState&) const; 85 float convertValueFromEXSToUserUnits(float value, ExceptionState&) const;
83 86
84 RawPtrWillBeMember<const SVGElement> m_context; 87 RawPtrWillBeMember<const SVGElement> m_context;
85 }; 88 };
86 89
87 } // namespace blink 90 } // namespace blink
88 91
89 #endif // SVGLengthContext_h 92 #endif // SVGLengthContext_h
OLDNEW
« no previous file with comments | « Source/core/svg/SVGLength.h ('k') | Source/core/svg/SVGLengthContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698