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
|
/*
* Copyright (C) 2011 Adobe Systems Incorporated. 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 THE COPYRIGHT HOLDER “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 THE COPYRIGHT HOLDER 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 "CSSValueList.h"
#include "SVGPathByteStream.h"
#include <wtf/UniqueRef.h>
namespace WebCore {
enum class WindRule : bool;
class CSSInsetShapeValue : public CSSValue {
public:
static Ref<CSSInsetShapeValue> create(Ref<CSSValue> top, Ref<CSSValue> right, Ref<CSSValue> bottom, Ref<CSSValue> left,
RefPtr<CSSValue> topLeftRadius, RefPtr<CSSValue> topRightRadius, RefPtr<CSSValue> bottomRightRadius, RefPtr<CSSValue> bottomLeftRadius);
const CSSValue& top() const { return m_top; }
const CSSValue& right() const { return m_right; }
const CSSValue& bottom() const { return m_bottom; }
const CSSValue& left() const { return m_left; }
const CSSValue* topLeftRadius() const { return m_topLeftRadius.get(); }
const CSSValue* topRightRadius() const { return m_topRightRadius.get(); }
const CSSValue* bottomRightRadius() const { return m_bottomRightRadius.get(); }
const CSSValue* bottomLeftRadius() const { return m_bottomLeftRadius.get(); }
String customCSSText() const;
bool equals(const CSSInsetShapeValue&) const;
private:
CSSInsetShapeValue(Ref<CSSValue> top, Ref<CSSValue> right, Ref<CSSValue> bottom, Ref<CSSValue> left, RefPtr<CSSValue> topLeftRadius, RefPtr<CSSValue> topRightRadius, RefPtr<CSSValue> bottomRightRadius, RefPtr<CSSValue> bottomLeftRadius);
Ref<CSSValue> m_top;
Ref<CSSValue> m_right;
Ref<CSSValue> m_bottom;
Ref<CSSValue> m_left;
RefPtr<CSSValue> m_topLeftRadius;
RefPtr<CSSValue> m_topRightRadius;
RefPtr<CSSValue> m_bottomRightRadius;
RefPtr<CSSValue> m_bottomLeftRadius;
};
class CSSCircleValue : public CSSValue {
public:
static Ref<CSSCircleValue> create(RefPtr<CSSValue> radius, RefPtr<CSSValue> centerX, RefPtr<CSSValue> centerY);
const CSSValue* radius() const { return m_radius.get(); }
const CSSValue* centerX() const { return m_centerX.get(); }
const CSSValue* centerY() const { return m_centerY.get(); }
String customCSSText() const;
bool equals(const CSSCircleValue&) const;
private:
CSSCircleValue(RefPtr<CSSValue> radius, RefPtr<CSSValue> centerX, RefPtr<CSSValue> centerY);
RefPtr<CSSValue> m_radius;
RefPtr<CSSValue> m_centerX;
RefPtr<CSSValue> m_centerY;
};
class CSSEllipseValue : public CSSValue {
public:
static Ref<CSSEllipseValue> create(RefPtr<CSSValue> radiusX, RefPtr<CSSValue> radiusY, RefPtr<CSSValue> centerX, RefPtr<CSSValue> centerY);
const CSSValue* radiusX() const { return m_radiusX.get(); }
const CSSValue* radiusY() const { return m_radiusY.get(); }
const CSSValue* centerX() const { return m_centerX.get(); }
const CSSValue* centerY() const { return m_centerY.get(); }
String customCSSText() const;
bool equals(const CSSEllipseValue&) const;
private:
CSSEllipseValue(RefPtr<CSSValue> radiusX, RefPtr<CSSValue> radiusY, RefPtr<CSSValue> centerX, RefPtr<CSSValue> centerY);
RefPtr<CSSValue> m_radiusX;
RefPtr<CSSValue> m_radiusY;
RefPtr<CSSValue> m_centerX;
RefPtr<CSSValue> m_centerY;
};
class CSSPolygonValue : public CSSValueContainingVector {
public:
static Ref<CSSPolygonValue> create(CSSValueListBuilder values, WindRule);
WindRule windRule() const { return m_windRule; }
String customCSSText() const;
bool equals(const CSSPolygonValue&) const;
private:
explicit CSSPolygonValue(CSSValueListBuilder, WindRule);
WindRule m_windRule { };
};
class CSSPathValue : public CSSValue {
public:
static Ref<CSSPathValue> create(SVGPathByteStream, WindRule);
const SVGPathByteStream& pathData() const { return m_pathData; }
WindRule windRule() const { return m_windRule; }
String customCSSText() const;
bool equals(const CSSPathValue&) const;
private:
CSSPathValue(SVGPathByteStream, WindRule);
SVGPathByteStream m_pathData;
WindRule m_windRule { };
};
} // namespace WebCore
SPECIALIZE_TYPE_TRAITS_CSS_VALUE(CSSCircleValue, isCircle())
SPECIALIZE_TYPE_TRAITS_CSS_VALUE(CSSEllipseValue, isEllipse())
SPECIALIZE_TYPE_TRAITS_CSS_VALUE(CSSInsetShapeValue, isInsetShape())
SPECIALIZE_TYPE_TRAITS_CSS_VALUE(CSSPolygonValue, isPolygon())
SPECIALIZE_TYPE_TRAITS_CSS_VALUE(CSSPathValue, isPath())
|