2012-01-10 15:33:12 +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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "gm.h"
|
|
|
|
#include "SkCanvas.h"
|
|
|
|
#include "SkPath.h"
|
|
|
|
#include "SkTypeface.h"
|
|
|
|
|
|
|
|
namespace skiagm {
|
|
|
|
|
|
|
|
class StrokeFillGM : public GM {
|
|
|
|
public:
|
|
|
|
StrokeFillGM() {
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
virtual SkString onShortName() {
|
|
|
|
return SkString("stroke-fill");
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual SkISize onISize() {
|
|
|
|
return make_isize(640, 480);
|
|
|
|
}
|
|
|
|
|
|
|
|
virtual void onDraw(SkCanvas* canvas) {
|
2012-01-10 18:40:03 +00:00
|
|
|
SkPaint paint;
|
|
|
|
const char text[] = "Hello"; // "Hello";
|
|
|
|
const size_t len = sizeof(text) - 1;
|
|
|
|
paint.setAntiAlias(true);
|
|
|
|
paint.setTextSize(SkIntToScalar(100));
|
2012-01-11 18:16:39 +00:00
|
|
|
// SkTypeface* hira = SkTypeface::CreateFromName("Hiragino Maru Gothic Pro", SkTypeface::kNormal);
|
|
|
|
SkTypeface* hira = SkTypeface::CreateFromName("Papyrus", SkTypeface::kNormal);
|
2012-01-10 18:40:03 +00:00
|
|
|
paint.setTypeface(hira);
|
2012-01-10 19:28:01 +00:00
|
|
|
SkScalar x = SkIntToScalar(180);
|
|
|
|
SkScalar y = SkIntToScalar(88);
|
2012-01-10 18:40:03 +00:00
|
|
|
|
|
|
|
canvas->drawText(text, len, x, y, paint);
|
|
|
|
paint.setFakeBoldText(true);
|
2012-01-10 19:28:01 +00:00
|
|
|
canvas->drawText(text, len, x, y + SkIntToScalar(100), paint);
|
2012-01-10 18:40:03 +00:00
|
|
|
paint.setStyle(SkPaint::kStrokeAndFill_Style);
|
2012-01-10 19:28:01 +00:00
|
|
|
paint.setStrokeWidth(SkIntToScalar(5));
|
2012-01-10 18:40:03 +00:00
|
|
|
|
|
|
|
SkPath path;
|
|
|
|
path.setFillType(SkPath::kWinding_FillType);
|
2012-01-10 19:28:01 +00:00
|
|
|
path.addCircle(x, y + SkIntToScalar(200), SkIntToScalar(50), SkPath::kCW_Direction);
|
|
|
|
path.addCircle(x, y + SkIntToScalar(200), SkIntToScalar(40), SkPath::kCCW_Direction);
|
2012-01-10 18:40:03 +00:00
|
|
|
canvas->drawPath(path, paint);
|
|
|
|
|
|
|
|
SkPath path2;
|
|
|
|
path2.setFillType(SkPath::kWinding_FillType);
|
2012-01-10 19:28:01 +00:00
|
|
|
path2.addCircle(x + SkIntToScalar(120), y + SkIntToScalar(200), SkIntToScalar(50), SkPath::kCCW_Direction);
|
|
|
|
path2.addCircle(x + SkIntToScalar(120), y + SkIntToScalar(200), SkIntToScalar(40), SkPath::kCW_Direction);
|
2012-01-10 18:40:03 +00:00
|
|
|
canvas->drawPath(path2, paint);
|
|
|
|
|
|
|
|
path2.reset();
|
2012-01-10 19:28:01 +00:00
|
|
|
path2.addCircle(x + SkIntToScalar(240), y + SkIntToScalar(200), SkIntToScalar(50), SkPath::kCCW_Direction);
|
2012-01-10 18:40:03 +00:00
|
|
|
canvas->drawPath(path2, paint);
|
|
|
|
SkASSERT(path2.cheapIsDirection(SkPath::kCCW_Direction));
|
|
|
|
|
|
|
|
path2.reset();
|
|
|
|
SkASSERT(!path2.cheapComputeDirection(NULL));
|
2012-01-10 19:28:01 +00:00
|
|
|
path2.addCircle(x + SkIntToScalar(360), y + SkIntToScalar(200), SkIntToScalar(50), SkPath::kCW_Direction);
|
2012-01-10 18:40:03 +00:00
|
|
|
SkASSERT(path2.cheapIsDirection(SkPath::kCW_Direction));
|
|
|
|
canvas->drawPath(path2, paint);
|
2012-01-10 15:33:12 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
private:
|
|
|
|
typedef GM INHERITED;
|
|
|
|
};
|
|
|
|
|
|
|
|
//////////////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
|
|
static GM* MyFactory(void*) { return new StrokeFillGM; }
|
|
|
|
static GMRegistry reg(MyFactory);
|
|
|
|
|
|
|
|
}
|