2011-07-28 14:26:00 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright 2011 Google Inc.
|
|
|
|
*
|
|
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
|
|
* found in the LICENSE file.
|
|
|
|
*/
|
2010-02-11 13:56:04 +00:00
|
|
|
#ifndef SkTextLayout_DEFINED
|
|
|
|
#define SkTextLayout_DEFINED
|
|
|
|
|
|
|
|
#include "SkPaint.h"
|
|
|
|
#include "SkRefCnt.h"
|
|
|
|
|
|
|
|
class SkTextStyle : public SkRefCnt {
|
|
|
|
public:
|
2012-06-21 20:25:03 +00:00
|
|
|
SK_DECLARE_INST_COUNT(SkTextStyle)
|
|
|
|
|
2010-02-11 13:56:04 +00:00
|
|
|
SkTextStyle();
|
|
|
|
SkTextStyle(const SkTextStyle&);
|
|
|
|
explicit SkTextStyle(const SkPaint&);
|
|
|
|
virtual ~SkTextStyle();
|
|
|
|
|
|
|
|
const SkPaint& paint() const { return fPaint; }
|
|
|
|
SkPaint& paint() { return fPaint; }
|
2012-08-23 18:09:54 +00:00
|
|
|
|
2010-02-11 13:56:04 +00:00
|
|
|
// todo: bidi-override, language
|
|
|
|
|
|
|
|
private:
|
|
|
|
SkPaint fPaint;
|
2012-06-21 20:25:03 +00:00
|
|
|
|
|
|
|
typedef SkRefCnt INHERITED;
|
2010-02-11 13:56:04 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
class SkTextLayout {
|
|
|
|
public:
|
|
|
|
SkTextLayout();
|
|
|
|
~SkTextLayout();
|
|
|
|
|
|
|
|
void setText(const char text[], size_t length);
|
|
|
|
void setBounds(const SkRect& bounds);
|
|
|
|
|
|
|
|
SkTextStyle* getDefaultStyle() const { return fDefaultStyle; }
|
|
|
|
SkTextStyle* setDefaultStyle(SkTextStyle*);
|
|
|
|
|
|
|
|
// SkTextStyle* setStyle(SkTextStyle*, size_t offset, size_t length);
|
|
|
|
|
|
|
|
void draw(SkCanvas* canvas);
|
|
|
|
|
|
|
|
private:
|
|
|
|
SkTDArray<char> fText;
|
|
|
|
SkTextStyle* fDefaultStyle;
|
|
|
|
SkRect fBounds;
|
|
|
|
|
|
|
|
// cache
|
|
|
|
struct Line;
|
|
|
|
struct GlyphRun;
|
|
|
|
SkTDArray<Line*> fLines;
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|