2 * Copyright (C) Research In Motion Limited 2011. All rights reserved.
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
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
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
20 #ifndef SVGLengthContext_h
21 #define SVGLengthContext_h
23 #include "core/svg/SVGUnitTypes.h"
24 #include "platform/Length.h"
25 #include "platform/geometry/FloatRect.h"
35 LengthTypeUnknown
= 0,
50 enum class SVGLengthMode
{
56 class SVGLengthContext
{
59 explicit SVGLengthContext(const SVGElement
*);
62 static FloatRect
resolveRectangle(const T
* context
, SVGUnitTypes::SVGUnitType type
, const FloatRect
& viewport
)
64 return resolveRectangle(context
, type
, viewport
, *context
->x()->currentValue(), *context
->y()->currentValue(), *context
->width()->currentValue(), *context
->height()->currentValue());
67 static FloatRect
resolveRectangle(const SVGElement
*, SVGUnitTypes::SVGUnitType
, const FloatRect
& viewport
, const SVGLength
& x
, const SVGLength
& y
, const SVGLength
& width
, const SVGLength
& height
);
68 static FloatPoint
resolvePoint(const SVGElement
*, SVGUnitTypes::SVGUnitType
, const SVGLength
& x
, const SVGLength
& y
);
69 static float resolveLength(const SVGElement
*, SVGUnitTypes::SVGUnitType
, const SVGLength
&);
71 float convertValueToUserUnits(float, SVGLengthMode
, SVGLengthType fromUnit
) const;
72 float convertValueFromUserUnits(float, SVGLengthMode
, SVGLengthType toUnit
) const;
74 float valueForLength(const UnzoomedLength
&, SVGLengthMode
= SVGLengthMode::Other
) const;
75 float valueForLength(const Length
&, const ComputedStyle
&, SVGLengthMode
= SVGLengthMode::Other
) const;
76 static float valueForLength(const Length
&, const ComputedStyle
&, float dimension
);
78 bool determineViewport(FloatSize
&) const;
81 float valueForLength(const Length
&, float zoom
, SVGLengthMode
) const;
82 static float valueForLength(const Length
&, float zoom
, float dimension
);
84 float convertValueFromUserUnitsToEXS(float value
) const;
85 float convertValueFromEXSToUserUnits(float value
) const;
87 float convertValueFromUserUnitsToCHS(float value
) const;
88 float convertValueFromCHSToUserUnits(float value
) const;
90 RawPtrWillBeMember
<const SVGElement
> m_context
;
95 #endif // SVGLengthContext_h