1/*
2 * Copyright (C) 2006 Nikolas Zimmermann <zimmermann@kde.org>
3 *
4 * This library is free software; you can redistribute it and/or
5 * modify it under the terms of the GNU Library General Public
6 * License as published by the Free Software Foundation; either
7 * version 2 of the License, or (at your option) any later version.
8 *
9 * This library is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
12 * Library General Public License for more details.
13 *
14 * You should have received a copy of the GNU Library General Public License
15 * along with this library; see the file COPYING.LIB. If not, write to
16 * the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
17 * Boston, MA 02110-1301, USA.
18 */
19
20#pragma once
21
22#include "SVGPropertyTraits.h"
23#include <wtf/RefCounted.h>
24
25namespace WebCore {
26
27class SVGUnitTypes final : public RefCounted<SVGUnitTypes> {
28public:
29 enum SVGUnitType {
30 SVG_UNIT_TYPE_UNKNOWN = 0,
31 SVG_UNIT_TYPE_USERSPACEONUSE = 1,
32 SVG_UNIT_TYPE_OBJECTBOUNDINGBOX = 2
33 };
34
35private:
36 SVGUnitTypes() { }
37};
38
39template<>
40struct SVGPropertyTraits<SVGUnitTypes::SVGUnitType> {
41 static unsigned highestEnumValue() { return SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX; }
42
43 static String toString(SVGUnitTypes::SVGUnitType type)
44 {
45 switch (type) {
46 case SVGUnitTypes::SVG_UNIT_TYPE_UNKNOWN:
47 return emptyString();
48 case SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEONUSE:
49 return "userSpaceOnUse"_s;
50 case SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX:
51 return "objectBoundingBox"_s;
52 }
53
54 ASSERT_NOT_REACHED();
55 return emptyString();
56 }
57
58 static SVGUnitTypes::SVGUnitType fromString(const String& value)
59 {
60 if (value == "userSpaceOnUse")
61 return SVGUnitTypes::SVG_UNIT_TYPE_USERSPACEONUSE;
62 if (value == "objectBoundingBox")
63 return SVGUnitTypes::SVG_UNIT_TYPE_OBJECTBOUNDINGBOX;
64 return SVGUnitTypes::SVG_UNIT_TYPE_UNKNOWN;
65 }
66};
67
68} // namespace WebCore
69