2 * Copyright (C) 2006, 2007, 2008, 2011 Apple Inc. All rights reserved.
3 * Copyright (C) 2007 Alp Toker <alp@atoker.com>
4 * Copyright (C) 2008 Torch Mobile, Inc.
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions
9 * 1. Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * 2. Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
15 * THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
16 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
18 * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
19 * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
20 * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
21 * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
22 * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
23 * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
24 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
25 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 #include "AffineTransform.h"
32 #include "FloatPoint.h"
33 #include "Generator.h"
34 #include "GraphicsTypes.h"
35 #include <wtf/PassRefPtr.h>
36 #include <wtf/Vector.h>
39 #include <CoreGraphics/CoreGraphics.h>
44 typedef struct CGContext* CGContextRef;
46 #define USE_CG_SHADING defined(BUILDING_ON_TIGER) || defined(BUILDING_ON_LEOPARD)
49 typedef struct CGShading* CGShadingRef;
50 typedef CGShadingRef PlatformGradient;
52 typedef struct CGGradient* CGGradientRef;
53 typedef CGGradientRef PlatformGradient;
60 typedef QGradient* PlatformGradient;
62 typedef struct _cairo_pattern cairo_pattern_t;
63 typedef cairo_pattern_t* PlatformGradient;
66 typedef class SkShader* PlatformGradient;
67 typedef class SkShader* PlatformPattern;
70 typedef BGradient* PlatformGradient;
72 typedef void* PlatformGradient;
79 class Gradient : public Generator {
81 static PassRefPtr<Gradient> create(const FloatPoint& p0, const FloatPoint& p1)
83 return adoptRef(new Gradient(p0, p1));
85 static PassRefPtr<Gradient> create(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1, float aspectRatio = 1)
87 return adoptRef(new Gradient(p0, r0, p1, r1, aspectRatio));
92 void addColorStop(const ColorStop&);
93 void addColorStop(float, const Color&);
95 void getColor(float value, float* r, float* g, float* b, float* a) const;
96 bool hasAlpha() const;
98 bool isRadial() const { return m_radial; }
99 bool isZeroSize() const { return m_p0.x() == m_p1.x() && m_p0.y() == m_p1.y() && (!m_radial || m_r0 == m_r1); }
101 const FloatPoint& p0() const { return m_p0; }
102 const FloatPoint& p1() const { return m_p1; }
104 void setP0(const FloatPoint& p) { m_p0 = p; }
105 void setP1(const FloatPoint& p) { m_p1 = p; }
107 float startRadius() const { return m_r0; }
108 float endRadius() const { return m_r1; }
110 void setStartRadius(float r) { m_r0 = r; }
111 void setEndRadius(float r) { m_r1 = r; }
113 float aspectRatio() const { return m_aspectRatio; }
115 #if OS(WINCE) && !PLATFORM(QT)
116 const Vector<ColorStop, 2>& getStops() const;
118 PlatformGradient platformGradient();
128 ColorStop() : stop(0), red(0), green(0), blue(0), alpha(0) { }
129 ColorStop(float s, float r, float g, float b, float a) : stop(s), red(r), green(g), blue(b), alpha(a) { }
132 void setStopsSorted(bool s) { m_stopsSorted = s; }
134 void setSpreadMethod(GradientSpreadMethod);
135 GradientSpreadMethod spreadMethod() { return m_spreadMethod; }
136 void setGradientSpaceTransform(const AffineTransform& gradientSpaceTransformation);
137 // Qt and CG transform the gradient at draw time
138 AffineTransform gradientSpaceTransform() { return m_gradientSpaceTransformation; }
140 virtual void fill(GraphicsContext*, const FloatRect&);
141 virtual void adjustParametersForTiledDrawing(IntSize& size, FloatRect& srcRect);
143 void setPlatformGradientSpaceTransform(const AffineTransform& gradientSpaceTransformation);
146 void paint(CGContextRef);
147 void paint(GraphicsContext*);
151 Gradient(const FloatPoint& p0, const FloatPoint& p1);
152 Gradient(const FloatPoint& p0, float r0, const FloatPoint& p1, float r1, float aspectRatio);
154 void platformInit() { m_gradient = 0; }
155 void platformDestroy();
157 int findStop(float value) const;
158 void sortStopsIfNecessary();
165 float m_aspectRatio; // For elliptical gradient, width / height.
166 mutable Vector<ColorStop, 2> m_stops;
167 mutable bool m_stopsSorted;
168 mutable int m_lastStop;
169 GradientSpreadMethod m_spreadMethod;
170 AffineTransform m_gradientSpaceTransformation;
172 PlatformGradient m_gradient;