OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005, 2007, 2008 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2007, 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 12 matching lines...) Expand all Loading... |
23 | 23 |
24 #if ENABLE(SVG) | 24 #if ENABLE(SVG) |
25 #include "SVGAnimatedBoolean.h" | 25 #include "SVGAnimatedBoolean.h" |
26 #include "SVGExternalResourcesRequired.h" | 26 #include "SVGExternalResourcesRequired.h" |
27 #include "SVGLangSpace.h" | 27 #include "SVGLangSpace.h" |
28 #include "SVGStyledTransformableElement.h" | 28 #include "SVGStyledTransformableElement.h" |
29 #include "SVGTests.h" | 29 #include "SVGTests.h" |
30 | 30 |
31 namespace WebCore { | 31 namespace WebCore { |
32 | 32 |
33 class SVGGElement : public SVGStyledTransformableElement, | 33 class SVGGElement FINAL : public SVGStyledTransformableElement, |
34 public SVGTests, | 34 public SVGTests, |
35 public SVGLangSpace, | 35 public SVGLangSpace, |
36 public SVGExternalResourcesRequired { | 36 public SVGExternalResourcesRequired { |
37 public: | 37 public: |
38 static PassRefPtr<SVGGElement> create(const QualifiedName&, Document*); | 38 static PassRefPtr<SVGGElement> create(const QualifiedName&, Document*); |
39 | 39 |
40 protected: | 40 protected: |
41 SVGGElement(const QualifiedName&, Document*, ConstructionType = CreateSVGEle
ment); | 41 SVGGElement(const QualifiedName&, Document*, ConstructionType = CreateSVGEle
ment); |
42 | 42 |
43 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); | 43 virtual RenderObject* createRenderer(RenderArena*, RenderStyle*); |
44 | 44 |
45 private: | 45 private: |
46 virtual bool isValid() const { return SVGTests::isValid(); } | 46 virtual bool isValid() const { return SVGTests::isValid(); } |
(...skipping 12 matching lines...) Expand all Loading... |
59 // SVGTests | 59 // SVGTests |
60 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe
atures(this); } | 60 virtual void synchronizeRequiredFeatures() { SVGTests::synchronizeRequiredFe
atures(this); } |
61 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } | 61 virtual void synchronizeRequiredExtensions() { SVGTests::synchronizeRequired
Extensions(this); } |
62 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } | 62 virtual void synchronizeSystemLanguage() { SVGTests::synchronizeSystemLangua
ge(this); } |
63 }; | 63 }; |
64 | 64 |
65 } // namespace WebCore | 65 } // namespace WebCore |
66 | 66 |
67 #endif // ENABLE(SVG) | 67 #endif // ENABLE(SVG) |
68 #endif | 68 #endif |
OLD | NEW |