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

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

Issue 983103003: Use Length for the stroke-width property in SVGLayoutStyle (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: lengthSetterForProperty Created 5 years, 9 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 | Annotate | Revision Log
« no previous file with comments | « Source/core/svg/RadialGradientAttributes.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
(...skipping 11 matching lines...) Expand all
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 LayoutStyle;
30 class SVGElement; 30 class SVGElement;
31 class SVGLength; 31 class SVGLength;
32 class UnzoomedLength;
32 33
33 enum SVGLengthType { 34 enum SVGLengthType {
34 LengthTypeUnknown = 0, 35 LengthTypeUnknown = 0,
35 LengthTypeNumber, 36 LengthTypeNumber,
36 LengthTypePercentage, 37 LengthTypePercentage,
37 LengthTypeEMS, 38 LengthTypeEMS,
38 LengthTypeEXS, 39 LengthTypeEXS,
39 LengthTypePX, 40 LengthTypePX,
40 LengthTypeCM, 41 LengthTypeCM,
41 LengthTypeMM, 42 LengthTypeMM,
(...skipping 19 matching lines...) Expand all
61 return resolveRectangle(context, type, viewport, *context->x()->currentV alue(), *context->y()->currentValue(), *context->width()->currentValue(), *conte xt->height()->currentValue()); 62 return resolveRectangle(context, type, viewport, *context->x()->currentV alue(), *context->y()->currentValue(), *context->width()->currentValue(), *conte xt->height()->currentValue());
62 } 63 }
63 64
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); 65 static FloatRect resolveRectangle(const SVGElement*, SVGUnitTypes::SVGUnitTy pe, const FloatRect& viewport, const SVGLength& x, const SVGLength& y, const SVG Length& width, const SVGLength& height);
65 static FloatPoint resolvePoint(const SVGElement*, SVGUnitTypes::SVGUnitType, const SVGLength& x, const SVGLength& y); 66 static FloatPoint resolvePoint(const SVGElement*, SVGUnitTypes::SVGUnitType, const SVGLength& x, const SVGLength& y);
66 static float resolveLength(const SVGElement*, SVGUnitTypes::SVGUnitType, con st SVGLength&); 67 static float resolveLength(const SVGElement*, SVGUnitTypes::SVGUnitType, con st SVGLength&);
67 68
68 float convertValueToUserUnits(float, SVGLengthMode, SVGLengthType fromUnit) const; 69 float convertValueToUserUnits(float, SVGLengthMode, SVGLengthType fromUnit) const;
69 float convertValueFromUserUnits(float, SVGLengthMode, SVGLengthType toUnit) const; 70 float convertValueFromUserUnits(float, SVGLengthMode, SVGLengthType toUnit) const;
70 71
72 float valueForLength(const UnzoomedLength&, SVGLengthMode = SVGLengthMode::O ther) const;
71 float valueForLength(const Length&, const LayoutStyle&, SVGLengthMode = SVGL engthMode::Other) const; 73 float valueForLength(const Length&, const LayoutStyle&, SVGLengthMode = SVGL engthMode::Other) const;
72 static float valueForLength(const Length&, const LayoutStyle&, float dimensi on); 74 static float valueForLength(const Length&, const LayoutStyle&, float dimensi on);
73 75
74 bool determineViewport(FloatSize&) const; 76 bool determineViewport(FloatSize&) const;
75 77
76 private: 78 private:
79 float valueForLength(const Length&, float zoom, SVGLengthMode) const;
80 static float valueForLength(const Length&, float zoom, float dimension);
81
77 float convertValueFromUserUnitsToEMS(float value) const; 82 float convertValueFromUserUnitsToEMS(float value) const;
78 float convertValueFromEMSToUserUnits(float value) const; 83 float convertValueFromEMSToUserUnits(float value) const;
79 84
80 float convertValueFromUserUnitsToEXS(float value) const; 85 float convertValueFromUserUnitsToEXS(float value) const;
81 float convertValueFromEXSToUserUnits(float value) const; 86 float convertValueFromEXSToUserUnits(float value) const;
82 87
83 RawPtrWillBeMember<const SVGElement> m_context; 88 RawPtrWillBeMember<const SVGElement> m_context;
84 }; 89 };
85 90
86 } // namespace blink 91 } // namespace blink
87 92
88 #endif // SVGLengthContext_h 93 #endif // SVGLengthContext_h
OLDNEW
« no previous file with comments | « Source/core/svg/RadialGradientAttributes.h ('k') | Source/core/svg/SVGLengthContext.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698