| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2004, 2005, 2006, 2007 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> | 3 * Copyright (C) 2004, 2005 Rob Buis <buis@kde.org> |
| 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> | 4 * Copyright (C) 2005 Eric Seidel <eric@webkit.org> |
| 5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> | 5 * Copyright (C) 2009 Dirk Schulze <krit@webkit.org> |
| 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 6 * Copyright (C) Research In Motion Limited 2010. All rights reserved. |
| 7 * | 7 * |
| 8 * This library is free software; you can redistribute it and/or | 8 * This library is free software; you can redistribute it and/or |
| 9 * modify it under the terms of the GNU Library General Public | 9 * modify it under the terms of the GNU Library General Public |
| 10 * License as published by the Free Software Foundation; either | 10 * License as published by the Free Software Foundation; either |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 virtual void destroy() OVERRIDE; | 57 virtual void destroy() OVERRIDE; |
| 58 | 58 |
| 59 virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE; | 59 virtual bool isChildAllowed(RenderObject*, RenderStyle*) const OVERRIDE; |
| 60 | 60 |
| 61 virtual const char* renderName() const OVERRIDE { return "RenderSVGResourceF
ilter"; } | 61 virtual const char* renderName() const OVERRIDE { return "RenderSVGResourceF
ilter"; } |
| 62 virtual bool isSVGResourceFilter() const OVERRIDE { return true; } | 62 virtual bool isSVGResourceFilter() const OVERRIDE { return true; } |
| 63 | 63 |
| 64 virtual void removeAllClientsFromCache(bool markForInvalidation = true) OVER
RIDE; | 64 virtual void removeAllClientsFromCache(bool markForInvalidation = true) OVER
RIDE; |
| 65 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation =
true) OVERRIDE; | 65 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation =
true) OVERRIDE; |
| 66 | 66 |
| 67 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, u
nsigned short resourceMode) OVERRIDE; | 67 bool prepareEffect(RenderObject*, RenderStyle*, GraphicsContext*&); |
| 68 virtual void postApplyResource(RenderObject*, GraphicsContext*&) OVERRIDE; | 68 void finishEffect(RenderObject*, GraphicsContext*&); |
| 69 | 69 |
| 70 FloatRect resourceBoundingBox(const RenderObject*); | 70 FloatRect resourceBoundingBox(const RenderObject*); |
| 71 | 71 |
| 72 PassRefPtr<SVGFilterBuilder> buildPrimitives(SVGFilter*); | 72 PassRefPtr<SVGFilterBuilder> buildPrimitives(SVGFilter*); |
| 73 | 73 |
| 74 SVGUnitTypes::SVGUnitType filterUnits() const { return toSVGFilterElement(el
ement())->filterUnits()->currentValue()->enumValue(); } | 74 SVGUnitTypes::SVGUnitType filterUnits() const { return toSVGFilterElement(el
ement())->filterUnits()->currentValue()->enumValue(); } |
| 75 SVGUnitTypes::SVGUnitType primitiveUnits() const { return toSVGFilterElement
(element())->primitiveUnits()->currentValue()->enumValue(); } | 75 SVGUnitTypes::SVGUnitType primitiveUnits() const { return toSVGFilterElement
(element())->primitiveUnits()->currentValue()->enumValue(); } |
| 76 | 76 |
| 77 void primitiveAttributeChanged(RenderObject*, const QualifiedName&); | 77 void primitiveAttributeChanged(RenderObject*, const QualifiedName&); |
| 78 | 78 |
| 79 virtual RenderSVGResourceType resourceType() const OVERRIDE { return s_resou
rceType; } | 79 virtual RenderSVGResourceType resourceType() const OVERRIDE { return s_resou
rceType; } |
| 80 static const RenderSVGResourceType s_resourceType; | 80 static const RenderSVGResourceType s_resourceType; |
| 81 | 81 |
| 82 FloatRect drawingRegion(RenderObject*) const; | 82 FloatRect drawingRegion(RenderObject*) const; |
| 83 private: | 83 private: |
| 84 typedef HashMap<RenderObject*, OwnPtr<FilterData> > FilterMap; | 84 typedef HashMap<RenderObject*, OwnPtr<FilterData> > FilterMap; |
| 85 FilterMap m_filter; | 85 FilterMap m_filter; |
| 86 }; | 86 }; |
| 87 | 87 |
| 88 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGResourceFilter, isSVGResourceFilter()); | 88 DEFINE_RENDER_OBJECT_TYPE_CASTS(RenderSVGResourceFilter, isSVGResourceFilter()); |
| 89 | 89 |
| 90 } | 90 } |
| 91 | 91 |
| 92 #endif | 92 #endif |
| OLD | NEW |