blob: 27a82169b8a111174ba72e4e3b3f5dffce9515e2 [file] [log] [blame]
epoger@google.comec3ed6a2011-07-28 14:26:00 +00001
2/*
3 * Copyright 2011 Google Inc.
4 *
5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file.
7 */
reed@android.com8a1c16f2008-12-17 15:59:43 +00008#ifndef SkProxyCanvas_DEFINED
9#define SkProxyCanvas_DEFINED
10
11#include "SkCanvas.h"
12
13/** This class overrides all virtual methods on SkCanvas, and redirects them
14 to a "proxy", another SkCanvas instance. It can be the basis for
15 intercepting (and possibly modifying) calls to a canvas.
vandebo@chromium.org74b46192012-01-28 01:45:11 +000016
reed@android.com8a1c16f2008-12-17 15:59:43 +000017 There must be a proxy installed before the proxycanvas can be used (i.e.
18 before its virtual methods can be called).
19 */
commit-bot@chromium.orge1a81d22013-07-15 22:49:37 +000020class SK_API SkProxyCanvas : public SkCanvas {
reed@android.com8a1c16f2008-12-17 15:59:43 +000021public:
22 SkProxyCanvas() : fProxy(NULL) {}
23 SkProxyCanvas(SkCanvas* proxy);
24 virtual ~SkProxyCanvas();
vandebo@chromium.org74b46192012-01-28 01:45:11 +000025
reed@android.com8a1c16f2008-12-17 15:59:43 +000026 SkCanvas* getProxy() const { return fProxy; }
27 void setProxy(SkCanvas* proxy);
vandebo@chromium.org74b46192012-01-28 01:45:11 +000028
reed@google.com2d4297c2011-10-06 13:14:12 +000029 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000030 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
reed@google.com2d4297c2011-10-06 13:14:12 +000031 const SkPaint& paint) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000032 virtual void drawOval(const SkRect&, const SkPaint& paint) SK_OVERRIDE;
bsalomon@google.com7ce564c2013-10-22 16:54:15 +000033 virtual void drawRect(const SkRect&, const SkPaint& paint) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000034 virtual void drawRRect(const SkRRect&, const SkPaint& paint) SK_OVERRIDE;
bsalomon@google.com7ce564c2013-10-22 16:54:15 +000035 virtual void drawPath(const SkPath& path, const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000036 virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
reed@google.com2d4297c2011-10-06 13:14:12 +000037 const SkPaint* paint = NULL) SK_OVERRIDE;
reed@google.com71121732012-09-18 15:14:33 +000038 virtual void drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +000039 const SkRect& dst, const SkPaint* paint,
40 DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000041 virtual void drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m,
reed@google.com2d4297c2011-10-06 13:14:12 +000042 const SkPaint* paint = NULL) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000043 virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
reed@google.com2d4297c2011-10-06 13:14:12 +000044 const SkPaint* paint = NULL) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000045 virtual void drawVertices(VertexMode vmode, int vertexCount,
46 const SkPoint vertices[], const SkPoint texs[],
47 const SkColor colors[], SkXfermode* xmode,
48 const uint16_t indices[], int indexCount,
reed@google.com2d4297c2011-10-06 13:14:12 +000049 const SkPaint& paint) SK_OVERRIDE;
50 virtual void drawData(const void* data, size_t length) SK_OVERRIDE;
reed@android.comcb608442009-12-04 21:32:27 +000051
robertphillips@google.com0a4805e2013-05-29 13:24:23 +000052 virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
53 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE;
54 virtual void endCommentGroup() SK_OVERRIDE;
55
reed@google.com2d4297c2011-10-06 13:14:12 +000056 virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000057
commit-bot@chromium.orgab582732014-02-21 12:20:45 +000058protected:
Florin Malita5f6102d2014-06-30 10:13:28 -040059 virtual void willSave() SK_OVERRIDE;
commit-bot@chromium.orge54a23f2014-03-12 20:21:48 +000060 virtual SaveLayerStrategy willSaveLayer(const SkRect*, const SkPaint*, SaveFlags) SK_OVERRIDE;
61 virtual void willRestore() SK_OVERRIDE;
62
commit-bot@chromium.org44c48d02014-03-13 20:03:58 +000063 virtual void didConcat(const SkMatrix&) SK_OVERRIDE;
64 virtual void didSetMatrix(const SkMatrix&) SK_OVERRIDE;
65
commit-bot@chromium.orgab582732014-02-21 12:20:45 +000066 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK_OVERRIDE;
reed@google.come0d9ce82014-04-23 04:00:17 +000067 virtual void onDrawText(const void* text, size_t byteLength, SkScalar x, SkScalar y,
68 const SkPaint&) SK_OVERRIDE;
69 virtual void onDrawPosText(const void* text, size_t byteLength, const SkPoint pos[],
70 const SkPaint&) SK_OVERRIDE;
71 virtual void onDrawPosTextH(const void* text, size_t byteLength, const SkScalar xpos[],
72 SkScalar constY, const SkPaint&) SK_OVERRIDE;
73 virtual void onDrawTextOnPath(const void* text, size_t byteLength, const SkPath& path,
74 const SkMatrix* matrix, const SkPaint&) SK_OVERRIDE;
fmalitab7425172014-08-26 07:56:44 -070075 virtual void onDrawTextBlob(const SkTextBlob* blob, SkScalar x, SkScalar y,
76 const SkPaint& paint) SK_OVERRIDE;
dandovb3c9d1c2014-08-12 08:34:29 -070077 virtual void onDrawPatch(const SkPoint cubics[12], const SkColor colors[4],
78 const SkPoint texCoords[4], SkXfermode* xmode,
79 const SkPaint& paint) SK_OVERRIDE;
80
robertphillips@google.com8f90a892014-02-28 18:19:39 +000081 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
82 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
83 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
84 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE;
85
reedd5fa1a42014-08-09 11:08:05 -070086 virtual void onDrawPicture(const SkPicture*, const SkMatrix*, const SkPaint*) SK_OVERRIDE;
robertphillips9b14f262014-06-04 05:40:44 -070087
reed@android.com8a1c16f2008-12-17 15:59:43 +000088private:
89 SkCanvas* fProxy;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000090
reed@android.com8a1c16f2008-12-17 15:59:43 +000091 typedef SkCanvas INHERITED;
92};
93
94#endif