| 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 14 matching lines...) Expand all Loading... |
| 25 #include "SVGAnimatedBoolean.h" | 25 #include "SVGAnimatedBoolean.h" |
| 26 #include "SVGAnimatedLength.h" | 26 #include "SVGAnimatedLength.h" |
| 27 #include "SVGAnimatedString.h" | 27 #include "SVGAnimatedString.h" |
| 28 #include "SVGElement.h" | 28 #include "SVGElement.h" |
| 29 #include "SVGExternalResourcesRequired.h" | 29 #include "SVGExternalResourcesRequired.h" |
| 30 #include "SVGTests.h" | 30 #include "SVGTests.h" |
| 31 #include "SVGURIReference.h" | 31 #include "SVGURIReference.h" |
| 32 | 32 |
| 33 namespace WebCore { | 33 namespace WebCore { |
| 34 | 34 |
| 35 class SVGCursorElement : public SVGElement, | 35 class SVGCursorElement FINAL : public SVGElement, |
| 36 public SVGTests, | 36 public SVGTests, |
| 37 public SVGExternalResourcesRequired, | 37 public SVGExternalResourcesRequired, |
| 38 public SVGURIReference { | 38 public SVGURIReference { |
| 39 public: | 39 public: |
| 40 static PassRefPtr<SVGCursorElement> create(const QualifiedName&, Document*); | 40 static PassRefPtr<SVGCursorElement> create(const QualifiedName&, 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 private: | 48 private: |
| (...skipping 19 matching lines...) Expand all Loading... |
| 68 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } | 68 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } |
| 69 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } | 69 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } |
| 70 | 70 |
| 71 HashSet<SVGElement*> m_clients; | 71 HashSet<SVGElement*> m_clients; |
| 72 }; | 72 }; |
| 73 | 73 |
| 74 } // namespace WebCore | 74 } // namespace WebCore |
| 75 | 75 |
| 76 #endif // ENABLE(SVG) | 76 #endif // ENABLE(SVG) |
| 77 #endif | 77 #endif |
| OLD | NEW |