aboutsummaryrefslogtreecommitdiffhomepage
path: root/samplecode/SampleBitmapRect.cpp
blob: f164e0689e8cc04beff917d5cabae38117c6d473 (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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
#include "SampleCode.h"
#include "SkView.h"
#include "SkCanvas.h"
#include "SkGradientShader.h"
#include "SkGraphics.h"
#include "SkImageDecoder.h"
#include "SkPath.h"
#include "SkPorterDuff.h"
#include "SkRegion.h"
#include "SkShader.h"
#include "SkUtils.h"
#include "SkXfermode.h"
#include "SkColorPriv.h"
#include "SkColorFilter.h"
#include "SkTime.h"
#include "SkTypeface.h"

#include "SkImageRef.h"
#include "SkOSFile.h"
#include "SkStream.h"

#define SPECIFIC_IMAGE  "/skimages/main.gif"

class BitmapRectView : public SkView {
public:
    SkBitmap fBitmap;
    int      fCurrX, fCurrY;

	BitmapRectView() {
        SkImageDecoder::DecodeFile(SPECIFIC_IMAGE, &fBitmap);
        fCurrX = fCurrY = 0;
    }
    
protected:
    // overrides from SkEventSink
    virtual bool onQuery(SkEvent* evt)
    {
        if (SampleCode::TitleQ(*evt))
        {
            SkString str("BitmapRect: ");
            str.append(SPECIFIC_IMAGE);
            SampleCode::TitleR(evt, str.c_str());
            return true;
        }
        return this->INHERITED::onQuery(evt);
    }
    
    void drawBG(SkCanvas* canvas)
    {
        canvas->drawColor(SK_ColorGRAY);
    }
    
    virtual void onDraw(SkCanvas* canvas)
    {
        this->drawBG(canvas);
        
        canvas->drawBitmap(fBitmap, 0, 0, NULL);
        
        SkIRect subset;
        const int SRC_WIDTH = 16;
        const int SRC_HEIGHT = 16;
        
        subset.set(0, 0, SRC_WIDTH, SRC_HEIGHT);
        subset.offset(fCurrX, fCurrY);
        
        SkDebugf("---- src x=%d y=%d\n", subset.fLeft, subset.fTop);
        
        SkRect  dst0, dst1;
        SkScalar y = SkIntToScalar(fBitmap.height() + 16);
        
        dst0.set(SkIntToScalar(50), y,
                 SkIntToScalar(50+SRC_WIDTH),
                 y + SkIntToScalar(SRC_HEIGHT));
        dst1 = dst0;
        dst1.offset(SkIntToScalar(200), 0);
        dst1.fRight = dst1.fLeft + 8 * dst0.width();
        dst1.fBottom = dst1.fTop + 8 * dst0.height();
        
        canvas->drawBitmapRect(fBitmap, &subset, dst0, NULL);
        canvas->drawBitmapRect(fBitmap, &subset, dst1, NULL);
        
        SkPaint paint;
        paint.setColor(0x88FF0000);
        canvas->drawRect(dst0, paint);
        paint.setColor(0x880000FF);
        canvas->drawRect(dst1, paint);
    }
    
    virtual SkView::Click* onFindClickHandler(SkScalar x, SkScalar y) 
    {
        return new Click(this);
    }
    
    virtual bool onClick(Click* click) 
    {
        fCurrX = click->fICurr.fX;
        fCurrY = click->fICurr.fY;
        this->inval(NULL);
        return true;
    }
    
private:
    typedef SkView INHERITED;
};

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

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