This source file includes following definitions.
- m_value
- clone
- cloneForAnimation
- parse
- matrixTransform
- setValueAsString
- valueAsString
- add
- calculateAnimatedValue
- calculateDistance
#include "config.h"
#include "core/svg/SVGPoint.h"
#include "bindings/v8/ExceptionState.h"
#include "core/dom/ExceptionCode.h"
#include "core/svg/SVGAnimationElement.h"
#include "core/svg/SVGParserUtilities.h"
#include "platform/transforms/AffineTransform.h"
#include "wtf/text/StringBuilder.h"
#include "wtf/text/WTFString.h"
namespace WebCore {
SVGPoint::SVGPoint()
: SVGPropertyBase(classType())
{
}
SVGPoint::SVGPoint(const FloatPoint& point)
: SVGPropertyBase(classType())
, m_value(point)
{
}
PassRefPtr<SVGPoint> SVGPoint::clone() const
{
return SVGPoint::create(m_value);
}
PassRefPtr<SVGPropertyBase> SVGPoint::cloneForAnimation(const String& value) const
{
RefPtr<SVGPoint> point = SVGPoint::create();
point->setValueAsString(value, IGNORE_EXCEPTION);
return point.release();
}
template<typename CharType>
void SVGPoint::parse(const CharType*& ptr, const CharType* end, ExceptionState& exceptionState)
{
const CharType* start = ptr;
skipOptionalSVGSpaces(ptr, end);
float x = 0.0f;
float y = 0.0f;
bool valid = parseNumber(ptr, end, x) && parseNumber(ptr, end, y, false);
if (!valid) {
exceptionState.throwDOMException(SyntaxError, "Problem parsing point \"" + String(start, end - start) + "\"");
return;
}
skipOptionalSVGSpaces(ptr, end);
if (ptr < end) {
exceptionState.throwDOMException(SyntaxError, "Problem parsing point \"" + String(start, end - start) + "\"");
return;
}
m_value = FloatPoint(x, y);
}
FloatPoint SVGPoint::matrixTransform(const AffineTransform& transform) const
{
double newX, newY;
transform.map(static_cast<double>(x()), static_cast<double>(y()), newX, newY);
return FloatPoint::narrowPrecision(newX, newY);
}
void SVGPoint::setValueAsString(const String& string, ExceptionState& exceptionState)
{
if (string.isEmpty()) {
m_value = FloatPoint(0.0f, 0.0f);
return;
}
if (string.is8Bit()) {
const LChar* ptr = string.characters8();
const LChar* end = ptr + string.length();
parse(ptr, end, exceptionState);
return;
}
const UChar* ptr = string.characters16();
const UChar* end = ptr + string.length();
parse(ptr, end, exceptionState);
}
String SVGPoint::valueAsString() const
{
StringBuilder builder;
builder.append(String::number(x()));
builder.append(' ');
builder.append(String::number(y()));
return builder.toString();
}
void SVGPoint::add(PassRefPtr<SVGPropertyBase> other, SVGElement*)
{
ASSERT_NOT_REACHED();
}
void SVGPoint::calculateAnimatedValue(SVGAnimationElement* animationElement, float percentage, unsigned repeatCount, PassRefPtr<SVGPropertyBase> fromValue, PassRefPtr<SVGPropertyBase> toValue, PassRefPtr<SVGPropertyBase> toAtEndOfDurationValue, SVGElement*)
{
ASSERT_NOT_REACHED();
}
float SVGPoint::calculateDistance(PassRefPtr<SVGPropertyBase> to, SVGElement* contextElement)
{
ASSERT_NOT_REACHED();
return 0.0f;
}
}