aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/svg/model/SkSVGEllipse.h
diff options
context:
space:
mode:
authorGravatar fmalita <fmalita@chromium.org>2016-08-16 15:38:51 -0700
committerGravatar Commit bot <commit-bot@chromium.org>2016-08-16 15:38:51 -0700
commitdc4c2a9fb7210925df7cc5c142b691e6c817ca77 (patch)
treedced094ef0ebd63d084cbcb14d5cc67ac811f01e /experimental/svg/model/SkSVGEllipse.h
parent36931c2b47f81db7ccf441937567c6fda72ad3e6 (diff)
[SVGDom] Add <circle>, <ellipse> support
R=robertphillips@google.com,stephana@google.com GOLD_TRYBOT_URL= https://gold.skia.org/search?issue=2249033003 Review-Url: https://codereview.chromium.org/2249033003
Diffstat (limited to 'experimental/svg/model/SkSVGEllipse.h')
-rw-r--r--experimental/svg/model/SkSVGEllipse.h40
1 files changed, 40 insertions, 0 deletions
diff --git a/experimental/svg/model/SkSVGEllipse.h b/experimental/svg/model/SkSVGEllipse.h
new file mode 100644
index 0000000000..640d7f6f26
--- /dev/null
+++ b/experimental/svg/model/SkSVGEllipse.h
@@ -0,0 +1,40 @@
+/*
+ * Copyright 2016 Google Inc.
+ *
+ * Use of this source code is governed by a BSD-style license that can be
+ * found in the LICENSE file.
+ */
+
+#ifndef SkSVGEllipse_DEFINED
+#define SkSVGEllipse_DEFINED
+
+#include "SkSVGShape.h"
+#include "SkSVGTypes.h"
+
+class SkSVGEllipse final : public SkSVGShape {
+public:
+ virtual ~SkSVGEllipse() = default;
+ static sk_sp<SkSVGEllipse> Make() { return sk_sp<SkSVGEllipse>(new SkSVGEllipse()); }
+
+ void setCx(const SkSVGLength&);
+ void setCy(const SkSVGLength&);
+ void setRx(const SkSVGLength&);
+ void setRy(const SkSVGLength&);
+
+protected:
+ void onSetAttribute(SkSVGAttribute, const SkSVGValue&) override;
+
+ void onDraw(SkCanvas*, const SkSVGLengthContext&, const SkPaint&) const override;
+
+private:
+ SkSVGEllipse();
+
+ SkSVGLength fCx = SkSVGLength(0);
+ SkSVGLength fCy = SkSVGLength(0);
+ SkSVGLength fRx = SkSVGLength(0);
+ SkSVGLength fRy = SkSVGLength(0);
+
+ typedef SkSVGShape INHERITED;
+};
+
+#endif // SkSVGEllipse_DEFINED