| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org> | 2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org> |
| 3 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> | 3 * Copyright (C) 2008 Eric Seidel <eric@webkit.org> |
| 4 * Copyright (C) Research In Motion Limited 2010. All rights reserved. | 4 * Copyright (C) Research In Motion Limited 2010. 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 29 matching lines...) Expand all Loading... |
| 40 RefPtr<Gradient> gradient; | 40 RefPtr<Gradient> gradient; |
| 41 AffineTransform userspaceTransform; | 41 AffineTransform userspaceTransform; |
| 42 }; | 42 }; |
| 43 | 43 |
| 44 class GraphicsContext; | 44 class GraphicsContext; |
| 45 | 45 |
| 46 class RenderSVGResourceGradient : public RenderSVGResourceContainer { | 46 class RenderSVGResourceGradient : public RenderSVGResourceContainer { |
| 47 public: | 47 public: |
| 48 RenderSVGResourceGradient(SVGGradientElement*); | 48 RenderSVGResourceGradient(SVGGradientElement*); |
| 49 | 49 |
| 50 virtual void removeAllClientsFromCache(bool markForInvalidation = true); | 50 virtual void removeAllClientsFromCache(bool markForInvalidation = true) OVER
RIDE FINAL; |
| 51 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation =
true); | 51 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation =
true) OVERRIDE FINAL; |
| 52 | 52 |
| 53 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, u
nsigned short resourceMode); | 53 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, u
nsigned short resourceMode) OVERRIDE FINAL; |
| 54 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned sh
ort resourceMode, const Path*, const RenderSVGShape*); | 54 virtual void postApplyResource(RenderObject*, GraphicsContext*&, unsigned sh
ort resourceMode, const Path*, const RenderSVGShape*) OVERRIDE FINAL; |
| 55 virtual FloatRect resourceBoundingBox(RenderObject*) { return FloatRect(); } | 55 virtual FloatRect resourceBoundingBox(RenderObject*) OVERRIDE FINAL { return
FloatRect(); } |
| 56 | 56 |
| 57 protected: | 57 protected: |
| 58 void addStops(GradientData*, const Vector<Gradient::ColorStop>&) const; | 58 void addStops(GradientData*, const Vector<Gradient::ColorStop>&) const; |
| 59 | 59 |
| 60 virtual SVGUnitTypes::SVGUnitType gradientUnits() const = 0; | 60 virtual SVGUnitTypes::SVGUnitType gradientUnits() const = 0; |
| 61 virtual void calculateGradientTransform(AffineTransform&) = 0; | 61 virtual void calculateGradientTransform(AffineTransform&) = 0; |
| 62 virtual bool collectGradientAttributes(SVGGradientElement*) = 0; | 62 virtual bool collectGradientAttributes(SVGGradientElement*) = 0; |
| 63 virtual void buildGradient(GradientData*) const = 0; | 63 virtual void buildGradient(GradientData*) const = 0; |
| 64 | 64 |
| 65 GradientSpreadMethod platformSpreadMethodFromSVGType(SVGSpreadMethodType) co
nst; | 65 GradientSpreadMethod platformSpreadMethodFromSVGType(SVGSpreadMethodType) co
nst; |
| 66 | 66 |
| 67 private: | 67 private: |
| 68 bool m_shouldCollectGradientAttributes : 1; | 68 bool m_shouldCollectGradientAttributes : 1; |
| 69 HashMap<RenderObject*, OwnPtr<GradientData> > m_gradientMap; | 69 HashMap<RenderObject*, OwnPtr<GradientData> > m_gradientMap; |
| 70 }; | 70 }; |
| 71 | 71 |
| 72 } | 72 } |
| 73 | 73 |
| 74 #endif | 74 #endif |
| 75 #endif | 75 #endif |
| OLD | NEW |