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
|
/*
* Copyright (C) 2019-2023 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 "SVGPathSeg.h"
#include "SVGPathSegValue.h"
namespace WebCore {
class SVGPathSegClosePath final : public SVGPathSeg {
public:
static Ref<SVGPathSegClosePath> create() { return adoptRef(*new SVGPathSegClosePath()); }
private:
using SVGPathSeg::SVGPathSeg;
SVGPathSegType pathSegType() const final { return SVGPathSegType::ClosePath; }
String pathSegTypeAsLetter() const final { return "Z"_s; }
Ref<SVGPathSeg> clone() const final { return adoptRef(*new SVGPathSegClosePath()); }
};
class SVGPathSegLinetoHorizontalAbs final : public SVGPathSegLinetoHorizontal {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegLinetoHorizontalAbs>;
private:
using SVGPathSegLinetoHorizontal::SVGPathSegLinetoHorizontal;
SVGPathSegType pathSegType() const final { return SVGPathSegType::LineToHorizontalAbs; }
String pathSegTypeAsLetter() const final { return "H"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegLinetoHorizontalAbs>(); }
};
class SVGPathSegLinetoHorizontalRel final : public SVGPathSegLinetoHorizontal {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegLinetoHorizontalRel>;
private:
using SVGPathSegLinetoHorizontal::SVGPathSegLinetoHorizontal;
SVGPathSegType pathSegType() const final { return SVGPathSegType::LineToHorizontalRel; }
String pathSegTypeAsLetter() const final { return "h"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegLinetoHorizontalRel>(); }
};
class SVGPathSegLinetoVerticalAbs final : public SVGPathSegLinetoVertical {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegLinetoVerticalAbs>;
private:
using SVGPathSegLinetoVertical::SVGPathSegLinetoVertical;
SVGPathSegType pathSegType() const final { return SVGPathSegType::LineToVerticalAbs; }
String pathSegTypeAsLetter() const final { return "V"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegLinetoVerticalAbs>(); }
};
class SVGPathSegLinetoVerticalRel final : public SVGPathSegLinetoVertical {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegLinetoVerticalRel>;
private:
using SVGPathSegLinetoVertical::SVGPathSegLinetoVertical;
SVGPathSegType pathSegType() const final { return SVGPathSegType::LineToVerticalRel; }
String pathSegTypeAsLetter() const final { return "v"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegLinetoVerticalRel>(); }
};
class SVGPathSegMovetoAbs final : public SVGPathSegSingleCoordinate {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegMovetoAbs>;
private:
using SVGPathSegSingleCoordinate::SVGPathSegSingleCoordinate;
SVGPathSegType pathSegType() const final { return SVGPathSegType::MoveToAbs; }
String pathSegTypeAsLetter() const final { return "M"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegMovetoAbs>(); }
};
class SVGPathSegMovetoRel final : public SVGPathSegSingleCoordinate {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegMovetoRel>;
private:
using SVGPathSegSingleCoordinate::SVGPathSegSingleCoordinate;
SVGPathSegType pathSegType() const final { return SVGPathSegType::MoveToRel; }
String pathSegTypeAsLetter() const final { return "m"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegMovetoRel>(); }
};
class SVGPathSegLinetoAbs final : public SVGPathSegSingleCoordinate {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegLinetoAbs>;
private:
using SVGPathSegSingleCoordinate::SVGPathSegSingleCoordinate;
SVGPathSegType pathSegType() const final { return SVGPathSegType::LineToAbs; }
String pathSegTypeAsLetter() const final { return "L"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegLinetoAbs>(); }
};
class SVGPathSegLinetoRel final : public SVGPathSegSingleCoordinate {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegLinetoRel>;
private:
using SVGPathSegSingleCoordinate::SVGPathSegSingleCoordinate;
SVGPathSegType pathSegType() const final { return SVGPathSegType::LineToRel; }
String pathSegTypeAsLetter() const final { return "l"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegLinetoRel>(); }
};
class SVGPathSegCurvetoQuadraticAbs final : public SVGPathSegCurvetoQuadratic {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegCurvetoQuadraticAbs>;
private:
using SVGPathSegCurvetoQuadratic::SVGPathSegCurvetoQuadratic;
SVGPathSegType pathSegType() const final { return SVGPathSegType::CurveToQuadraticAbs; }
String pathSegTypeAsLetter() const final { return "Q"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegCurvetoQuadraticAbs>(); }
};
class SVGPathSegCurvetoQuadraticRel final : public SVGPathSegCurvetoQuadratic {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegCurvetoQuadraticRel>;
private:
using SVGPathSegCurvetoQuadratic::SVGPathSegCurvetoQuadratic;
SVGPathSegType pathSegType() const final { return SVGPathSegType::CurveToQuadraticRel; }
String pathSegTypeAsLetter() const final { return "q"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegCurvetoQuadraticRel>(); }
};
class SVGPathSegCurvetoCubicAbs final : public SVGPathSegCurvetoCubic {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegCurvetoCubicAbs>;
private:
using SVGPathSegCurvetoCubic::SVGPathSegCurvetoCubic;
SVGPathSegType pathSegType() const final { return SVGPathSegType::CurveToCubicAbs; }
String pathSegTypeAsLetter() const final { return "C"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegCurvetoCubicAbs>(); }
};
class SVGPathSegCurvetoCubicRel final : public SVGPathSegCurvetoCubic {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegCurvetoCubicRel>;
private:
using SVGPathSegCurvetoCubic::SVGPathSegCurvetoCubic;
SVGPathSegType pathSegType() const final { return SVGPathSegType::CurveToCubicRel; }
String pathSegTypeAsLetter() const final { return "c"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegCurvetoCubicRel>(); }
};
class SVGPathSegArcAbs final : public SVGPathSegArc {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegArcAbs>;
private:
using SVGPathSegArc::SVGPathSegArc;
SVGPathSegType pathSegType() const final { return SVGPathSegType::ArcAbs; }
String pathSegTypeAsLetter() const final { return "A"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegArcAbs>(); }
};
class SVGPathSegArcRel final : public SVGPathSegArc {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegArcRel>;
private:
using SVGPathSegArc::SVGPathSegArc;
SVGPathSegType pathSegType() const final { return SVGPathSegType::ArcRel; }
String pathSegTypeAsLetter() const final { return "a"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegArcRel>(); }
};
class SVGPathSegCurvetoQuadraticSmoothAbs final : public SVGPathSegSingleCoordinate {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegCurvetoQuadraticSmoothAbs>;
private:
using SVGPathSegSingleCoordinate::SVGPathSegSingleCoordinate;
SVGPathSegType pathSegType() const final { return SVGPathSegType::CurveToQuadraticSmoothAbs; }
String pathSegTypeAsLetter() const final { return "T"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegCurvetoQuadraticSmoothAbs>(); }
};
class SVGPathSegCurvetoQuadraticSmoothRel final : public SVGPathSegSingleCoordinate {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegCurvetoQuadraticSmoothRel>;
private:
using SVGPathSegSingleCoordinate::SVGPathSegSingleCoordinate;
SVGPathSegType pathSegType() const final { return SVGPathSegType::CurveToQuadraticSmoothRel; }
String pathSegTypeAsLetter() const final { return "t"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegCurvetoQuadraticSmoothRel>(); }
};
class SVGPathSegCurvetoCubicSmoothAbs final : public SVGPathSegCurvetoCubicSmooth {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegCurvetoCubicSmoothAbs>;
private:
using SVGPathSegCurvetoCubicSmooth::SVGPathSegCurvetoCubicSmooth;
SVGPathSegType pathSegType() const final { return SVGPathSegType::CurveToCubicSmoothAbs; }
String pathSegTypeAsLetter() const final { return "S"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegCurvetoCubicSmoothAbs>(); }
};
class SVGPathSegCurvetoCubicSmoothRel final : public SVGPathSegCurvetoCubicSmooth {
public:
static constexpr auto create = SVGPathSegValue::create<SVGPathSegCurvetoCubicSmoothRel>;
private:
using SVGPathSegCurvetoCubicSmooth::SVGPathSegCurvetoCubicSmooth;
SVGPathSegType pathSegType() const final { return SVGPathSegType::CurveToCubicSmoothRel; }
String pathSegTypeAsLetter() const final { return "s"_s; }
Ref<SVGPathSeg> clone() const final { return SVGPathSegValue::cloneInternal<SVGPathSegCurvetoCubicSmoothRel>(); }
};
} // namespace WebCore
|