OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> | 2 * Copyright (C) 2007 Eric Seidel <eric@webkit.org> |
3 * | 3 * |
4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
8 * | 8 * |
9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
(...skipping 22 matching lines...) Expand all Loading... |
33 class SVGMPathElement FINAL : public SVGElement, | 33 class SVGMPathElement FINAL : public SVGElement, |
34 public SVGURIReference { | 34 public SVGURIReference { |
35 public: | 35 public: |
36 static PassRefPtr<SVGMPathElement> create(Document&); | 36 static PassRefPtr<SVGMPathElement> create(Document&); |
37 | 37 |
38 virtual ~SVGMPathElement(); | 38 virtual ~SVGMPathElement(); |
39 | 39 |
40 SVGPathElement* pathElement(); | 40 SVGPathElement* pathElement(); |
41 | 41 |
42 void targetPathChanged(); | 42 void targetPathChanged(); |
| 43 SVGAnimatedString* href() { return m_href.get(); } |
43 | 44 |
44 private: | 45 private: |
45 explicit SVGMPathElement(Document&); | 46 explicit SVGMPathElement(Document&); |
46 | 47 |
47 virtual void buildPendingResource() OVERRIDE; | 48 virtual void buildPendingResource() OVERRIDE; |
48 void clearResourceReferences(); | 49 void clearResourceReferences(); |
49 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 50 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
50 virtual void removedFrom(ContainerNode*) OVERRIDE; | 51 virtual void removedFrom(ContainerNode*) OVERRIDE; |
51 | 52 |
52 bool isSupportedAttribute(const QualifiedName&); | 53 bool isSupportedAttribute(const QualifiedName&); |
53 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 54 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
54 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; | 55 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; |
55 | 56 |
56 virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; } | 57 virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; } |
57 void notifyParentOfPathChange(ContainerNode*); | 58 void notifyParentOfPathChange(ContainerNode*); |
58 | 59 |
| 60 RefPtr<SVGAnimatedString> m_href; |
59 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGMPathElement) | 61 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGMPathElement) |
60 DECLARE_ANIMATED_STRING(Href, href) | |
61 END_DECLARE_ANIMATED_PROPERTIES | 62 END_DECLARE_ANIMATED_PROPERTIES |
62 }; | 63 }; |
63 | 64 |
64 DEFINE_NODE_TYPE_CASTS(SVGMPathElement, hasTagName(SVGNames::mpathTag)); | 65 DEFINE_NODE_TYPE_CASTS(SVGMPathElement, hasTagName(SVGNames::mpathTag)); |
65 | 66 |
66 } // namespace WebCore | 67 } // namespace WebCore |
67 | 68 |
68 #endif // SVGMPathElement_h | 69 #endif // SVGMPathElement_h |
OLD | NEW |