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 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
48 void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyName ToIdMap, const QualifiedName& attrName); | 48 void mapAttributeToCSSProperty(HashMap<StringImpl*, CSSPropertyID>* propertyName ToIdMap, const QualifiedName& attrName); |
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 OVERRIDE; | 56 virtual String title() const OVERRIDE; |
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 bool supportsMarkers() const; |
f(malita)
2014/03/19 14:58:55
This is now just a tag check and the only clients
| |
59 PassRefPtrWillBeRawPtr<CSSValue> getPresentationAttribute(const AtomicString & name); | 59 PassRefPtrWillBeRawPtr<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 AncestorScope // Used by SVGSVGElement::get{Enclosure|Intersection}List( ) | 64 AncestorScope // Used by SVGSVGElement::get{Enclosure|Intersection}List( ) |
65 }; | 65 }; |
66 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const; | 66 virtual AffineTransform localCoordinateSpaceTransform(CTMScope) const; |
67 virtual bool needsPendingResourceHandling() const { return true; } | 67 virtual bool needsPendingResourceHandling() const { return true; } |
68 | 68 |
(...skipping 157 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
226 return DefaultHash<QualifiedName>::Hash::hash(key); | 226 return DefaultHash<QualifiedName>::Hash::hash(key); |
227 } | 227 } |
228 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a .matches(b); } | 228 static bool equal(const QualifiedName& a, const QualifiedName& b) { return a .matches(b); } |
229 }; | 229 }; |
230 | 230 |
231 DEFINE_ELEMENT_TYPE_CASTS(SVGElement, isSVGElement()); | 231 DEFINE_ELEMENT_TYPE_CASTS(SVGElement, isSVGElement()); |
232 | 232 |
233 } | 233 } |
234 | 234 |
235 #endif | 235 #endif |
OLD | NEW |