1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323
|
/*
* Copyright (C) 2006, 2008, 2013 Apple Inc. All rights reserved.
* Copyright (C) 2008, 2010 Nokia Corporation and/or its subsidiary(-ies)
* Copyright (C) 2007 Alp Toker <alp@atoker.com>
* Copyright (C) 2008 Eric Seidel <eric@webkit.org>
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY APPLE COMPUTER, INC. ``AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE COMPUTER, INC. OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
* EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
* PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY
* OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "config.h"
#include "CanvasStyle.h"
#include "CSSParser.h"
#include "CSSPropertyNames.h"
#include "CanvasGradient.h"
#include "CanvasPattern.h"
#include "GraphicsContext.h"
#include "HTMLCanvasElement.h"
#include "StylePropertySet.h"
#include <wtf/Assertions.h>
#include <wtf/PassRefPtr.h>
#if USE(CG)
#include <CoreGraphics/CGContext.h>
#endif
#if PLATFORM(QT)
#include <QPainter>
#include <QBrush>
#include <QPen>
#include <QColor>
#endif
namespace WebCore {
enum ColorParseResult { ParsedRGBA, ParsedCurrentColor, ParsedSystemColor, ParseFailed };
static ColorParseResult parseColor(RGBA32& parsedColor, const String& colorString, Document* document = 0)
{
if (equalIgnoringCase(colorString, "currentcolor"))
return ParsedCurrentColor;
if (CSSParser::parseColor(parsedColor, colorString))
return ParsedRGBA;
if (CSSParser::parseSystemColor(parsedColor, colorString, document))
return ParsedSystemColor;
return ParseFailed;
}
RGBA32 currentColor(HTMLCanvasElement* canvas)
{
if (!canvas || !canvas->inDocument() || !canvas->inlineStyle())
return Color::black;
RGBA32 rgba = Color::black;
CSSParser::parseColor(rgba, canvas->inlineStyle()->getPropertyValue(CSSPropertyColor));
return rgba;
}
bool parseColorOrCurrentColor(RGBA32& parsedColor, const String& colorString, HTMLCanvasElement* canvas)
{
ColorParseResult parseResult = parseColor(parsedColor, colorString, canvas ? canvas->document() : 0);
switch (parseResult) {
case ParsedRGBA:
case ParsedSystemColor:
return true;
case ParsedCurrentColor:
parsedColor = currentColor(canvas);
return true;
case ParseFailed:
return false;
default:
ASSERT_NOT_REACHED();
return false;
}
}
CanvasStyle::CanvasStyle(RGBA32 rgba)
: m_rgba(rgba)
, m_type(RGBA)
{
}
CanvasStyle::CanvasStyle(float grayLevel, float alpha)
: m_rgba(makeRGBA32FromFloats(grayLevel, grayLevel, grayLevel, alpha))
, m_type(RGBA)
{
}
CanvasStyle::CanvasStyle(float r, float g, float b, float a)
: m_rgba(makeRGBA32FromFloats(r, g, b, a))
, m_type(RGBA)
{
}
CanvasStyle::CanvasStyle(float c, float m, float y, float k, float a)
: m_cmyka(new CMYKAValues(makeRGBAFromCMYKA(c, m, y, k, a), c, m, y, k, a))
, m_type(CMYKA)
{
}
CanvasStyle::CanvasStyle(PassRefPtr<CanvasGradient> gradient)
: m_gradient(gradient.leakRef())
, m_type(Gradient)
{
if (!m_gradient)
m_type = Invalid;
}
CanvasStyle::CanvasStyle(PassRefPtr<CanvasPattern> pattern)
: m_pattern(pattern.leakRef())
, m_type(ImagePattern)
{
if (!m_pattern)
m_type = Invalid;
}
CanvasStyle::~CanvasStyle()
{
if (m_type == Gradient)
m_gradient->deref();
else if (m_type == ImagePattern)
m_pattern->deref();
else if (m_type == CMYKA)
delete m_cmyka;
}
CanvasStyle CanvasStyle::createFromString(const String& color, Document* document)
{
RGBA32 rgba;
ColorParseResult parseResult = parseColor(rgba, color, document);
switch (parseResult) {
case ParsedRGBA:
case ParsedSystemColor:
return CanvasStyle(rgba);
case ParsedCurrentColor:
return CanvasStyle(ConstructCurrentColor);
case ParseFailed:
return CanvasStyle();
default:
ASSERT_NOT_REACHED();
return CanvasStyle();
}
}
CanvasStyle CanvasStyle::createFromStringWithOverrideAlpha(const String& color, float alpha)
{
RGBA32 rgba;
ColorParseResult parseResult = parseColor(rgba, color);
switch (parseResult) {
case ParsedRGBA:
return CanvasStyle(colorWithOverrideAlpha(rgba, alpha));
case ParsedCurrentColor:
return CanvasStyle(CurrentColorWithOverrideAlpha, alpha);
case ParseFailed:
return CanvasStyle();
default:
ASSERT_NOT_REACHED();
return CanvasStyle();
}
}
bool CanvasStyle::isEquivalentColor(const CanvasStyle& other) const
{
if (m_type != other.m_type)
return false;
switch (m_type) {
case RGBA:
return m_rgba == other.m_rgba;
case CMYKA:
return m_cmyka->c == other.m_cmyka->c
&& m_cmyka->m == other.m_cmyka->m
&& m_cmyka->y == other.m_cmyka->y
&& m_cmyka->k == other.m_cmyka->k
&& m_cmyka->a == other.m_cmyka->a;
case Gradient:
case ImagePattern:
case CurrentColor:
case CurrentColorWithOverrideAlpha:
return false;
case Invalid:
break;
}
ASSERT_NOT_REACHED();
return false;
}
bool CanvasStyle::isEquivalentRGBA(float r, float g, float b, float a) const
{
if (m_type != RGBA)
return false;
return m_rgba == makeRGBA32FromFloats(r, g, b, a);
}
bool CanvasStyle::isEquivalentCMYKA(float c, float m, float y, float k, float a) const
{
if (m_type != CMYKA)
return false;
return c == m_cmyka->c
&& m == m_cmyka->m
&& y == m_cmyka->y
&& k == m_cmyka->k
&& a == m_cmyka->a;
}
CanvasStyle::CanvasStyle(const CanvasStyle& other)
{
memcpy(this, &other, sizeof(CanvasStyle));
if (m_type == Gradient)
m_gradient->ref();
else if (m_type == ImagePattern)
m_pattern->ref();
else if (m_type == CMYKA)
m_cmyka = new CMYKAValues(other.m_cmyka->rgba, other.m_cmyka->c, other.m_cmyka->m, other.m_cmyka->y, other.m_cmyka->k, other.m_cmyka->a);
}
CanvasStyle& CanvasStyle::operator=(const CanvasStyle& other)
{
if (this != &other) {
this->~CanvasStyle();
new (this) CanvasStyle(other);
}
return *this;
}
void CanvasStyle::applyStrokeColor(GraphicsContext* context) const
{
if (!context)
return;
switch (m_type) {
case RGBA:
context->setStrokeColor(m_rgba, ColorSpaceDeviceRGB);
break;
case CMYKA: {
// FIXME: Do this through platform-independent GraphicsContext API.
// We'll need a fancier Color abstraction to support CMYKA correctly
#if USE(CG)
CGContextSetCMYKStrokeColor(context->platformContext(), m_cmyka->c, m_cmyka->m, m_cmyka->y, m_cmyka->k, m_cmyka->a);
#elif PLATFORM(QT)
QPen currentPen = context->platformContext()->pen();
QColor clr;
clr.setCmykF(m_cmyka->c, m_cmyka->m, m_cmyka->y, m_cmyka->k, m_cmyka->a);
currentPen.setColor(clr);
context->platformContext()->setPen(currentPen);
#else
context->setStrokeColor(m_cmyka->rgba, ColorSpaceDeviceRGB);
#endif
break;
}
case Gradient:
context->setStrokeGradient(canvasGradient()->gradient());
break;
case ImagePattern:
context->setStrokePattern(canvasPattern()->pattern());
break;
case CurrentColor:
case CurrentColorWithOverrideAlpha:
case Invalid:
ASSERT_NOT_REACHED();
break;
}
}
void CanvasStyle::applyFillColor(GraphicsContext* context) const
{
if (!context)
return;
switch (m_type) {
case RGBA:
context->setFillColor(m_rgba, ColorSpaceDeviceRGB);
break;
case CMYKA: {
// FIXME: Do this through platform-independent GraphicsContext API.
// We'll need a fancier Color abstraction to support CMYKA correctly
#if USE(CG)
CGContextSetCMYKFillColor(context->platformContext(), m_cmyka->c, m_cmyka->m, m_cmyka->y, m_cmyka->k, m_cmyka->a);
#elif PLATFORM(QT)
QBrush currentBrush = context->platformContext()->brush();
QColor clr;
clr.setCmykF(m_cmyka->c, m_cmyka->m, m_cmyka->y, m_cmyka->k, m_cmyka->a);
currentBrush.setColor(clr);
context->platformContext()->setBrush(currentBrush);
#else
context->setFillColor(m_cmyka->rgba, ColorSpaceDeviceRGB);
#endif
break;
}
case Gradient:
context->setFillGradient(canvasGradient()->gradient());
break;
case ImagePattern:
context->setFillPattern(canvasPattern()->pattern());
break;
case CurrentColor:
case CurrentColorWithOverrideAlpha:
case Invalid:
ASSERT_NOT_REACHED();
break;
}
}
}
|