blob: dc79be25a1817d70a6b00d55ee6979ec22fc0a91 [file] [log] [blame]
tomhudsonf7edcde2015-03-23 12:51:20 -07001/*
2 * Copyright 2015 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
7
8#ifndef SkAndroidSDKCanvas_DEFINED
9#define SkAndroidSDKCanvas_DEFINED
10
11#include "SkBitmap.h"
12#include "SkCanvas.h"
13#include "SkPaint.h"
14#include "SkPath.h"
15#include "SkRect.h"
16
17/** SkDrawFilter is likely to be deprecated; this is a proxy
18 canvas that does the same thing: alter SkPaint fields.
19
20 onDraw*() functions may have their SkPaint modified, and are then
21 passed on to the same function on proxyTarget. THIS BREAKS CONSTNESS!
22
23 This still suffers one of the same architectural flaws as SkDrawFilter:
24 TextBlob paints are incomplete when filter is called.
25*/
26
27class SkAndroidSDKCanvas : public SkCanvas {
28public:
29 SkAndroidSDKCanvas();
30 void reset(SkCanvas* newTarget);
31
32protected:
33
34 // FILTERING
35
mtklein36352bf2015-03-25 18:17:31 -070036 void onDrawPaint(const SkPaint& paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070037 void onDrawPoints(PointMode pMode, size_t count, const SkPoint pts[],
mtklein36352bf2015-03-25 18:17:31 -070038 const SkPaint& paint) override;
39 void onDrawOval(const SkRect& r, const SkPaint& paint) override;
40 void onDrawRect(const SkRect& r, const SkPaint& paint) override;
41 void onDrawRRect(const SkRRect& r, const SkPaint& paint) override;
42 void onDrawPath(const SkPath& path, const SkPaint& paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070043 void onDrawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
mtklein36352bf2015-03-25 18:17:31 -070044 const SkPaint* paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070045 void onDrawBitmapRect(const SkBitmap& bitmap, const SkRect* src, const SkRect& dst,
mtklein36352bf2015-03-25 18:17:31 -070046 const SkPaint* paint, DrawBitmapRectFlags flags) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070047 void onDrawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
mtklein36352bf2015-03-25 18:17:31 -070048 const SkRect& dst, const SkPaint* paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070049 void onDrawSprite(const SkBitmap& bitmap, int left, int top,
mtklein36352bf2015-03-25 18:17:31 -070050 const SkPaint* paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070051 void onDrawVertices(VertexMode vMode, int vertexCount, const SkPoint vertices[],
52 const SkPoint texs[], const SkColor colors[], SkXfermode* xMode,
53 const uint16_t indices[], int indexCount,
mtklein36352bf2015-03-25 18:17:31 -070054 const SkPaint& paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070055
56 void onDrawDRRect(const SkRRect& outer, const SkRRect& inner,
mtklein36352bf2015-03-25 18:17:31 -070057 const SkPaint& paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070058
59 void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
mtklein36352bf2015-03-25 18:17:31 -070060 const SkPaint& paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070061 void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
mtklein36352bf2015-03-25 18:17:31 -070062 const SkPaint& paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070063 void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
mtklein36352bf2015-03-25 18:17:31 -070064 SkScalar constY, const SkPaint& paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070065 void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
mtklein36352bf2015-03-25 18:17:31 -070066 const SkMatrix* matrix, const SkPaint& paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070067 void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
mtklein36352bf2015-03-25 18:17:31 -070068 const SkPaint& paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070069
70 void onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
71 const SkPoint texCoords[4], SkXfermode* xmode,
mtklein36352bf2015-03-25 18:17:31 -070072 const SkPaint& paint) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070073
mtklein36352bf2015-03-25 18:17:31 -070074 void onDrawImage(const SkImage*, SkScalar, SkScalar, const SkPaint*) override;
tomhudsonf7edcde2015-03-23 12:51:20 -070075 void onDrawImageRect(const SkImage*, const SkRect*, const SkRect&, const SkPaint*)
mtklein36352bf2015-03-25 18:17:31 -070076 override;
tomhudsonf7edcde2015-03-23 12:51:20 -070077 void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*);
78
79 // PASS THROUGH
80
mtklein36352bf2015-03-25 18:17:31 -070081 void onDrawDrawable(SkDrawable*) override;
82 SkISize getBaseLayerSize() const override;
83 bool getClipBounds(SkRect*) const override;
84 bool getClipDeviceBounds(SkIRect*) const override;
85 bool isClipEmpty() const override;
86 bool isClipRect() const override;
87 SkSurface* onNewSurface(const SkImageInfo&, const SkSurfaceProps&) override;
88 const void* onPeekPixels(SkImageInfo*, size_t*) override;
89 void* onAccessTopLayerPixels(SkImageInfo*, size_t*) override;
90 void willSave() override;
91 void willRestore() override;
92 void didRestore() override;
93 void didConcat(const SkMatrix&) override;
94 void didSetMatrix(const SkMatrix&) override;
95 void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) override;
96 void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) override;
97 void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) override;
98 void onClipRegion(const SkRegion&, SkRegion::Op) override;
99 void onDiscard() override;
tomhudsonf7edcde2015-03-23 12:51:20 -0700100
101protected:
102 SkCanvas* fProxyTarget;
103};
104
105#endif // SkAndroidSDKCanvas_DEFINED
106