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
|
/*
* Copyright (C) 2008-2021 Apple Inc. All rights reserved.
*
* 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 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 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.
*/
#pragma once
#include "CSSImageGeneratorValue.h"
#include "CSSPrimitiveValue.h"
#include "ColorInterpolationMethod.h"
#include "Gradient.h"
namespace WebCore {
namespace Style {
class BuilderState;
}
enum CSSGradientType {
CSSDeprecatedLinearGradient,
CSSDeprecatedRadialGradient,
CSSPrefixedLinearGradient,
CSSPrefixedRadialGradient,
CSSLinearGradient,
CSSRadialGradient,
CSSConicGradient
};
enum CSSGradientRepeat { NonRepeating, Repeating };
struct CSSGradientColorStop {
RefPtr<CSSPrimitiveValue> color;
RefPtr<CSSPrimitiveValue> position; // percentage or length
Color resolvedColor;
};
inline bool operator==(const CSSGradientColorStop& a, const CSSGradientColorStop& b)
{
return compareCSSValuePtr(a.color, b.color) && compareCSSValuePtr(a.position, b.position);
}
struct CSSGradientColorInterpolationMethod {
enum class Default : bool { SRGB, OKLab };
ColorInterpolationMethod method;
Default defaultMethod;
static CSSGradientColorInterpolationMethod legacyMethod(AlphaPremultiplication alphaPremultiplication)
{
return { { ColorInterpolationMethod::SRGB { }, alphaPremultiplication }, Default::SRGB };
}
};
inline bool operator==(const CSSGradientColorInterpolationMethod& a, const CSSGradientColorInterpolationMethod& b)
{
return a.method == b.method && a.defaultMethod == b.defaultMethod;
}
using CSSGradientColorStopList = Vector<CSSGradientColorStop, 2>;
class CSSGradientValue : public CSSImageGeneratorValue {
public:
void setFirstX(RefPtr<CSSPrimitiveValue>&& value) { m_firstX = WTFMove(value); }
void setFirstY(RefPtr<CSSPrimitiveValue>&& value) { m_firstY = WTFMove(value); }
void setSecondX(RefPtr<CSSPrimitiveValue>&& value) { m_secondX = WTFMove(value); }
void setSecondY(RefPtr<CSSPrimitiveValue>&& value) { m_secondY = WTFMove(value); }
void resolveRGBColors();
CSSGradientType gradientType() const { return m_gradientType; }
RefPtr<Image> image(RenderElement&, const FloatSize&);
bool knownToBeOpaque(const RenderElement&) const;
static constexpr bool isFixedSize() { return false; }
static FloatSize fixedSize(const RenderElement&) { return FloatSize(); }
static constexpr bool isPending() { return false; }
static void loadSubimages(CachedResourceLoader&, const ResourceLoaderOptions&) { }
Ref<CSSGradientValue> valueWithStylesResolved(Style::BuilderState&);
protected:
CSSGradientValue(ClassType classType, CSSGradientRepeat repeat, CSSGradientType gradientType, CSSGradientColorInterpolationMethod colorInterpolationMethod, CSSGradientColorStopList stops)
: CSSImageGeneratorValue(classType)
, m_stops(WTFMove(stops))
, m_gradientType(gradientType)
, m_repeating(repeat == Repeating)
, m_colorInterpolationMethod(colorInterpolationMethod)
{
}
CSSGradientValue(const CSSGradientValue& other, ClassType classType)
: CSSImageGeneratorValue(classType)
, m_firstX(other.m_firstX)
, m_firstY(other.m_firstY)
, m_secondX(other.m_secondX)
, m_secondY(other.m_secondY)
, m_stops(other.m_stops)
, m_gradientType(other.m_gradientType)
, m_repeating(other.m_repeating)
, m_colorInterpolationMethod(other.m_colorInterpolationMethod)
, m_hasColorDerivedFromElement(other.m_hasColorDerivedFromElement)
{
}
template<typename GradientAdapter> GradientColorStops computeStops(GradientAdapter&, const CSSToLengthConversionData&, const RenderStyle&, float maxLengthForRepeat);
auto firstX() const { return m_firstX.get(); }
auto firstY() const { return m_firstY.get(); }
auto secondX() const { return m_secondX.get(); }
auto secondY() const { return m_secondY.get(); }
auto& stops() const { return m_stops; }
bool isRepeating() const { return m_repeating; }
auto colorInterpolationMethod() const { return m_colorInterpolationMethod; }
bool equals(const CSSGradientValue&) const;
private:
bool hasColorDerivedFromElement() const;
bool isCacheable() const;
RefPtr<CSSPrimitiveValue> m_firstX;
RefPtr<CSSPrimitiveValue> m_firstY;
RefPtr<CSSPrimitiveValue> m_secondX;
RefPtr<CSSPrimitiveValue> m_secondY;
CSSGradientColorStopList m_stops;
CSSGradientType m_gradientType;
bool m_repeating { false };
CSSGradientColorInterpolationMethod m_colorInterpolationMethod;
mutable std::optional<bool> m_hasColorDerivedFromElement;
};
class CSSLinearGradientValue final : public CSSGradientValue {
public:
static Ref<CSSLinearGradientValue> create(CSSGradientRepeat repeat, CSSGradientType gradientType, CSSGradientColorInterpolationMethod colorInterpolationMethod, CSSGradientColorStopList stops)
{
return adoptRef(*new CSSLinearGradientValue(repeat, gradientType, colorInterpolationMethod, WTFMove(stops)));
}
void setAngle(Ref<CSSPrimitiveValue>&& value) { m_angle = WTFMove(value); }
String customCSSText() const;
// Create the gradient for a given size.
Ref<Gradient> createGradient(RenderElement&, const FloatSize&);
Ref<CSSLinearGradientValue> clone() const
{
return adoptRef(*new CSSLinearGradientValue(*this));
}
bool equals(const CSSLinearGradientValue&) const;
private:
CSSLinearGradientValue(CSSGradientRepeat repeat, CSSGradientType gradientType, CSSGradientColorInterpolationMethod colorInterpolationMethod, CSSGradientColorStopList stops)
: CSSGradientValue(LinearGradientClass, repeat, gradientType, colorInterpolationMethod, WTFMove(stops))
{
}
CSSLinearGradientValue(const CSSLinearGradientValue& other)
: CSSGradientValue(other, LinearGradientClass)
, m_angle(other.m_angle)
{
}
RefPtr<CSSPrimitiveValue> m_angle; // may be null.
};
class CSSRadialGradientValue final : public CSSGradientValue {
public:
static Ref<CSSRadialGradientValue> create(CSSGradientRepeat repeat, CSSGradientType gradientType, CSSGradientColorInterpolationMethod colorInterpolationMethod, CSSGradientColorStopList stops)
{
return adoptRef(*new CSSRadialGradientValue(repeat, gradientType, colorInterpolationMethod, WTFMove(stops)));
}
Ref<CSSRadialGradientValue> clone() const
{
return adoptRef(*new CSSRadialGradientValue(*this));
}
String customCSSText() const;
void setFirstRadius(RefPtr<CSSPrimitiveValue>&& value) { m_firstRadius = WTFMove(value); }
void setSecondRadius(RefPtr<CSSPrimitiveValue>&& value) { m_secondRadius = WTFMove(value); }
void setShape(RefPtr<CSSPrimitiveValue>&& value) { m_shape = WTFMove(value); }
void setSizingBehavior(RefPtr<CSSPrimitiveValue>&& value) { m_sizingBehavior = WTFMove(value); }
void setEndHorizontalSize(RefPtr<CSSPrimitiveValue>&& value) { m_endHorizontalSize = WTFMove(value); }
void setEndVerticalSize(RefPtr<CSSPrimitiveValue>&& value) { m_endVerticalSize = WTFMove(value); }
// Create the gradient for a given size.
Ref<Gradient> createGradient(RenderElement&, const FloatSize&);
bool equals(const CSSRadialGradientValue&) const;
private:
CSSRadialGradientValue(CSSGradientRepeat repeat, CSSGradientType gradientType, CSSGradientColorInterpolationMethod colorInterpolationMethod, CSSGradientColorStopList stops)
: CSSGradientValue(RadialGradientClass, repeat, gradientType, colorInterpolationMethod, WTFMove(stops))
{
}
CSSRadialGradientValue(const CSSRadialGradientValue& other)
: CSSGradientValue(other, RadialGradientClass)
, m_firstRadius(other.m_firstRadius)
, m_secondRadius(other.m_secondRadius)
, m_shape(other.m_shape)
, m_sizingBehavior(other.m_sizingBehavior)
, m_endHorizontalSize(other.m_endHorizontalSize)
, m_endVerticalSize(other.m_endVerticalSize)
{
}
// Resolve points/radii to front end values.
float resolveRadius(CSSPrimitiveValue&, const CSSToLengthConversionData&, float* widthOrHeight = 0);
// These may be null for non-deprecated gradients.
RefPtr<CSSPrimitiveValue> m_firstRadius;
RefPtr<CSSPrimitiveValue> m_secondRadius;
// The below are only used for non-deprecated gradients. Any of them may be null.
RefPtr<CSSPrimitiveValue> m_shape;
RefPtr<CSSPrimitiveValue> m_sizingBehavior;
RefPtr<CSSPrimitiveValue> m_endHorizontalSize;
RefPtr<CSSPrimitiveValue> m_endVerticalSize;
};
class CSSConicGradientValue final : public CSSGradientValue {
public:
static Ref<CSSConicGradientValue> create(CSSGradientRepeat repeat, CSSGradientColorInterpolationMethod colorInterpolationMethod, CSSGradientColorStopList stops)
{
return adoptRef(*new CSSConicGradientValue(repeat, colorInterpolationMethod, WTFMove(stops)));
}
Ref<CSSConicGradientValue> clone() const
{
return adoptRef(*new CSSConicGradientValue(*this));
}
String customCSSText() const;
void setAngle(RefPtr<CSSPrimitiveValue>&& value) { m_angle = WTFMove(value); }
// Create the gradient for a given size.
Ref<Gradient> createGradient(RenderElement&, const FloatSize&);
bool equals(const CSSConicGradientValue&) const;
private:
explicit CSSConicGradientValue(CSSGradientRepeat repeat, CSSGradientColorInterpolationMethod colorInterpolationMethod, CSSGradientColorStopList stops)
: CSSGradientValue(ConicGradientClass, repeat, CSSConicGradient, colorInterpolationMethod, WTFMove(stops))
{
}
CSSConicGradientValue(const CSSConicGradientValue& other)
: CSSGradientValue(other, ConicGradientClass)
, m_angle(other.m_angle)
{
}
RefPtr<CSSPrimitiveValue> m_angle; // may be null.
};
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_CSS_VALUE(CSSGradientValue, isGradientValue())
SPECIALIZE_TYPE_TRAITS_CSS_VALUE(CSSLinearGradientValue, isLinearGradientValue())
SPECIALIZE_TYPE_TRAITS_CSS_VALUE(CSSRadialGradientValue, isRadialGradientValue())
SPECIALIZE_TYPE_TRAITS_CSS_VALUE(CSSConicGradientValue, isConicGradientValue())
|