OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2008 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006 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 27 matching lines...) Expand all Loading... |
38 public SVGURIReference { | 38 public SVGURIReference { |
39 public: | 39 public: |
40 static PassRefPtr<SVGCursorElement> create(const QualifiedName&, const Handl
e<Document>&); | 40 static PassRefPtr<SVGCursorElement> create(const QualifiedName&, const Handl
e<Document>&); |
41 | 41 |
42 virtual ~SVGCursorElement(); | 42 virtual ~SVGCursorElement(); |
43 | 43 |
44 void addClient(SVGElement*); | 44 void addClient(SVGElement*); |
45 void removeClient(SVGElement*); | 45 void removeClient(SVGElement*); |
46 void removeReferencedElement(SVGElement*); | 46 void removeReferencedElement(SVGElement*); |
47 | 47 |
| 48 virtual void accept(Visitor* visitor) const OVERRIDE { SVGElement::accept(vi
sitor); } |
| 49 |
48 private: | 50 private: |
49 SVGCursorElement(const QualifiedName&, const Handle<Document>&); | 51 SVGCursorElement(const QualifiedName&, const Handle<Document>&); |
50 | 52 |
51 virtual bool isValid() const { return SVGTests::isValid(); } | 53 virtual bool isValid() const { return SVGTests::isValid(); } |
52 | 54 |
53 bool isSupportedAttribute(const QualifiedName&); | 55 bool isSupportedAttribute(const QualifiedName&); |
54 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; | 56 virtual void parseAttribute(const QualifiedName&, const AtomicString&) OVERR
IDE; |
55 virtual void svgAttributeChanged(const QualifiedName&); | 57 virtual void svgAttributeChanged(const QualifiedName&); |
56 | 58 |
57 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; | 59 virtual void addSubresourceAttributeURLs(ListHashSet<KURL>&) const; |
(...skipping 10 matching lines...) Expand all Loading... |
68 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } | 70 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } |
69 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } | 71 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } |
70 | 72 |
71 HashSet<SVGElement*> m_clients; | 73 HashSet<SVGElement*> m_clients; |
72 }; | 74 }; |
73 | 75 |
74 } // namespace WebCore | 76 } // namespace WebCore |
75 | 77 |
76 #endif // ENABLE(SVG) | 78 #endif // ENABLE(SVG) |
77 #endif | 79 #endif |
OLD | NEW |