KHTML
SVGTransformList.h
Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023 #ifndef SVGTransformList_h
00024 #define SVGTransformList_h
00025
00026 #if ENABLE(SVG)
00027 #include "SVGList.h"
00028 #include "SVGTransform.h"
00029 #include <wtf/PassRefPtr.h>
00030
00031 namespace WebCore {
00032
00033 class SVGTransformList : public SVGPODList<SVGTransform> {
00034 public:
00035 static PassRefPtr<SVGTransformList> create(const QualifiedName& attributeName) { return adoptRef(new SVGTransformList(attributeName)); }
00036 virtual ~SVGTransformList();
00037
00038 SVGTransform createSVGTransformFromMatrix(const AffineTransform&) const;
00039 SVGTransform consolidate();
00040
00041
00042 SVGTransform concatenate() const;
00043 SVGTransform concatenateForType(SVGTransform::SVGTransformType) const;
00044
00045 private:
00046 SVGTransformList(const QualifiedName&);
00047 };
00048
00049 }
00050
00051 #endif // ENABLE(SVG)
00052 #endif // SVGTransformList_h