2012-12-17 21:16:45 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkStrokeRec_DEFINED
|
|
|
|
#define SkStrokeRec_DEFINED
|
|
|
|
|
|
|
|
#include "SkPaint.h"
|
|
|
|
|
|
|
|
class SkPath;
|
|
|
|
|
|
|
|
class SkStrokeRec {
|
|
|
|
public:
|
|
|
|
enum InitStyle {
|
|
|
|
kHairline_InitStyle,
|
|
|
|
kFill_InitStyle
|
|
|
|
};
|
|
|
|
SkStrokeRec(InitStyle style);
|
2015-02-12 21:35:52 +00:00
|
|
|
SkStrokeRec(const SkPaint&, SkPaint::Style, SkScalar resScale = 1);
|
|
|
|
explicit SkStrokeRec(const SkPaint&, SkScalar resScale = 1);
|
2012-12-17 21:16:45 +00:00
|
|
|
|
|
|
|
enum Style {
|
|
|
|
kHairline_Style,
|
|
|
|
kFill_Style,
|
|
|
|
kStroke_Style,
|
|
|
|
kStrokeAndFill_Style
|
|
|
|
};
|
2014-07-21 22:32:44 +00:00
|
|
|
enum {
|
|
|
|
kStyleCount = kStrokeAndFill_Style + 1
|
|
|
|
};
|
2012-12-17 21:16:45 +00:00
|
|
|
|
|
|
|
Style getStyle() const;
|
|
|
|
SkScalar getWidth() const { return fWidth; }
|
|
|
|
SkScalar getMiter() const { return fMiterLimit; }
|
|
|
|
SkPaint::Cap getCap() const { return fCap; }
|
|
|
|
SkPaint::Join getJoin() const { return fJoin; }
|
|
|
|
|
|
|
|
bool isHairlineStyle() const {
|
|
|
|
return kHairline_Style == this->getStyle();
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isFillStyle() const {
|
|
|
|
return kFill_Style == this->getStyle();
|
|
|
|
}
|
|
|
|
|
|
|
|
void setFillStyle();
|
|
|
|
void setHairlineStyle();
|
|
|
|
/**
|
|
|
|
* Specify the strokewidth, and optionally if you want stroke + fill.
|
|
|
|
* Note, if width==0, then this request is taken to mean:
|
|
|
|
* strokeAndFill==true -> new style will be Fill
|
|
|
|
* strokeAndFill==false -> new style will be Hairline
|
|
|
|
*/
|
|
|
|
void setStrokeStyle(SkScalar width, bool strokeAndFill = false);
|
|
|
|
|
|
|
|
void setStrokeParams(SkPaint::Cap cap, SkPaint::Join join, SkScalar miterLimit) {
|
|
|
|
fCap = cap;
|
|
|
|
fJoin = join;
|
|
|
|
fMiterLimit = miterLimit;
|
|
|
|
}
|
|
|
|
|
2015-04-13 20:06:46 +00:00
|
|
|
void setResScale(SkScalar rs) {
|
|
|
|
SkASSERT(rs > 0 && SkScalarIsFinite(rs));
|
|
|
|
fResScale = rs;
|
|
|
|
}
|
|
|
|
|
2012-12-17 21:16:45 +00:00
|
|
|
/**
|
|
|
|
* Returns true if this specifes any thick stroking, i.e. applyToPath()
|
|
|
|
* will return true.
|
|
|
|
*/
|
|
|
|
bool needToApply() const {
|
|
|
|
Style style = this->getStyle();
|
|
|
|
return (kStroke_Style == style) || (kStrokeAndFill_Style == style);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Apply these stroke parameters to the src path, returning the result
|
|
|
|
* in dst.
|
|
|
|
*
|
|
|
|
* If there was no change (i.e. style == hairline or fill) this returns
|
|
|
|
* false and dst is unchanged. Otherwise returns true and the result is
|
|
|
|
* stored in dst.
|
|
|
|
*
|
|
|
|
* src and dst may be the same path.
|
|
|
|
*/
|
|
|
|
bool applyToPath(SkPath* dst, const SkPath& src) const;
|
|
|
|
|
2014-12-01 16:38:55 +00:00
|
|
|
/**
|
|
|
|
* Apply these stroke parameters to a paint.
|
|
|
|
*/
|
|
|
|
void applyToPaint(SkPaint* paint) const;
|
|
|
|
|
2015-05-13 07:02:26 +00:00
|
|
|
/**
|
|
|
|
* Compare if two SkStrokeRecs have an equal effect on a path.
|
|
|
|
* Equal SkStrokeRecs produce equal paths. Equality of produced
|
|
|
|
* paths does not take the ResScale parameter into account.
|
|
|
|
*/
|
|
|
|
bool hasEqualEffect(const SkStrokeRec& other) const {
|
|
|
|
if (!this->needToApply()) {
|
|
|
|
return this->getStyle() == other.getStyle();
|
|
|
|
}
|
|
|
|
return fWidth == other.fWidth &&
|
|
|
|
fMiterLimit == other.fMiterLimit &&
|
|
|
|
fCap == other.fCap &&
|
|
|
|
fJoin == other.fJoin &&
|
|
|
|
fStrokeAndFill == other.fStrokeAndFill;
|
2013-11-01 15:23:44 +00:00
|
|
|
}
|
|
|
|
|
2012-12-17 21:16:45 +00:00
|
|
|
private:
|
2015-02-12 21:35:52 +00:00
|
|
|
void init(const SkPaint&, SkPaint::Style, SkScalar resScale);
|
2014-06-12 17:24:21 +00:00
|
|
|
|
2015-02-12 21:35:52 +00:00
|
|
|
SkScalar fResScale;
|
2012-12-17 21:16:45 +00:00
|
|
|
SkScalar fWidth;
|
|
|
|
SkScalar fMiterLimit;
|
|
|
|
SkPaint::Cap fCap;
|
|
|
|
SkPaint::Join fJoin;
|
|
|
|
bool fStrokeAndFill;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|