KHTML
SVGTextPositioningElement.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 SVGTextPositioningElement_h
00024 #define SVGTextPositioningElement_h
00025
00026 #if ENABLE(SVG)
00027 #include "SVGTextContentElement.h"
00028
00029 namespace WebCore {
00030
00031 class SVGLengthList;
00032 class SVGNumberList;
00033
00034 class SVGTextPositioningElement : public SVGTextContentElement {
00035 public:
00036 SVGTextPositioningElement(const QualifiedName&, Document*);
00037 virtual ~SVGTextPositioningElement();
00038
00039 virtual void parseMappedAttribute(MappedAttribute*);
00040
00041 bool isKnownAttribute(const QualifiedName&);
00042
00043 private:
00044 ANIMATED_PROPERTY_DECLARATIONS(SVGTextPositioningElement, SVGLengthList*, RefPtr<SVGLengthList>, X, x)
00045 ANIMATED_PROPERTY_DECLARATIONS(SVGTextPositioningElement, SVGLengthList*, RefPtr<SVGLengthList>, Y, y)
00046 ANIMATED_PROPERTY_DECLARATIONS(SVGTextPositioningElement, SVGLengthList*, RefPtr<SVGLengthList>, Dx, dx)
00047 ANIMATED_PROPERTY_DECLARATIONS(SVGTextPositioningElement, SVGLengthList*, RefPtr<SVGLengthList>, Dy, dy)
00048 ANIMATED_PROPERTY_DECLARATIONS(SVGTextPositioningElement, SVGNumberList*, RefPtr<SVGNumberList>, Rotate, rotate)
00049 };
00050
00051 }
00052
00053 #endif // ENABLE(SVG)
00054 #endif