OLD | NEW |
1 /* | 1 /* |
2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005 Nikolas Zimmermann <zimmermann@kde.org> |
3 * Copyright (C) 2004, 2005, 2006, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 2006, 2007 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 10 matching lines...) Expand all Loading... |
21 #ifndef SVGStyleElement_h | 21 #ifndef SVGStyleElement_h |
22 #define SVGStyleElement_h | 22 #define SVGStyleElement_h |
23 | 23 |
24 #if ENABLE(SVG) | 24 #if ENABLE(SVG) |
25 #include "SVGElement.h" | 25 #include "SVGElement.h" |
26 #include "SVGLangSpace.h" | 26 #include "SVGLangSpace.h" |
27 #include "StyleElement.h" | 27 #include "StyleElement.h" |
28 | 28 |
29 namespace WebCore { | 29 namespace WebCore { |
30 | 30 |
31 class SVGStyleElement : public SVGElement | 31 class SVGStyleElement FINAL : public SVGElement |
32 , public SVGLangSpace | 32 , public SVGLangSpace |
33 , public StyleElement { | 33 , public StyleElement { |
34 public: | 34 public: |
35 static PassRefPtr<SVGStyleElement> create(const QualifiedName&, Document*, b
ool createdByParser); | 35 static PassRefPtr<SVGStyleElement> create(const QualifiedName&, Document*, b
ool createdByParser); |
36 virtual ~SVGStyleElement(); | 36 virtual ~SVGStyleElement(); |
37 | 37 |
38 using StyleElement::sheet; | 38 using StyleElement::sheet; |
39 | 39 |
40 bool disabled() const; | 40 bool disabled() const; |
41 void setDisabled(bool); | 41 void setDisabled(bool); |
42 | 42 |
43 virtual const AtomicString& type() const; | 43 virtual const AtomicString& type() const; |
(...skipping 21 matching lines...) Expand all Loading... |
65 virtual void startLoadingDynamicSheet() { StyleElement::startLoadingDynamicS
heet(document()); } | 65 virtual void startLoadingDynamicSheet() { StyleElement::startLoadingDynamicS
heet(document()); } |
66 virtual Timer<SVGElement>* svgLoadEventTimer() OVERRIDE { return &m_svgLoadE
ventTimer; } | 66 virtual Timer<SVGElement>* svgLoadEventTimer() OVERRIDE { return &m_svgLoadE
ventTimer; } |
67 | 67 |
68 Timer<SVGElement> m_svgLoadEventTimer; | 68 Timer<SVGElement> m_svgLoadEventTimer; |
69 }; | 69 }; |
70 | 70 |
71 } // namespace WebCore | 71 } // namespace WebCore |
72 | 72 |
73 #endif // ENABLE(SVG) | 73 #endif // ENABLE(SVG) |
74 #endif // SVGStyleElement_h | 74 #endif // SVGStyleElement_h |
OLD | NEW |