skia2/samplecode/SampleAvoid.cpp
commit-bot@chromium.org 0a2bf90dcc Factory methods for heap-allocated SkPathEffect and SkXfermode objects.
This is part of an effort to ensure that all SkPaint effects can only be
allocated on the heap.

This patch makes the constructors of SkPathEffect, SkXfermode and
their subclasses non-public and instead provides factory methods for
creating these objects on the heap. We temporarily keep the constructors
of the following classes public to not break Chrome/Blink:

SkXfermode
SkCornerPathEffect
SkDashPathEffect

BUG=skia:2187
R=scroggo@google.com, reed@google.com, mtklein@google.com, bungeman@google.com

Author: dominikg@chromium.org

Review URL: https://codereview.chromium.org/166583002

git-svn-id: http://skia.googlecode.com/svn/trunk@13519 2bbb7eff-a529-9590-31e7-b0007b416f81
2014-02-20 20:40:19 +00:00

106 lines
3.2 KiB
C++

/*
* 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 "SampleCode.h"
#include "SkView.h"
#include "SkCanvas.h"
#include "SkGradientShader.h"
#include "SkAvoidXfermode.h"
///////////////////////////////////////////////////////////////////////////////
class AvoidView : public SampleView {
SkShader* fShader;
enum {
W = 480,
H = 320
};
public:
AvoidView() {
SkColor colors[] = { SK_ColorRED, SK_ColorYELLOW, SK_ColorGREEN, SK_ColorCYAN, SK_ColorBLUE };
#if 0
SkPoint pts[] = { 0, 0, SkIntToScalar(100), SkIntToScalar(100) };
fShader = SkGradientShader::CreateLinear(pts, colors, NULL,
SK_ARRAY_COUNT(colors),
SkShader::kMirror_TileMode);
#else
SkPoint pts[] = { { SkIntToScalar(W)/2, SkIntToScalar(H)/2 } };
fShader = SkGradientShader::CreateRadial(pts[0], SkIntToScalar(H)/5,
colors, NULL,
SK_ARRAY_COUNT(colors),
SkShader::kMirror_TileMode);
#endif
}
virtual ~AvoidView() {
fShader->unref();
}
protected:
virtual bool onQuery(SkEvent* evt) {
if (SampleCode::TitleQ(*evt)) {
SampleCode::TitleR(evt, "AvoidXfermode");
return true;
}
return this->INHERITED::onQuery(evt);
}
virtual void onDrawContent(SkCanvas* canvas) {
SkPaint paint;
SkRect r = { 0, 0, SkIntToScalar(W), SkIntToScalar(H) };
canvas->translate(r.width() / 6, r.height() / 6);
paint.setShader(fShader);
canvas->drawRect(r, paint);
static const struct {
int fTolerance;
SkAvoidXfermode::Mode fMode;
float fDX, fDY;
} gData[] = {
{ 16, SkAvoidXfermode::kAvoidColor_Mode, 0, 0 },
{ 255-16, SkAvoidXfermode::kAvoidColor_Mode, 1, 0 },
{ 16, SkAvoidXfermode::kTargetColor_Mode, 0, 1 },
{ 255-16, SkAvoidXfermode::kTargetColor_Mode, 1, 1 },
};
paint.setShader(NULL);
paint.setColor(SK_ColorMAGENTA);
SkPaint frameP;
frameP.setStyle(SkPaint::kStroke_Style);
for (size_t i = 0; i < SK_ARRAY_COUNT(gData); i++) {
SkAutoTUnref<SkAvoidXfermode> mode(SkAvoidXfermode::Create(
SK_ColorGREEN, gData[i].fTolerance, gData[i].fMode));
paint.setXfermode(mode);
int div = 3;
SkRect rr = { 0, 0, r.width()/div, r.height()/div };
rr.offset(r.width()/4 - rr.width()/2, r.height()/4 - rr.height()/2);
rr.offset(r.width() * gData[i].fDX/2, r.height() * gData[i].fDY/2);
canvas->drawRect(rr, paint);
paint.setXfermode(NULL);
canvas->drawRect(rr, frameP);
}
}
private:
typedef SampleView INHERITED;
};
//////////////////////////////////////////////////////////////////////////////
static SkView* MyFactory() {
return new AvoidView;
}
static SkViewRegister reg(MyFactory);