aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/views/SkBGViewArtist.cpp
blob: c10fe3eb784fb49bde3efb045e68a4bd608e70ca (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

/*
 * 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 "SkBGViewArtist.h"
#include "SkCanvas.h"
#include "SkParsePaint.h"

SkBGViewArtist::SkBGViewArtist(SkColor c)
{
    fPaint.setColor(c);
}

SkBGViewArtist::~SkBGViewArtist()
{
}

void SkBGViewArtist::onDraw(SkView*, SkCanvas* canvas)
{
    // only works for views that are clipped their bounds.
    canvas->drawPaint(fPaint);
}

void SkBGViewArtist::onInflate(const SkDOM& dom, const SkDOM::Node* node)
{
    SkPaint_Inflate(&fPaint, dom, node);
}