blob: 9bb1b4fa2556b816212101e1ead4714e4e455b1f [file] [log] [blame]
/*
* 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.
*/
#ifndef CSSBasicShapeValue_h
#define CSSBasicShapeValue_h
#include "core/css/CSSPrimitiveValue.h"
#include "core/css/CSSValue.h"
#include "core/css/CSSValuePair.h"
#include "platform/graphics/GraphicsTypes.h"
#include "wtf/RefPtr.h"
#include "wtf/Vector.h"
#include "wtf/text/WTFString.h"
namespace blink {
// TODO(Oilpan): the GC plugin is not capable of understanding that
// the traceAfterDispatch() method covers subtypes of CSSBasicShapeValue.
// Temporarily exempt it from being checked
class GC_PLUGIN_IGNORE("535448") CORE_EXPORT CSSBasicShapeValue : public CSSValue {
public:
enum Type {
CSSBasicShapeEllipseType,
CSSBasicShapePolygonType,
CSSBasicShapeCircleType,
CSSBasicShapeInsetType
};
String customCSSText() const;
bool equals(const CSSBasicShapeValue& other) const;
Type type() const { return m_type; }
bool isEllipse() const { return m_type == CSSBasicShapeEllipseType; }
bool isPolygon() const { return m_type == CSSBasicShapePolygonType; }
bool isCircle() const { return m_type == CSSBasicShapeCircleType; }
bool isInset() const { return m_type == CSSBasicShapeInsetType; }
DECLARE_TRACE_AFTER_DISPATCH();
protected:
CSSBasicShapeValue(Type type)
: CSSValue(BasicShapeClass)
, m_type(type)
{
}
private:
Type m_type;
};
class CSSBasicShapeCircleValue final : public CSSBasicShapeValue {
public:
static PassRefPtrWillBeRawPtr<CSSBasicShapeCircleValue> create() { return adoptRefWillBeNoop(new CSSBasicShapeCircleValue); }
String customShapeCSSText() const;
bool equals(const CSSBasicShapeCircleValue&) const;
CSSValue* centerX() const { return m_centerX.get(); }
CSSValue* centerY() const { return m_centerY.get(); }
CSSPrimitiveValue* radius() const { return m_radius.get(); }
// TODO(sashab): Remove these and pass them as arguments in the constructor.
void setCenterX(PassRefPtrWillBeRawPtr<CSSValue> centerX) { m_centerX = centerX; }
void setCenterY(PassRefPtrWillBeRawPtr<CSSValue> centerY) { m_centerY = centerY; }
void setRadius(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> radius) { m_radius = radius; }
DECLARE_TRACE_AFTER_DISPATCH();
private:
CSSBasicShapeCircleValue()
: CSSBasicShapeValue(CSSBasicShapeCircleType)
{ }
RefPtrWillBeMember<CSSValue> m_centerX;
RefPtrWillBeMember<CSSValue> m_centerY;
RefPtrWillBeMember<CSSPrimitiveValue> m_radius;
};
class CSSBasicShapeEllipseValue final : public CSSBasicShapeValue {
public:
static PassRefPtrWillBeRawPtr<CSSBasicShapeEllipseValue> create() { return adoptRefWillBeNoop(new CSSBasicShapeEllipseValue); }
String customShapeCSSText() const;
bool equals(const CSSBasicShapeEllipseValue&) const;
CSSValue* centerX() const { return m_centerX.get(); }
CSSValue* centerY() const { return m_centerY.get(); }
CSSPrimitiveValue* radiusX() const { return m_radiusX.get(); }
CSSPrimitiveValue* radiusY() const { return m_radiusY.get(); }
// TODO(sashab): Remove these and pass them as arguments in the constructor.
void setCenterX(PassRefPtrWillBeRawPtr<CSSValue> centerX) { m_centerX = centerX; }
void setCenterY(PassRefPtrWillBeRawPtr<CSSValue> centerY) { m_centerY = centerY; }
void setRadiusX(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> radiusX) { m_radiusX = radiusX; }
void setRadiusY(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> radiusY) { m_radiusY = radiusY; }
DECLARE_TRACE_AFTER_DISPATCH();
private:
CSSBasicShapeEllipseValue()
: CSSBasicShapeValue(CSSBasicShapeEllipseType)
{ }
RefPtrWillBeMember<CSSValue> m_centerX;
RefPtrWillBeMember<CSSValue> m_centerY;
RefPtrWillBeMember<CSSPrimitiveValue> m_radiusX;
RefPtrWillBeMember<CSSPrimitiveValue> m_radiusY;
};
class CSSBasicShapePolygonValue final : public CSSBasicShapeValue {
public:
static PassRefPtrWillBeRawPtr<CSSBasicShapePolygonValue> create() { return adoptRefWillBeNoop(new CSSBasicShapePolygonValue); }
void appendPoint(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> x, PassRefPtrWillBeRawPtr<CSSPrimitiveValue> y)
{
m_values.append(x);
m_values.append(y);
}
PassRefPtrWillBeRawPtr<CSSPrimitiveValue> getXAt(unsigned i) const { return m_values.at(i * 2); }
PassRefPtrWillBeRawPtr<CSSPrimitiveValue> getYAt(unsigned i) const { return m_values.at(i * 2 + 1); }
const WillBeHeapVector<RefPtrWillBeMember<CSSPrimitiveValue>>& values() const { return m_values; }
// TODO(sashab): Remove this and pass it as an argument in the constructor.
void setWindRule(WindRule w) { m_windRule = w; }
WindRule windRule() const { return m_windRule; }
String customShapeCSSText() const;
bool equals(const CSSBasicShapePolygonValue&) const;
DECLARE_TRACE_AFTER_DISPATCH();
private:
CSSBasicShapePolygonValue()
: CSSBasicShapeValue(CSSBasicShapePolygonType),
m_windRule(RULE_NONZERO)
{ }
WillBeHeapVector<RefPtrWillBeMember<CSSPrimitiveValue>> m_values;
WindRule m_windRule;
};
class CSSBasicShapeInsetValue final : public CSSBasicShapeValue {
public:
static PassRefPtrWillBeRawPtr<CSSBasicShapeInsetValue> create() { return adoptRefWillBeNoop(new CSSBasicShapeInsetValue); }
CSSPrimitiveValue* top() const { return m_top.get(); }
CSSPrimitiveValue* right() const { return m_right.get(); }
CSSPrimitiveValue* bottom() const { return m_bottom.get(); }
CSSPrimitiveValue* left() const { return m_left.get(); }
CSSValuePair* topLeftRadius() const { return m_topLeftRadius.get(); }
CSSValuePair* topRightRadius() const { return m_topRightRadius.get(); }
CSSValuePair* bottomRightRadius() const { return m_bottomRightRadius.get(); }
CSSValuePair* bottomLeftRadius() const { return m_bottomLeftRadius.get(); }
// TODO(sashab): Remove these and pass them as arguments in the constructor.
void setTop(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> top) { m_top = top; }
void setRight(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> right) { m_right = right; }
void setBottom(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> bottom) { m_bottom = bottom; }
void setLeft(PassRefPtrWillBeRawPtr<CSSPrimitiveValue> left) { m_left = left; }
void updateShapeSize4Values(CSSPrimitiveValue* top, CSSPrimitiveValue* right, CSSPrimitiveValue* bottom, CSSPrimitiveValue* left)
{
setTop(top);
setRight(right);
setBottom(bottom);
setLeft(left);
}
void updateShapeSize1Value(CSSPrimitiveValue* value1)
{
updateShapeSize4Values(value1, value1, value1, value1);
}
void updateShapeSize2Values(CSSPrimitiveValue* value1, CSSPrimitiveValue* value2)
{
updateShapeSize4Values(value1, value2, value1, value2);
}
void updateShapeSize3Values(CSSPrimitiveValue* value1, CSSPrimitiveValue* value2, CSSPrimitiveValue* value3)
{
updateShapeSize4Values(value1, value2, value3, value2);
}
void setTopLeftRadius(PassRefPtrWillBeRawPtr<CSSValuePair> radius) { m_topLeftRadius = radius; }
void setTopRightRadius(PassRefPtrWillBeRawPtr<CSSValuePair> radius) { m_topRightRadius = radius; }
void setBottomRightRadius(PassRefPtrWillBeRawPtr<CSSValuePair> radius) { m_bottomRightRadius = radius; }
void setBottomLeftRadius(PassRefPtrWillBeRawPtr<CSSValuePair> radius) { m_bottomLeftRadius = radius; }
String customShapeCSSText() const;
bool equals(const CSSBasicShapeInsetValue&) const;
DECLARE_TRACE_AFTER_DISPATCH();
private:
CSSBasicShapeInsetValue()
: CSSBasicShapeValue(CSSBasicShapeInsetType)
{ }
RefPtrWillBeMember<CSSPrimitiveValue> m_top;
RefPtrWillBeMember<CSSPrimitiveValue> m_right;
RefPtrWillBeMember<CSSPrimitiveValue> m_bottom;
RefPtrWillBeMember<CSSPrimitiveValue> m_left;
RefPtrWillBeMember<CSSValuePair> m_topLeftRadius;
RefPtrWillBeMember<CSSValuePair> m_topRightRadius;
RefPtrWillBeMember<CSSValuePair> m_bottomRightRadius;
RefPtrWillBeMember<CSSValuePair> m_bottomLeftRadius;
};
DEFINE_CSS_VALUE_TYPE_CASTS(CSSBasicShapeValue, isBasicShapeValue());
DEFINE_TYPE_CASTS(CSSBasicShapeCircleValue, CSSBasicShapeValue, shape, shape->isCircle(), shape.isCircle());
DEFINE_TYPE_CASTS(CSSBasicShapeEllipseValue, CSSBasicShapeValue, shape, shape->isEllipse(), shape.isEllipse());
DEFINE_TYPE_CASTS(CSSBasicShapePolygonValue, CSSBasicShapeValue, shape, shape->isPolygon(), shape.isPolygon());
DEFINE_TYPE_CASTS(CSSBasicShapeInsetValue, CSSBasicShapeValue, shape, shape->isInset(), shape.isInset());
} // namespace blink
#endif // CSSBasicShapeValue_h