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 15 matching lines...) Expand all Loading... |
26 #include "core/svg/SVGElement.h" | 26 #include "core/svg/SVGElement.h" |
27 #include "core/svg/SVGURIReference.h" | 27 #include "core/svg/SVGURIReference.h" |
28 | 28 |
29 namespace WebCore { | 29 namespace WebCore { |
30 | 30 |
31 class SVGPathElement; | 31 class SVGPathElement; |
32 | 32 |
33 class SVGMPathElement FINAL : public SVGElement, | 33 class SVGMPathElement FINAL : public SVGElement, |
34 public SVGURIReference { | 34 public SVGURIReference { |
35 public: | 35 public: |
36 DEFINE_NODE_FACTORY(SVGMPathElement); | 36 DECLARE_NODE_FACTORY(SVGMPathElement); |
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 | 43 |
44 private: | 44 private: |
45 explicit SVGMPathElement(Document&); | 45 explicit SVGMPathElement(Document&); |
46 | 46 |
47 virtual void buildPendingResource() OVERRIDE; | 47 virtual void buildPendingResource() OVERRIDE; |
48 void clearResourceReferences(); | 48 void clearResourceReferences(); |
49 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; | 49 virtual InsertionNotificationRequest insertedInto(ContainerNode*) OVERRIDE; |
50 virtual void removedFrom(ContainerNode*) OVERRIDE; | 50 virtual void removedFrom(ContainerNode*) OVERRIDE; |
51 | 51 |
52 bool isSupportedAttribute(const QualifiedName&); | 52 bool isSupportedAttribute(const QualifiedName&); |
53 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 53 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
54 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; | 54 virtual void svgAttributeChanged(const QualifiedName&) OVERRIDE; |
55 | 55 |
56 virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; } | 56 virtual bool rendererIsNeeded(const RenderStyle&) OVERRIDE { return false; } |
57 void notifyParentOfPathChange(ContainerNode*); | 57 void notifyParentOfPathChange(ContainerNode*); |
58 | 58 |
59 }; | 59 }; |
60 | 60 |
61 } // namespace WebCore | 61 } // namespace WebCore |
62 | 62 |
63 #endif // SVGMPathElement_h | 63 #endif // SVGMPathElement_h |
OLD | NEW |