gecko-dev/dom/svg/SVGAttrValueWrapper.h

54 строки
1.9 KiB
C++

/* -*- Mode: C++; tab-width: 8; indent-tabs-mode: nil; c-basic-offset: 2 -*- */
/* vim: set ts=8 sts=2 et sw=2 tw=80: */
/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#ifndef MOZILLA_SVGATTRVALUEWRAPPER_H__
#define MOZILLA_SVGATTRVALUEWRAPPER_H__
/**
* Utility wrapper for handling SVG types used inside nsAttrValue so that these
* types don't need to be exported outside the SVG module.
*/
#include "nsString.h"
class nsSVGLength2;
namespace mozilla {
class SVGAngle;
class SVGIntegerPair;
class SVGLengthList;
class SVGNumberList;
class SVGNumberPair;
class SVGPathData;
class SVGPointList;
class SVGAnimatedPreserveAspectRatio;
class SVGStringList;
class SVGTransformList;
class SVGViewBox;
class SVGAttrValueWrapper {
public:
static void ToString(const SVGAngle* aAngle, nsAString& aResult);
static void ToString(const SVGIntegerPair* aIntegerPair, nsAString& aResult);
static void ToString(const nsSVGLength2* aLength, nsAString& aResult);
static void ToString(const SVGLengthList* aLengthList, nsAString& aResult);
static void ToString(const SVGNumberList* aNumberList, nsAString& aResult);
static void ToString(const SVGNumberPair* aNumberPair, nsAString& aResult);
static void ToString(const SVGPathData* aPathData, nsAString& aResult);
static void ToString(const SVGPointList* aPointList, nsAString& aResult);
static void ToString(
const SVGAnimatedPreserveAspectRatio* aPreserveAspectRatio,
nsAString& aResult);
static void ToString(const SVGStringList* aStringList, nsAString& aResult);
static void ToString(const SVGTransformList* aTransformList,
nsAString& aResult);
static void ToString(const SVGViewBox* aViewBox, nsAString& aResult);
};
} /* namespace mozilla */
#endif // MOZILLA_SVGATTRVALUEWRAPPER_H__