| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2008 Rob Buis <buis@kde.org> |
| 4 * | 4 * |
| 5 * This library is free software; you can redistribute it and/or | 5 * This library is free software; you can redistribute it and/or |
| 6 * modify it under the terms of the GNU Library General Public | 6 * modify it under the terms of the GNU Library General Public |
| 7 * License as published by the Free Software Foundation; either | 7 * License as published by the Free Software Foundation; either |
| 8 * version 2 of the License, or (at your option) any later version. | 8 * version 2 of the License, or (at your option) any later version. |
| 9 * | 9 * |
| 10 * This library is distributed in the hope that it will be useful, | 10 * This library is distributed in the hope that it will be useful, |
| (...skipping 19 matching lines...) Expand all Loading... |
| 30 | 30 |
| 31 class SVGTextPositioningElement : public SVGTextContentElement { | 31 class SVGTextPositioningElement : public SVGTextContentElement { |
| 32 public: | 32 public: |
| 33 static SVGTextPositioningElement* elementFromRenderer(RenderObject*); | 33 static SVGTextPositioningElement* elementFromRenderer(RenderObject*); |
| 34 | 34 |
| 35 protected: | 35 protected: |
| 36 SVGTextPositioningElement(const QualifiedName&, Document*); | 36 SVGTextPositioningElement(const QualifiedName&, Document*); |
| 37 | 37 |
| 38 bool isSupportedAttribute(const QualifiedName&); | 38 bool isSupportedAttribute(const QualifiedName&); |
| 39 virtual void parseMappedAttribute(Attribute*); | 39 virtual void parseMappedAttribute(Attribute*); |
| 40 virtual void childrenChanged(bool changedByParser = false, Node* beforeChang
e = 0, Node* afterChange = 0, int childCountDelta = 0); | |
| 41 virtual void svgAttributeChanged(const QualifiedName&); | 40 virtual void svgAttributeChanged(const QualifiedName&); |
| 42 virtual void synchronizeProperty(const QualifiedName&); | 41 virtual void synchronizeProperty(const QualifiedName&); |
| 43 void fillPassedAttributeToPropertyTypeMap(AttributeToPropertyTypeMap&); | 42 void fillPassedAttributeToPropertyTypeMap(AttributeToPropertyTypeMap&); |
| 44 | 43 |
| 45 // Animated property declarations | 44 // Animated property declarations |
| 46 DECLARE_ANIMATED_LENGTH_LIST(X, x) | 45 DECLARE_ANIMATED_LENGTH_LIST(X, x) |
| 47 DECLARE_ANIMATED_LENGTH_LIST(Y, y) | 46 DECLARE_ANIMATED_LENGTH_LIST(Y, y) |
| 48 DECLARE_ANIMATED_LENGTH_LIST(Dx, dx) | 47 DECLARE_ANIMATED_LENGTH_LIST(Dx, dx) |
| 49 DECLARE_ANIMATED_LENGTH_LIST(Dy, dy) | 48 DECLARE_ANIMATED_LENGTH_LIST(Dy, dy) |
| 50 DECLARE_ANIMATED_NUMBER_LIST(Rotate, rotate) | 49 DECLARE_ANIMATED_NUMBER_LIST(Rotate, rotate) |
| 51 }; | 50 }; |
| 52 | 51 |
| 53 } // namespace WebCore | 52 } // namespace WebCore |
| 54 | 53 |
| 55 #endif // ENABLE(SVG) | 54 #endif // ENABLE(SVG) |
| 56 #endif | 55 #endif |
| OLD | NEW |