blob: d682ba3b44124436bfe47156c76696789fb8a10f [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
commit-bot@chromium.org069a55a2014-03-12 15:08:22 +000029 virtual int save(SaveFlags flags = kMatrixClip_SaveFlag) SK_OVERRIDE;
30 virtual int saveLayer(const SkRect* bounds, const SkPaint* paint,
31 SaveFlags flags = kARGB_ClipLayer_SaveFlag) SK_OVERRIDE;
32 virtual void restore() SK_OVERRIDE;
33
reed@google.com2d4297c2011-10-06 13:14:12 +000034 virtual bool translate(SkScalar dx, SkScalar dy) SK_OVERRIDE;
35 virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE;
36 virtual bool rotate(SkScalar degrees) SK_OVERRIDE;
37 virtual bool skew(SkScalar sx, SkScalar sy) SK_OVERRIDE;
38 virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE;
39 virtual void setMatrix(const SkMatrix& matrix) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000040
reed@google.com2d4297c2011-10-06 13:14:12 +000041 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000042 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
reed@google.com2d4297c2011-10-06 13:14:12 +000043 const SkPaint& paint) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000044 virtual void drawOval(const SkRect&, const SkPaint& paint) SK_OVERRIDE;
bsalomon@google.com7ce564c2013-10-22 16:54:15 +000045 virtual void drawRect(const SkRect&, const SkPaint& paint) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000046 virtual void drawRRect(const SkRRect&, const SkPaint& paint) SK_OVERRIDE;
bsalomon@google.com7ce564c2013-10-22 16:54:15 +000047 virtual void drawPath(const SkPath& path, const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000048 virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
reed@google.com2d4297c2011-10-06 13:14:12 +000049 const SkPaint* paint = NULL) SK_OVERRIDE;
reed@google.com71121732012-09-18 15:14:33 +000050 virtual void drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +000051 const SkRect& dst, const SkPaint* paint,
52 DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000053 virtual void drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m,
reed@google.com2d4297c2011-10-06 13:14:12 +000054 const SkPaint* paint = NULL) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000055 virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
reed@google.com2d4297c2011-10-06 13:14:12 +000056 const SkPaint* paint = NULL) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000057 virtual void drawText(const void* text, size_t byteLength, SkScalar x,
reed@google.com2d4297c2011-10-06 13:14:12 +000058 SkScalar y, const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000059 virtual void drawPosText(const void* text, size_t byteLength,
reed@google.com2d4297c2011-10-06 13:14:12 +000060 const SkPoint pos[], const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000061 virtual void drawPosTextH(const void* text, size_t byteLength,
62 const SkScalar xpos[], SkScalar constY,
reed@google.com2d4297c2011-10-06 13:14:12 +000063 const SkPaint& paint) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000064 virtual void drawTextOnPath(const void* text, size_t byteLength,
65 const SkPath& path, const SkMatrix* matrix,
reed@google.com2d4297c2011-10-06 13:14:12 +000066 const SkPaint& paint) SK_OVERRIDE;
67 virtual void drawPicture(SkPicture&) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000068 virtual void drawVertices(VertexMode vmode, int vertexCount,
69 const SkPoint vertices[], const SkPoint texs[],
70 const SkColor colors[], SkXfermode* xmode,
71 const uint16_t indices[], int indexCount,
reed@google.com2d4297c2011-10-06 13:14:12 +000072 const SkPaint& paint) SK_OVERRIDE;
73 virtual void drawData(const void* data, size_t length) SK_OVERRIDE;
reed@android.comcb608442009-12-04 21:32:27 +000074
robertphillips@google.com0a4805e2013-05-29 13:24:23 +000075 virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
76 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE;
77 virtual void endCommentGroup() SK_OVERRIDE;
78
reed@google.com2d4297c2011-10-06 13:14:12 +000079 virtual SkBounder* setBounder(SkBounder* bounder) SK_OVERRIDE;
80 virtual SkDrawFilter* setDrawFilter(SkDrawFilter* filter) SK_OVERRIDE;
reed@android.com8a1c16f2008-12-17 15:59:43 +000081
commit-bot@chromium.orgab582732014-02-21 12:20:45 +000082protected:
83 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK_OVERRIDE;
84
robertphillips@google.com8f90a892014-02-28 18:19:39 +000085 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
86 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
87 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
88 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE;
89
reed@android.com8a1c16f2008-12-17 15:59:43 +000090private:
91 SkCanvas* fProxy;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000092
reed@android.com8a1c16f2008-12-17 15:59:43 +000093 typedef SkCanvas INHERITED;
94};
95
96#endif