aboutsummaryrefslogtreecommitdiffstats
path: root/samplecode/SampleBox.cpp
blob: 0b1da073e0e79455e170a78bac30da5abb2bf96c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55

/*
 * 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"

class SimpleView : public SampleView {
public:
	SimpleView() {
        this->setBGColor(0xFFDDDDDD);
	}
	
protected:
    // overrides from SkEventSink
    virtual bool onQuery(SkEvent* evt)  {
        if (SampleCode::TitleQ(*evt)) {
            SampleCode::TitleR(evt, "Box Gradient");
            return true;
        }
        return this->INHERITED::onQuery(evt);
    }
	
    virtual void onDrawContent(SkCanvas* canvas) {
        SkPaint paint;
        paint.setAntiAlias(true);
        paint.setStyle(SkPaint::kStroke_Style);
        paint.setStrokeWidth(SkScalarHalf(SkIntToScalar(3)));
        paint.setStyle(SkPaint::kFill_Style);
        
        SkRect  r;
        SkScalar x,y;
        x = 10;
        y = 10;

        r.set(x, y, x + SkIntToScalar(100), y + SkIntToScalar(100));
        for (int i = 0; i < 256; ++i) {
            canvas->translate(1, 1);
            paint.setColor(0xFF000000 + i * 0x00010000);
            canvas->drawRect(r, paint);
        }
    }
	
private:
    typedef SampleView INHERITED;
};

//////////////////////////////////////////////////////////////////////////////

static SkView* MyFactory() { return new SimpleView; }
static SkViewRegister reg(MyFactory);