blob: 84f4b4a177288baf09a918fceb8bedb58220f01e [file] [log] [blame]
reed@android.com6c924ad2009-03-31 03:48:49 +00001
epoger@google.comec3ed6a2011-07-28 14:26:00 +00002/*
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 */
8
reed@android.com6c924ad2009-03-31 03:48:49 +00009#ifndef SkNWayCanvas_DEFINED
10#define SkNWayCanvas_DEFINED
11
12#include "SkCanvas.h"
13
commit-bot@chromium.orge1a81d22013-07-15 22:49:37 +000014class SK_API SkNWayCanvas : public SkCanvas {
reed@android.com6c924ad2009-03-31 03:48:49 +000015public:
djsollen@google.comf0a062b2012-05-01 16:50:25 +000016 SkNWayCanvas(int width, int height);
reed@android.com6c924ad2009-03-31 03:48:49 +000017 virtual ~SkNWayCanvas();
vandebo@chromium.org74b46192012-01-28 01:45:11 +000018
djsollen@google.com339e79f2013-09-04 17:16:00 +000019 virtual void addCanvas(SkCanvas*);
20 virtual void removeCanvas(SkCanvas*);
21 virtual void removeAll();
reed@android.com6c924ad2009-03-31 03:48:49 +000022
23 ///////////////////////////////////////////////////////////////////////////
24 // These are forwarded to the N canvases we're referencing
25
reed@google.com43d74842011-12-07 14:46:39 +000026 virtual int save(SaveFlags) SK_OVERRIDE;
27 virtual int saveLayer(const SkRect* bounds, const SkPaint*,
28 SaveFlags) SK_OVERRIDE;
29 virtual void restore() SK_OVERRIDE;
30 virtual bool translate(SkScalar dx, SkScalar dy) SK_OVERRIDE;
31 virtual bool scale(SkScalar sx, SkScalar sy) SK_OVERRIDE;
32 virtual bool rotate(SkScalar degrees) SK_OVERRIDE;
33 virtual bool skew(SkScalar sx, SkScalar sy) SK_OVERRIDE;
34 virtual bool concat(const SkMatrix& matrix) SK_OVERRIDE;
35 virtual void setMatrix(const SkMatrix& matrix) SK_OVERRIDE;
commit-bot@chromium.orgbe65a4c2013-11-14 19:02:41 +000036 virtual void clear(SkColor) SK_OVERRIDE;
reed@google.com43d74842011-12-07 14:46:39 +000037 virtual void drawPaint(const SkPaint& paint) SK_OVERRIDE;
reed@android.com6c924ad2009-03-31 03:48:49 +000038 virtual void drawPoints(PointMode mode, size_t count, const SkPoint pts[],
reed@google.com43d74842011-12-07 14:46:39 +000039 const SkPaint&) SK_OVERRIDE;
bsalomon@google.com7ce564c2013-10-22 16:54:15 +000040 virtual void drawRect(const SkRect&, const SkPaint&) SK_OVERRIDE;
commit-bot@chromium.orgbe65a4c2013-11-14 19:02:41 +000041 virtual void drawOval(const SkRect&, const SkPaint&) SK_OVERRIDE;
reed@google.com4ed0fb72012-12-12 20:48:18 +000042 virtual void drawRRect(const SkRRect&, const SkPaint&) SK_OVERRIDE;
bsalomon@google.com7ce564c2013-10-22 16:54:15 +000043 virtual void drawPath(const SkPath& path, const SkPaint&) SK_OVERRIDE;
reed@android.com6c924ad2009-03-31 03:48:49 +000044 virtual void drawBitmap(const SkBitmap& bitmap, SkScalar left, SkScalar top,
reed@google.com43d74842011-12-07 14:46:39 +000045 const SkPaint*) SK_OVERRIDE;
reed@google.com71121732012-09-18 15:14:33 +000046 virtual void drawBitmapRectToRect(const SkBitmap& bitmap, const SkRect* src,
commit-bot@chromium.orgeed779d2013-08-16 10:24:37 +000047 const SkRect& dst, const SkPaint* paint,
48 DrawBitmapRectFlags flags) SK_OVERRIDE;
reed@android.com6c924ad2009-03-31 03:48:49 +000049 virtual void drawBitmapMatrix(const SkBitmap& bitmap, const SkMatrix& m,
reed@google.com43d74842011-12-07 14:46:39 +000050 const SkPaint*) SK_OVERRIDE;
commit-bot@chromium.orgbe65a4c2013-11-14 19:02:41 +000051 virtual void drawBitmapNine(const SkBitmap& bitmap, const SkIRect& center,
52 const SkRect& dst,
53 const SkPaint* paint = NULL) SK_OVERRIDE;
reed@android.com6c924ad2009-03-31 03:48:49 +000054 virtual void drawSprite(const SkBitmap& bitmap, int left, int top,
reed@google.com43d74842011-12-07 14:46:39 +000055 const SkPaint*) SK_OVERRIDE;
reed@android.com6c924ad2009-03-31 03:48:49 +000056 virtual void drawText(const void* text, size_t byteLength, SkScalar x,
reed@google.com43d74842011-12-07 14:46:39 +000057 SkScalar y, const SkPaint&) SK_OVERRIDE;
reed@android.com6c924ad2009-03-31 03:48:49 +000058 virtual void drawPosText(const void* text, size_t byteLength,
reed@google.com43d74842011-12-07 14:46:39 +000059 const SkPoint pos[], const SkPaint&) SK_OVERRIDE;
reed@android.com6c924ad2009-03-31 03:48:49 +000060 virtual void drawPosTextH(const void* text, size_t byteLength,
61 const SkScalar xpos[], SkScalar constY,
reed@google.com43d74842011-12-07 14:46:39 +000062 const SkPaint&) SK_OVERRIDE;
reed@android.com6c924ad2009-03-31 03:48:49 +000063 virtual void drawTextOnPath(const void* text, size_t byteLength,
64 const SkPath& path, const SkMatrix* matrix,
reed@google.com43d74842011-12-07 14:46:39 +000065 const SkPaint&) SK_OVERRIDE;
66 virtual void drawPicture(SkPicture&) SK_OVERRIDE;
reed@android.com6c924ad2009-03-31 03:48:49 +000067 virtual void drawVertices(VertexMode vmode, int vertexCount,
68 const SkPoint vertices[], const SkPoint texs[],
69 const SkColor colors[], SkXfermode* xmode,
70 const uint16_t indices[], int indexCount,
reed@google.com43d74842011-12-07 14:46:39 +000071 const SkPaint&) SK_OVERRIDE;
commit-bot@chromium.orgbe65a4c2013-11-14 19:02:41 +000072 virtual void drawData(const void* data, size_t length) SK_OVERRIDE;
reed@android.com6c924ad2009-03-31 03:48:49 +000073
reed@google.com43d74842011-12-07 14:46:39 +000074 virtual SkBounder* setBounder(SkBounder*) SK_OVERRIDE;
75 virtual SkDrawFilter* setDrawFilter(SkDrawFilter*) SK_OVERRIDE;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000076
commit-bot@chromium.org14cec912013-07-20 15:03:26 +000077 virtual void beginCommentGroup(const char* description) SK_OVERRIDE;
78 virtual void addComment(const char* kywd, const char* value) SK_OVERRIDE;
79 virtual void endCommentGroup() SK_OVERRIDE;
80
djsollen@google.com339e79f2013-09-04 17:16:00 +000081protected:
reed@android.com6c924ad2009-03-31 03:48:49 +000082 SkTDArray<SkCanvas*> fList;
vandebo@chromium.org74b46192012-01-28 01:45:11 +000083
commit-bot@chromium.orgab582732014-02-21 12:20:45 +000084 virtual void onDrawDRRect(const SkRRect&, const SkRRect&, const SkPaint&) SK_OVERRIDE;
85
robertphillips@google.com392c9be2014-02-28 14:35:45 +000086 virtual void onClipRect(const SkRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
87 virtual void onClipRRect(const SkRRect&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
88 virtual void onClipPath(const SkPath&, SkRegion::Op, ClipEdgeStyle) SK_OVERRIDE;
89 virtual void onClipRegion(const SkRegion&, SkRegion::Op) SK_OVERRIDE;
90
reed@android.com6c924ad2009-03-31 03:48:49 +000091 class Iter;
92
djsollen@google.com339e79f2013-09-04 17:16:00 +000093private:
reed@android.com6c924ad2009-03-31 03:48:49 +000094 typedef SkCanvas INHERITED;
95};
96
97
98#endif