aboutsummaryrefslogtreecommitdiffhomepage
path: root/experimental/CocoaDebugger/SkInfoPanelView.cpp
blob: 3b54860148bf713dbda221fddf0227e7de5d5be0 (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

/*
 * 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 "SkDebuggerViews.h"
#include "SkRect.h"

SkInfoPanelView::SkInfoPanelView() {
    fBGColor = 0xFF999999;
    fPaint.setColor(fBGColor);
}

bool SkInfoPanelView::onEvent(const SkEvent& evt) {
    if (evt.isType(SkDebugger_StateType)) {
        fMatrix = evt.findString(SkDebugger_Matrix);
        fClip = evt.findString(SkDebugger_Clip);
        
        SkPaint* ptr;
        if (evt.getMetaData().findPtr(SkDebugger_Paint, (void**)&ptr)) {
            fPaint = *ptr;
            fPaintInfo = evt.findString(SkDebugger_PaintInfo);
        }
        this->inval(NULL);
        return true;
    }
    return this->INHERITED::onEvent(evt);
}

void SkInfoPanelView::onDraw(SkCanvas* canvas) {
    canvas->drawColor(fBGColor);
    
    //Display Current Paint
    SkRect r = {10, 20, 40, 50};
    canvas->drawRect(r, fPaint);
    //Display Information
    SkPaint p;
    p.setTextSize(SkDebugger_TextSize);
    p.setAntiAlias(true);
    int x = 50;
    canvas->drawText(fPaintInfo.c_str(), fPaintInfo.size(), x, 30, p);
    canvas->drawText(fMatrix.c_str(), fMatrix.size(), x, 60, p);
    canvas->drawText(fClip.c_str(), fClip.size(), x, 90, p);
    
    this->INHERITED::onDraw(canvas);
}