| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007, 2008 Nikolas Zimmermann <zimmermann@kde
.org> |
| 3 * Copyright (C) 2004, 2005, 2007 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005, 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 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 43 virtual bool supportsMarkers() const { return false; } | 43 virtual bool supportsMarkers() const { return false; } |
| 44 | 44 |
| 45 virtual PassRefPtr<CSSValue> getPresentationAttribute(const String& name); | 45 virtual PassRefPtr<CSSValue> getPresentationAttribute(const String& name); |
| 46 | 46 |
| 47 bool isKnownAttribute(const QualifiedName&); | 47 bool isKnownAttribute(const QualifiedName&); |
| 48 | 48 |
| 49 bool instanceUpdatesBlocked() const; | 49 bool instanceUpdatesBlocked() const; |
| 50 void setInstanceUpdatesBlocked(bool); | 50 void setInstanceUpdatesBlocked(bool); |
| 51 | 51 |
| 52 bool hasPendingResources() const; | 52 bool hasPendingResources() const; |
| 53 void setHasPendingResources(bool); | 53 void setHasPendingResources(); |
| 54 void clearHasPendingResourcesIfPossible(); |
| 54 | 55 |
| 55 virtual void animatedPropertyTypeForAttribute(const QualifiedName&, Vector<A
nimatedPropertyType>&); | 56 virtual void animatedPropertyTypeForAttribute(const QualifiedName&, Vector<A
nimatedPropertyType>&); |
| 56 static bool isAnimatableCSSProperty(const QualifiedName&); | 57 static bool isAnimatableCSSProperty(const QualifiedName&); |
| 57 | 58 |
| 58 virtual AffineTransform localCoordinateSpaceTransform(SVGLocatable::CTMScope
) const; | 59 virtual AffineTransform localCoordinateSpaceTransform(SVGLocatable::CTMScope
) const; |
| 59 | 60 |
| 60 virtual CSSStyleDeclaration* style() { return StyledElement::style(); } | 61 virtual CSSStyleDeclaration* style() { return StyledElement::style(); } |
| 61 virtual bool needsPendingResourceHandling() const { return true; } | 62 virtual bool needsPendingResourceHandling() const { return true; } |
| 62 | 63 |
| 63 protected: | 64 protected: |
| (...skipping 28 matching lines...) Expand all Loading... |
| 92 | 93 |
| 93 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGStyledElement) | 94 BEGIN_DECLARE_ANIMATED_PROPERTIES(SVGStyledElement) |
| 94 DECLARE_ANIMATED_STRING(ClassName, className) | 95 DECLARE_ANIMATED_STRING(ClassName, className) |
| 95 END_DECLARE_ANIMATED_PROPERTIES | 96 END_DECLARE_ANIMATED_PROPERTIES |
| 96 }; | 97 }; |
| 97 | 98 |
| 98 } // namespace WebCore | 99 } // namespace WebCore |
| 99 | 100 |
| 100 #endif // ENABLE(SVG) | 101 #endif // ENABLE(SVG) |
| 101 #endif // SVGStyledElement | 102 #endif // SVGStyledElement |
| OLD | NEW |