blob: 3f38b222d59e1e39d658a88a4c8e2fc792287dec [file] [log] [blame]
fmalitadc4c2a92016-08-16 15:38:51 -07001/*
2 * Copyright 2016 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#include "SkCanvas.h"
9#include "SkSVGEllipse.h"
10#include "SkSVGRenderContext.h"
11#include "SkSVGValue.h"
12
13SkSVGEllipse::SkSVGEllipse() : INHERITED(SkSVGTag::kEllipse) {}
14
15void SkSVGEllipse::setCx(const SkSVGLength& cx) {
16 fCx = cx;
17}
18
19void SkSVGEllipse::setCy(const SkSVGLength& cy) {
20 fCy = cy;
21}
22
23void SkSVGEllipse::setRx(const SkSVGLength& rx) {
24 fRx = rx;
25}
26
27void SkSVGEllipse::setRy(const SkSVGLength& ry) {
28 fRy = ry;
29}
30
31void SkSVGEllipse::onSetAttribute(SkSVGAttribute attr, const SkSVGValue& v) {
32 switch (attr) {
33 case SkSVGAttribute::kCx:
34 if (const auto* cx = v.as<SkSVGLengthValue>()) {
35 this->setCx(*cx);
36 }
37 break;
38 case SkSVGAttribute::kCy:
39 if (const auto* cy = v.as<SkSVGLengthValue>()) {
40 this->setCy(*cy);
41 }
42 break;
43 case SkSVGAttribute::kRx:
44 if (const auto* rx = v.as<SkSVGLengthValue>()) {
45 this->setRx(*rx);
46 }
47 break;
48 case SkSVGAttribute::kRy:
49 if (const auto* ry = v.as<SkSVGLengthValue>()) {
50 this->setRy(*ry);
51 }
52 break;
53 default:
54 this->INHERITED::onSetAttribute(attr, v);
55 }
56}
57
Florin Malitace8840e2016-12-08 09:26:47 -050058SkRect SkSVGEllipse::resolve(const SkSVGLengthContext& lctx) const {
fmalitadc4c2a92016-08-16 15:38:51 -070059 const auto cx = lctx.resolve(fCx, SkSVGLengthContext::LengthType::kHorizontal);
60 const auto cy = lctx.resolve(fCy, SkSVGLengthContext::LengthType::kVertical);
61 const auto rx = lctx.resolve(fRx, SkSVGLengthContext::LengthType::kHorizontal);
62 const auto ry = lctx.resolve(fRy, SkSVGLengthContext::LengthType::kVertical);
63
Florin Malitace8840e2016-12-08 09:26:47 -050064 return (rx > 0 && ry > 0)
65 ? SkRect::MakeXYWH(cx - rx, cy - ry, rx * 2, ry * 2)
66 : SkRect::MakeEmpty();
67}
68
69void SkSVGEllipse::onDraw(SkCanvas* canvas, const SkSVGLengthContext& lctx,
70 const SkPaint& paint, SkPath::FillType) const {
71 canvas->drawOval(this->resolve(lctx), paint);
72}
73
74SkPath SkSVGEllipse::onAsPath(const SkSVGRenderContext& ctx) const {
75 SkPath path;
76 path.addOval(this->resolve(ctx.lengthContext()));
77 this->mapToParent(&path);
78
79 return path;
fmalitadc4c2a92016-08-16 15:38:51 -070080}