| 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 * Copyright (C) 2009 Apple Inc. All rights reserved. | 4 * Copyright (C) 2009 Apple Inc. All rights reserved. |
| 5 * | 5 * |
| 6 * This library is free software; you can redistribute it and/or | 6 * This library is free software; you can redistribute it and/or |
| 7 * modify it under the terms of the GNU Library General Public | 7 * modify it under the terms of the GNU Library General Public |
| 8 * License as published by the Free Software Foundation; either | 8 * License as published by the Free Software Foundation; either |
| 9 * version 2 of the License, or (at your option) any later version. | 9 * version 2 of the License, or (at your option) any later version. |
| 10 * | 10 * |
| (...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 | 49 |
| 50 class SVGElement : public Element { | 50 class SVGElement : public Element { |
| 51 public: | 51 public: |
| 52 virtual ~SVGElement(); | 52 virtual ~SVGElement(); |
| 53 | 53 |
| 54 bool isOutermostSVGSVGElement() const; | 54 bool isOutermostSVGSVGElement() const; |
| 55 | 55 |
| 56 virtual String title() const; | 56 virtual String title() const; |
| 57 bool hasRelativeLengths() const { return !m_elementsWithRelativeLengths.isEm
pty(); } | 57 bool hasRelativeLengths() const { return !m_elementsWithRelativeLengths.isEm
pty(); } |
| 58 virtual bool supportsMarkers() const { return false; } | 58 virtual bool supportsMarkers() const { return false; } |
| 59 PassRefPtr<CSSValue> getPresentationAttribute(const String& name); | 59 PassRefPtr<CSSValue> getPresentationAttribute(const AtomicString& name); |
| 60 static bool isAnimatableCSSProperty(const QualifiedName&); | 60 static bool isAnimatableCSSProperty(const QualifiedName&); |
| 61 enum CTMScope { | 61 enum CTMScope { |
| 62 NearestViewportScope, // Used by SVGGraphicsElement::getCTM() | 62 NearestViewportScope, // Used by SVGGraphicsElement::getCTM() |
| 63 ScreenScope // Used by SVGGraphicsElement::getScreenCTM() | 63 ScreenScope // Used by SVGGraphicsElement::getScreenCTM() |
| 64 }; | 64 }; |
| 65 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const; | 65 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const; |
| 66 virtual bool needsPendingResourceHandling() const { return true; } | 66 virtual bool needsPendingResourceHandling() const { return true; } |
| 67 | 67 |
| 68 bool instanceUpdatesBlocked() const; | 68 bool instanceUpdatesBlocked() const; |
| 69 void setInstanceUpdatesBlocked(bool); | 69 void setInstanceUpdatesBlocked(bool); |
| 70 | 70 |
| 71 String xmlbase() const; | 71 const AtomicString& xmlbase() const; |
| 72 void setXMLbase(const String&); | 72 void setXMLbase(const AtomicString&); |
| 73 | 73 |
| 74 String xmllang() const; | 74 const AtomicString& xmllang() const; |
| 75 void setXMLlang(const String& xmlLang); | 75 void setXMLlang(const AtomicString&); |
| 76 | 76 |
| 77 String xmlspace() const; | 77 const AtomicString& xmlspace() const; |
| 78 void setXMLspace(const String& xmlSpace); | 78 void setXMLspace(const AtomicString&); |
| 79 | 79 |
| 80 SVGSVGElement* ownerSVGElement() const; | 80 SVGSVGElement* ownerSVGElement() const; |
| 81 SVGElement* viewportElement() const; | 81 SVGElement* viewportElement() const; |
| 82 | 82 |
| 83 SVGDocumentExtensions* accessDocumentSVGExtensions(); | 83 SVGDocumentExtensions* accessDocumentSVGExtensions(); |
| 84 | 84 |
| 85 virtual bool isSVGGraphicsElement() const { return false; } | 85 virtual bool isSVGGraphicsElement() const { return false; } |
| 86 virtual bool isSVGSVGElement() const { return false; } | 86 virtual bool isSVGSVGElement() const { return false; } |
| 87 virtual bool isFilterEffect() const { return false; } | 87 virtual bool isFilterEffect() const { return false; } |
| 88 virtual bool isGradientStop() const { return false; } | 88 virtual bool isGradientStop() const { return false; } |
| (...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 249 return DefaultHash<QualifiedName>::Hash::hash(key); | 249 return DefaultHash<QualifiedName>::Hash::hash(key); |
| 250 } | 250 } |
| 251 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a
.matches(b); } | 251 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a
.matches(b); } |
| 252 }; | 252 }; |
| 253 | 253 |
| 254 DEFINE_NODE_TYPE_CASTS(SVGElement, isSVGElement()); | 254 DEFINE_NODE_TYPE_CASTS(SVGElement, isSVGElement()); |
| 255 | 255 |
| 256 } | 256 } |
| 257 | 257 |
| 258 #endif | 258 #endif |
| OLD | NEW |