2018-01-31 22:06:59 +00:00
|
|
|
/*
|
|
|
|
* Copyright 2018 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef SkSGText_DEFINED
|
|
|
|
#define SkSGText_DEFINED
|
|
|
|
|
|
|
|
#include "SkSGGeometryNode.h"
|
|
|
|
|
|
|
|
#include "SkPaintDefaults.h"
|
|
|
|
#include "SkPoint.h"
|
|
|
|
#include "SkString.h"
|
2018-10-30 16:53:21 +00:00
|
|
|
#include "SkTextUtils.h"
|
2018-01-31 22:06:59 +00:00
|
|
|
|
|
|
|
class SkCanvas;
|
|
|
|
class SkPaint;
|
|
|
|
class SkTextBlob;
|
|
|
|
class SkTypeface;
|
|
|
|
|
|
|
|
namespace sksg {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Concrete Geometry node, wrapping a (shaped) SkTextBlob.
|
|
|
|
*/
|
|
|
|
class Text final : public GeometryNode {
|
|
|
|
public:
|
|
|
|
static sk_sp<Text> Make(sk_sp<SkTypeface> tf, const SkString& text);
|
|
|
|
~Text() override;
|
|
|
|
|
2018-08-27 02:06:55 +00:00
|
|
|
SG_ATTRIBUTE(Typeface, sk_sp<SkTypeface>, fTypeface)
|
|
|
|
SG_ATTRIBUTE(Text , SkString , fText )
|
|
|
|
SG_ATTRIBUTE(Flags , uint32_t , fFlags )
|
|
|
|
SG_ATTRIBUTE(Position, SkPoint , fPosition)
|
|
|
|
SG_ATTRIBUTE(Size , SkScalar , fSize )
|
|
|
|
SG_ATTRIBUTE(ScaleX , SkScalar , fScaleX )
|
|
|
|
SG_ATTRIBUTE(SkewX , SkScalar , fSkewX )
|
2018-10-30 16:53:21 +00:00
|
|
|
SG_ATTRIBUTE(Align , SkTextUtils::Align , fAlign )
|
2018-08-27 02:06:55 +00:00
|
|
|
SG_ATTRIBUTE(Hinting , SkPaint::Hinting , fHinting )
|
2018-01-31 22:06:59 +00:00
|
|
|
|
|
|
|
// TODO: add shaping functionality.
|
|
|
|
|
|
|
|
protected:
|
|
|
|
void onClip(SkCanvas*, bool antiAlias) const override;
|
|
|
|
void onDraw(SkCanvas*, const SkPaint&) const override;
|
|
|
|
|
|
|
|
SkRect onRevalidate(InvalidationController*, const SkMatrix&) override;
|
|
|
|
SkPath onAsPath() const override;
|
|
|
|
|
|
|
|
private:
|
|
|
|
explicit Text(sk_sp<SkTypeface>, const SkString&);
|
|
|
|
|
2018-08-15 20:51:42 +00:00
|
|
|
SkPoint alignedPosition(SkScalar advance) const;
|
|
|
|
|
2018-08-27 02:06:55 +00:00
|
|
|
sk_sp<SkTypeface> fTypeface;
|
2018-01-31 22:06:59 +00:00
|
|
|
SkString fText;
|
|
|
|
uint32_t fFlags = SkPaintDefaults_Flags;
|
|
|
|
SkPoint fPosition = SkPoint::Make(0, 0);
|
|
|
|
SkScalar fSize = SkPaintDefaults_TextSize;
|
|
|
|
SkScalar fScaleX = 1;
|
|
|
|
SkScalar fSkewX = 0;
|
2018-10-30 16:53:21 +00:00
|
|
|
SkTextUtils::Align fAlign = SkTextUtils::kLeft_Align;
|
2018-01-31 22:06:59 +00:00
|
|
|
SkPaint::Hinting fHinting = SkPaintDefaults_Hinting;
|
|
|
|
|
|
|
|
sk_sp<SkTextBlob> fBlob; // cached text blob
|
|
|
|
|
|
|
|
using INHERITED = GeometryNode;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace sksg
|
|
|
|
|
|
|
|
#endif // SkSGText_DEFINED
|