| 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 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 virtual void calcViewport() OVERRIDE; | 50 virtual void calcViewport() OVERRIDE; |
| 51 | 51 |
| 52 virtual const AffineTransform& localToParentTransform() const OVERRIDE; | 52 virtual const AffineTransform& localToParentTransform() const OVERRIDE; |
| 53 AffineTransform markerTransformation(const FloatPoint& origin, float angle,
float strokeWidth) const; | 53 AffineTransform markerTransformation(const FloatPoint& origin, float angle,
float strokeWidth) const; |
| 54 | 54 |
| 55 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, u
nsigned short) OVERRIDE { return false; } | 55 virtual bool applyResource(RenderObject*, RenderStyle*, GraphicsContext*&, u
nsigned short) OVERRIDE { return false; } |
| 56 | 56 |
| 57 FloatPoint referencePoint() const; | 57 FloatPoint referencePoint() const; |
| 58 float angle() const; | 58 float angle() const; |
| 59 SVGMarkerUnitsType markerUnits() const { return toSVGMarkerElement(element()
)->markerUnits()->currentValue()->enumValue(); } | 59 SVGMarkerUnitsType markerUnits() const { return toSVGMarkerElement(element()
)->markerUnits()->currentValue()->enumValue(); } |
| 60 SVGMarkerOrientType orientType() const { return toSVGMarkerElement(element()
)->orientType()->currentValue()->enumValue(); } |
| 60 | 61 |
| 61 virtual RenderSVGResourceType resourceType() const OVERRIDE { return s_resou
rceType; } | 62 virtual RenderSVGResourceType resourceType() const OVERRIDE { return s_resou
rceType; } |
| 62 static const RenderSVGResourceType s_resourceType; | 63 static const RenderSVGResourceType s_resourceType; |
| 63 | 64 |
| 64 private: | 65 private: |
| 65 // Generates a transformation matrix usable to render marker content. Handle
s scaling the marker content | 66 // Generates a transformation matrix usable to render marker content. Handle
s scaling the marker content |
| 66 // acording to SVGs markerUnits="strokeWidth" concept, when a strokeWidth va
lue != -1 is passed in. | 67 // acording to SVGs markerUnits="strokeWidth" concept, when a strokeWidth va
lue != -1 is passed in. |
| 67 AffineTransform markerContentTransformation(const AffineTransform& contentTr
ansformation, const FloatPoint& origin, float strokeWidth = -1) const; | 68 AffineTransform markerContentTransformation(const AffineTransform& contentTr
ansformation, const FloatPoint& origin, float strokeWidth = -1) const; |
| 68 | 69 |
| 69 AffineTransform viewportTransform() const; | 70 AffineTransform viewportTransform() const; |
| 70 | 71 |
| 71 mutable AffineTransform m_localToParentTransform; | 72 mutable AffineTransform m_localToParentTransform; |
| 72 FloatRect m_viewport; | 73 FloatRect m_viewport; |
| 73 }; | 74 }; |
| 74 | 75 |
| 75 DEFINE_RENDER_SVG_RESOURCE_TYPE_CASTS(RenderSVGResourceMarker, MarkerResourceTyp
e); | 76 DEFINE_RENDER_SVG_RESOURCE_TYPE_CASTS(RenderSVGResourceMarker, MarkerResourceTyp
e); |
| 76 | 77 |
| 77 } | 78 } |
| 78 | 79 |
| 79 #endif | 80 #endif |
| OLD | NEW |