1 /* 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 #ifndef SkSVGRect_DEFINED 9 #define SkSVGRect_DEFINED 10 11 #include "modules/svg/include/SkSVGShape.h" 12 #include "modules/svg/include/SkSVGTypes.h" 13 14 class SkRRect; 15 16 class SkSVGRect final : public SkSVGShape { 17 public: Make()18 static sk_sp<SkSVGRect> Make() { return sk_sp<SkSVGRect>(new SkSVGRect()); } 19 20 SVG_ATTR(X , SkSVGLength, SkSVGLength(0)) 21 SVG_ATTR(Y , SkSVGLength, SkSVGLength(0)) 22 SVG_ATTR(Width , SkSVGLength, SkSVGLength(0)) 23 SVG_ATTR(Height, SkSVGLength, SkSVGLength(0)) 24 25 SVG_OPTIONAL_ATTR(Rx, SkSVGLength) 26 SVG_OPTIONAL_ATTR(Ry, SkSVGLength) 27 28 protected: 29 bool parseAndSetAttribute(const char*, const char*) override; 30 31 void onDraw(SkCanvas*, const SkSVGLengthContext&, const SkPaint&, 32 SkPathFillType) const override; 33 34 SkPath onAsPath(const SkSVGRenderContext&) const override; 35 36 SkRect onObjectBoundingBox(const SkSVGRenderContext&) const override; 37 38 private: 39 SkSVGRect(); 40 41 SkRRect resolve(const SkSVGLengthContext&) const; 42 43 using INHERITED = SkSVGShape; 44 }; 45 46 #endif // SkSVGRect_DEFINED 47