| OLD | NEW |
| 1 /* | 1 /* |
| 2 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. | 2 * Copyright (C) Research In Motion Limited 2009-2010. All rights reserved. |
| 3 * | 3 * |
| 4 * This library is free software; you can redistribute it and/or | 4 * This library is free software; you can redistribute it and/or |
| 5 * modify it under the terms of the GNU Library General Public | 5 * modify it under the terms of the GNU Library General Public |
| 6 * License as published by the Free Software Foundation; either | 6 * License as published by the Free Software Foundation; either |
| 7 * version 2 of the License, or (at your option) any later version. | 7 * version 2 of the License, or (at your option) any later version. |
| 8 * | 8 * |
| 9 * This library is distributed in the hope that it will be useful, | 9 * This library is distributed in the hope that it will be useful, |
| 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of | 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| (...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 52 virtual ~RenderSVGResource() { } | 52 virtual ~RenderSVGResource() { } |
| 53 | 53 |
| 54 virtual void removeAllClientsFromCache(bool markForInvalidation = true) = 0; | 54 virtual void removeAllClientsFromCache(bool markForInvalidation = true) = 0; |
| 55 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation =
true) = 0; | 55 virtual void removeClientFromCache(RenderObject*, bool markForInvalidation =
true) = 0; |
| 56 | 56 |
| 57 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*, Re
nderSVGResourceModeFlags); | 57 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*, Re
nderSVGResourceModeFlags); |
| 58 virtual void postApplyResource(GraphicsContext*) { } | 58 virtual void postApplyResource(GraphicsContext*) { } |
| 59 | 59 |
| 60 virtual RenderSVGResourceType resourceType() const = 0; | 60 virtual RenderSVGResourceType resourceType() const = 0; |
| 61 | 61 |
| 62 template<class Renderer> | |
| 63 Renderer* cast() | |
| 64 { | |
| 65 if (Renderer::s_resourceType == resourceType()) | |
| 66 return static_cast<Renderer*>(this); | |
| 67 | |
| 68 return 0; | |
| 69 } | |
| 70 | |
| 71 // Helper utilities used in the render tree to access resources used for pai
nting shapes/text (gradients & patterns & solid colors only) | 62 // Helper utilities used in the render tree to access resources used for pai
nting shapes/text (gradients & patterns & solid colors only) |
| 72 // If hasFallback gets set to true, the sharedSolidPaintingResource is set t
o a fallback color. | 63 // If hasFallback gets set to true, the sharedSolidPaintingResource is set t
o a fallback color. |
| 73 static RenderSVGResource* requestPaintingResource(RenderSVGResourceMode, Ren
derObject*, const RenderStyle*, bool& hasFallback); | 64 static RenderSVGResource* requestPaintingResource(RenderSVGResourceMode, Ren
derObject*, const RenderStyle*, bool& hasFallback); |
| 74 static RenderSVGResourceSolidColor* sharedSolidPaintingResource(); | 65 static RenderSVGResourceSolidColor* sharedSolidPaintingResource(); |
| 75 | 66 |
| 76 static void markForLayoutAndParentResourceInvalidation(RenderObject*, bool n
eedsLayout = true); | 67 static void markForLayoutAndParentResourceInvalidation(RenderObject*, bool n
eedsLayout = true); |
| 77 }; | 68 }; |
| 78 | 69 |
| 79 #define DEFINE_RENDER_SVG_RESOURCE_TYPE_CASTS(thisType, typeName) \ | 70 #define DEFINE_RENDER_SVG_RESOURCE_TYPE_CASTS(thisType, typeName) \ |
| 80 DEFINE_TYPE_CASTS(thisType, RenderSVGResource, resource, resource->resourceT
ype() == typeName, resource.resourceType() == typeName) | 71 DEFINE_TYPE_CASTS(thisType, RenderSVGResource, resource, resource->resourceT
ype() == typeName, resource.resourceType() == typeName) |
| 81 | 72 |
| 82 } | 73 } |
| 83 | 74 |
| 84 #endif | 75 #endif |
| OLD | NEW |