blob: a5278dcd2dbbb7ac5226fdc68b8b8893d2c7cdb8 [file] [log] [blame]
#include "SampleCode.h"
#include "SkCanvas.h"
#include "SkPaint.h"
#include "SkView.h"
#include "SkLayer.h"
///////////////////////////////////////////////////////////////////////////////
class TestLayer : public SkLayer {
public:
TestLayer(SkColor c) : fColor(c) {}
protected:
virtual void onDraw(SkCanvas* canvas, SkScalar opacity) {
SkRect r;
r.set(0, 0, this->getWidth(), this->getHeight());
SkPaint paint;
paint.setColor(fColor);
paint.setAlpha(SkScalarRound(opacity * 255));
canvas->drawRect(r, paint);
}
private:
SkColor fColor;
};
class SkLayerView : public SkView {
private:
SkLayer* fRootLayer;
public:
SkLayerView() {
static const int W = 600;
static const int H = 440;
static const struct {
int fWidth;
int fHeight;
SkColor fColor;
int fPosX;
int fPosY;
} gData[] = {
{ 120, 80, SK_ColorRED, 0, 0 },
{ 120, 80, SK_ColorGREEN, W - 120, 0 },
{ 120, 80, SK_ColorBLUE, 0, H - 80 },
{ 120, 80, SK_ColorMAGENTA, W - 120, H - 80 },
};
fRootLayer = new TestLayer(0xFFDDDDDD);
fRootLayer->setSize(W, H);
for (size_t i = 0; i < SK_ARRAY_COUNT(gData); i++) {
SkLayer* child = new TestLayer(gData[i].fColor);
child->setSize(gData[i].fWidth, gData[i].fHeight);
child->setPosition(gData[i].fPosX, gData[i].fPosY);
fRootLayer->addChild(child)->unref();
}
SkLayer* child = new TestLayer(0xFFDD8844);
child->setSize(120, 80);
child->setPosition(fRootLayer->getWidth()/2 - child->getWidth()/2,
fRootLayer->getHeight()/2 - child->getHeight()/2);
child->setAnchorPoint(SK_ScalarHalf, SK_ScalarHalf);
{
SkMatrix m;
m.setRotate(SkIntToScalar(30));
child->setMatrix(m);
}
fRootLayer->addChild(child)->unref();
}
virtual ~SkLayerView() {
SkSafeUnref(fRootLayer);
}
protected:
// overrides from SkEventSink
virtual bool onQuery(SkEvent* evt) {
if (SampleCode::TitleQ(*evt)) {
SampleCode::TitleR(evt, "SkLayer");
return true;
}
return this->INHERITED::onQuery(evt);
}
void drawBG(SkCanvas* canvas) {
canvas->drawColor(SK_ColorWHITE);
canvas->translate(20, 20);
fRootLayer->draw(canvas);
}
virtual void onDraw(SkCanvas* canvas) {
this->drawBG(canvas);
}
private:
typedef SkView INHERITED;
};
///////////////////////////////////////////////////////////////////////////////
static SkView* MyFactory() { return new SkLayerView; }
static SkViewRegister reg(MyFactory);