2016-08-03 17:21:11 +00:00
|
|
|
/*
|
|
|
|
* 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 SkSVGRect_DEFINED
|
|
|
|
#define SkSVGRect_DEFINED
|
|
|
|
|
|
|
|
#include "SkSVGShape.h"
|
|
|
|
#include "SkSVGTypes.h"
|
|
|
|
|
2016-12-08 14:26:47 +00:00
|
|
|
class SkRRect;
|
|
|
|
|
2016-08-03 17:21:11 +00:00
|
|
|
class SkSVGRect final : public SkSVGShape {
|
|
|
|
public:
|
2017-03-22 16:05:03 +00:00
|
|
|
~SkSVGRect() override = default;
|
2016-08-03 17:21:11 +00:00
|
|
|
static sk_sp<SkSVGRect> Make() { return sk_sp<SkSVGRect>(new SkSVGRect()); }
|
|
|
|
|
|
|
|
void setX(const SkSVGLength&);
|
|
|
|
void setY(const SkSVGLength&);
|
|
|
|
void setWidth(const SkSVGLength&);
|
|
|
|
void setHeight(const SkSVGLength&);
|
2016-08-11 00:11:29 +00:00
|
|
|
void setRx(const SkSVGLength&);
|
|
|
|
void setRy(const SkSVGLength&);
|
2016-08-03 17:21:11 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void onSetAttribute(SkSVGAttribute, const SkSVGValue&) override;
|
|
|
|
|
2016-12-01 18:35:11 +00:00
|
|
|
void onDraw(SkCanvas*, const SkSVGLengthContext&, const SkPaint&,
|
|
|
|
SkPath::FillType) const override;
|
2016-08-03 17:21:11 +00:00
|
|
|
|
2016-12-08 14:26:47 +00:00
|
|
|
SkPath onAsPath(const SkSVGRenderContext&) const override;
|
|
|
|
|
2016-08-03 17:21:11 +00:00
|
|
|
private:
|
|
|
|
SkSVGRect();
|
|
|
|
|
2016-12-08 14:26:47 +00:00
|
|
|
SkRRect resolve(const SkSVGLengthContext&) const;
|
|
|
|
|
2016-08-03 17:21:11 +00:00
|
|
|
SkSVGLength fX = SkSVGLength(0);
|
|
|
|
SkSVGLength fY = SkSVGLength(0);
|
|
|
|
SkSVGLength fWidth = SkSVGLength(0);
|
|
|
|
SkSVGLength fHeight = SkSVGLength(0);
|
|
|
|
|
2016-08-11 00:11:29 +00:00
|
|
|
// The x radius for rounded rects.
|
|
|
|
SkSVGLength fRx = SkSVGLength(0);
|
|
|
|
// The y radius for rounded rects.
|
|
|
|
SkSVGLength fRy = SkSVGLength(0);
|
|
|
|
|
2016-08-03 17:21:11 +00:00
|
|
|
typedef SkSVGShape INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // SkSVGRect_DEFINED
|