epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 1 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 2 | /* |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 3 | * Copyright 2011 Google Inc. |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 4 | * |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 5 | * Use of this source code is governed by a BSD-style license that can be |
| 6 | * found in the LICENSE file. |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 7 | */ |
| 8 | |
epoger@google.com | ec3ed6a | 2011-07-28 14:26:00 +0000 | [diff] [blame] | 9 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 10 | #ifndef SkPDFDevice_DEFINED |
| 11 | #define SkPDFDevice_DEFINED |
| 12 | |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 13 | #include "SkCanvas.h" |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 14 | #include "SkDevice.h" |
vandebo@chromium.org | a518086 | 2010-10-26 19:48:49 +0000 | [diff] [blame] | 15 | #include "SkPaint.h" |
| 16 | #include "SkPath.h" |
vandebo@chromium.org | 238be8c | 2012-07-13 20:06:02 +0000 | [diff] [blame] | 17 | #include "SkRect.h" |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 18 | #include "SkRefCnt.h" |
| 19 | #include "SkStream.h" |
| 20 | #include "SkTScopedPtr.h" |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 21 | |
| 22 | class SkPDFArray; |
| 23 | class SkPDFDevice; |
| 24 | class SkPDFDict; |
vandebo@chromium.org | 28be72b | 2010-11-11 21:37:00 +0000 | [diff] [blame] | 25 | class SkPDFFont; |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 26 | class SkPDFFormXObject; |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 27 | class SkPDFGlyphSetMap; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 28 | class SkPDFGraphicState; |
| 29 | class SkPDFObject; |
vandebo@chromium.org | da912d6 | 2011-03-08 18:31:02 +0000 | [diff] [blame] | 30 | class SkPDFShader; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 31 | class SkPDFStream; |
edisonn@google.com | 194b7cd | 2013-02-27 19:45:11 +0000 | [diff] [blame] | 32 | template <typename T> class SK_API SkTSet; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 33 | |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 34 | // Private classes. |
| 35 | struct ContentEntry; |
| 36 | struct GraphicStateEntry; |
| 37 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 38 | /** \class SkPDFDevice |
| 39 | |
| 40 | The drawing context for the PDF backend. |
| 41 | */ |
| 42 | class SkPDFDevice : public SkDevice { |
| 43 | public: |
| 44 | /** Create a PDF drawing context with the given width and height. |
| 45 | * 72 points/in means letter paper is 612x792. |
ctguil@chromium.org | 1526129 | 2011-04-29 17:54:16 +0000 | [diff] [blame] | 46 | * @param pageSize Page size in points. |
| 47 | * @param contentSize The content size of the page in points. This will be |
| 48 | * combined with the initial transform to determine the drawing area |
| 49 | * (as reported by the width and height methods). Anything outside |
| 50 | * of the drawing area will be clipped. |
vandebo@chromium.org | 75f97e4 | 2011-04-11 23:24:18 +0000 | [diff] [blame] | 51 | * @param initialTransform The initial transform to apply to the page. |
| 52 | * This may be useful to, for example, move the origin in and |
| 53 | * over a bit to account for a margin, scale the canvas, |
| 54 | * or apply a rotation. Note1: the SkPDFDevice also applies |
| 55 | * a scale+translate transform to move the origin from the |
| 56 | * bottom left (PDF default) to the top left. Note2: drawDevice |
| 57 | * (used by layer restore) draws the device after this initial |
reed@google.com | cde9211 | 2011-07-06 20:00:52 +0000 | [diff] [blame] | 58 | * transform is applied, so the PDF device does an |
vandebo@chromium.org | 75f97e4 | 2011-04-11 23:24:18 +0000 | [diff] [blame] | 59 | * inverse scale+translate to accommodate the one that SkPDFDevice |
| 60 | * always does. |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 61 | */ |
ctguil@chromium.org | 769fa6a | 2011-08-20 00:36:18 +0000 | [diff] [blame] | 62 | // TODO(vandebo): The sizes should be SkSize and not SkISize. |
ctguil@chromium.org | 1526129 | 2011-04-29 17:54:16 +0000 | [diff] [blame] | 63 | SK_API SkPDFDevice(const SkISize& pageSize, const SkISize& contentSize, |
| 64 | const SkMatrix& initialTransform); |
| 65 | SK_API virtual ~SkPDFDevice(); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 66 | |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 67 | virtual uint32_t getDeviceCapabilities() SK_OVERRIDE; |
vandebo@chromium.org | 35fc62b | 2010-10-26 19:47:30 +0000 | [diff] [blame] | 68 | |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 69 | virtual void clear(SkColor color) SK_OVERRIDE; |
vandebo@chromium.org | 77bcaa3 | 2011-04-15 20:57:37 +0000 | [diff] [blame] | 70 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 71 | /** These are called inside the per-device-layer loop for each draw call. |
| 72 | When these are called, we have already applied any saveLayer operations, |
| 73 | and are handling any looping from the paint, and any effects from the |
| 74 | DrawFilter. |
| 75 | */ |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 76 | virtual void drawPaint(const SkDraw&, const SkPaint& paint) SK_OVERRIDE; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 77 | virtual void drawPoints(const SkDraw&, SkCanvas::PointMode mode, |
| 78 | size_t count, const SkPoint[], |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 79 | const SkPaint& paint) SK_OVERRIDE; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 80 | virtual void drawRect(const SkDraw&, const SkRect& r, const SkPaint& paint); |
vandebo@chromium.org | ff39032 | 2011-05-17 18:58:44 +0000 | [diff] [blame] | 81 | virtual void drawPath(const SkDraw&, const SkPath& origpath, |
vandebo@chromium.org | 02cc5aa | 2011-01-25 22:06:29 +0000 | [diff] [blame] | 82 | const SkPaint& paint, const SkMatrix* prePathMatrix, |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 83 | bool pathIsMutable) SK_OVERRIDE; |
edisonn@google.com | 2ae67e7 | 2013-02-12 01:06:38 +0000 | [diff] [blame] | 84 | virtual void drawBitmapRect(const SkDraw& draw, const SkBitmap& bitmap, |
| 85 | const SkRect* src, const SkRect& dst, |
| 86 | const SkPaint& paint) SK_OVERRIDE; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 87 | virtual void drawBitmap(const SkDraw&, const SkBitmap& bitmap, |
reed@android.com | f2b98d6 | 2010-12-20 18:26:13 +0000 | [diff] [blame] | 88 | const SkIRect* srcRectOrNull, |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 89 | const SkMatrix& matrix, const SkPaint&) SK_OVERRIDE; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 90 | virtual void drawSprite(const SkDraw&, const SkBitmap& bitmap, int x, int y, |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 91 | const SkPaint& paint) SK_OVERRIDE; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 92 | virtual void drawText(const SkDraw&, const void* text, size_t len, |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 93 | SkScalar x, SkScalar y, const SkPaint&) SK_OVERRIDE; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 94 | virtual void drawPosText(const SkDraw&, const void* text, size_t len, |
| 95 | const SkScalar pos[], SkScalar constY, |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 96 | int scalarsPerPos, const SkPaint&) SK_OVERRIDE; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 97 | virtual void drawTextOnPath(const SkDraw&, const void* text, size_t len, |
| 98 | const SkPath& path, const SkMatrix* matrix, |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 99 | const SkPaint& paint) SK_OVERRIDE; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 100 | virtual void drawVertices(const SkDraw&, SkCanvas::VertexMode, |
| 101 | int vertexCount, const SkPoint verts[], |
| 102 | const SkPoint texs[], const SkColor colors[], |
| 103 | SkXfermode* xmode, const uint16_t indices[], |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 104 | int indexCount, const SkPaint& paint) SK_OVERRIDE; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 105 | virtual void drawDevice(const SkDraw&, SkDevice*, int x, int y, |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 106 | const SkPaint&) SK_OVERRIDE; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 107 | |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 108 | virtual void onAttachToCanvas(SkCanvas* canvas) SK_OVERRIDE; |
| 109 | virtual void onDetachFromCanvas() SK_OVERRIDE; |
| 110 | |
ctguil@chromium.org | 8dcf74f | 2011-07-12 21:56:27 +0000 | [diff] [blame] | 111 | enum DrawingArea { |
ctguil@chromium.org | 9510ccc | 2011-07-27 00:10:51 +0000 | [diff] [blame] | 112 | kContent_DrawingArea, // Drawing area for the page content. |
| 113 | kMargin_DrawingArea, // Drawing area for the margin content. |
ctguil@chromium.org | 8dcf74f | 2011-07-12 21:56:27 +0000 | [diff] [blame] | 114 | }; |
| 115 | |
| 116 | /** Sets the drawing area for the device. Subsequent draw calls are directed |
ctguil@chromium.org | 769fa6a | 2011-08-20 00:36:18 +0000 | [diff] [blame] | 117 | * to the specific drawing area (margin or content). The default drawing |
ctguil@chromium.org | 8dcf74f | 2011-07-12 21:56:27 +0000 | [diff] [blame] | 118 | * area is the content drawing area. |
ctguil@chromium.org | 9510ccc | 2011-07-27 00:10:51 +0000 | [diff] [blame] | 119 | * |
| 120 | * Currently if margin content is drawn and then a complex (for PDF) xfer |
| 121 | * mode is used, like SrcIn, Clear, etc, the margin content will get |
| 122 | * clipped. A simple way to avoid the bug is to always draw the margin |
| 123 | * content last. |
ctguil@chromium.org | 8dcf74f | 2011-07-12 21:56:27 +0000 | [diff] [blame] | 124 | */ |
epoger@google.com | 17b7894 | 2011-08-26 14:40:38 +0000 | [diff] [blame] | 125 | SK_API void setDrawingArea(DrawingArea drawingArea); |
ctguil@chromium.org | 8dcf74f | 2011-07-12 21:56:27 +0000 | [diff] [blame] | 126 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 127 | // PDF specific methods. |
| 128 | |
reed@google.com | 1feb330 | 2011-07-20 18:43:19 +0000 | [diff] [blame] | 129 | /** Returns the resource dictionary for this device. |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 130 | */ |
reed@google.com | 1feb330 | 2011-07-20 18:43:19 +0000 | [diff] [blame] | 131 | SK_API SkPDFDict* getResourceDict(); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 132 | |
vandebo@chromium.org | a518086 | 2010-10-26 19:48:49 +0000 | [diff] [blame] | 133 | /** Get the list of resources (PDF objects) used on this page. |
edisonn@google.com | 194b7cd | 2013-02-27 19:45:11 +0000 | [diff] [blame] | 134 | * This method will add to newResourceObjects any objects that this method |
| 135 | * depends on, but not already in knownResourceObjects. This might operate |
| 136 | * recursively so if this object depends on another object and that object |
| 137 | * depends on two more, all three objects will be added. |
| 138 | * |
| 139 | * @param knownResourceObjects The set of resources to be ignored. |
| 140 | * @param newResourceObjects The set to append dependant resources to. |
vandebo@chromium.org | 188838c | 2012-03-09 22:16:58 +0000 | [diff] [blame] | 141 | * @param recursive If recursive is true, get the resources of the |
| 142 | * device's resources recursively. (Useful for adding |
| 143 | * objects to the catalog.) |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 144 | */ |
edisonn@google.com | 194b7cd | 2013-02-27 19:45:11 +0000 | [diff] [blame] | 145 | SK_API void getResources(const SkTSet<SkPDFObject*>& knownResourceObjects, |
| 146 | SkTSet<SkPDFObject*>* newResourceObjects, |
vandebo@chromium.org | 188838c | 2012-03-09 22:16:58 +0000 | [diff] [blame] | 147 | bool recursive) const; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 148 | |
vandebo@chromium.org | f0ec266 | 2011-05-29 05:55:42 +0000 | [diff] [blame] | 149 | /** Get the fonts used on this device. |
| 150 | */ |
vandebo@chromium.org | 3509f05 | 2011-05-30 20:52:33 +0000 | [diff] [blame] | 151 | SK_API const SkTDArray<SkPDFFont*>& getFontResources() const; |
vandebo@chromium.org | f0ec266 | 2011-05-29 05:55:42 +0000 | [diff] [blame] | 152 | |
reed@google.com | 2a006c1 | 2012-09-19 17:05:55 +0000 | [diff] [blame] | 153 | /** Returns a copy of the media box for this device. The caller is required |
| 154 | * to unref() this when it is finished. |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 155 | */ |
reed@google.com | 2a006c1 | 2012-09-19 17:05:55 +0000 | [diff] [blame] | 156 | SK_API SkPDFArray* copyMediaBox() const; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 157 | |
reed@google.com | 2a006c1 | 2012-09-19 17:05:55 +0000 | [diff] [blame] | 158 | /** Get the annotations from this page, or NULL if there are none. |
vandebo@chromium.org | 238be8c | 2012-07-13 20:06:02 +0000 | [diff] [blame] | 159 | */ |
reed@google.com | 2a006c1 | 2012-09-19 17:05:55 +0000 | [diff] [blame] | 160 | SK_API SkPDFArray* getAnnotations() const { return fAnnotations; } |
vandebo@chromium.org | 238be8c | 2012-07-13 20:06:02 +0000 | [diff] [blame] | 161 | |
vandebo@chromium.org | c2a9b7f | 2011-02-24 23:22:30 +0000 | [diff] [blame] | 162 | /** Returns a SkStream with the page contents. The caller is responsible |
| 163 | for a reference to the returned value. |
reed@google.com | 5667afc | 2011-06-27 14:42:15 +0000 | [diff] [blame] | 164 | DEPRECATED: use copyContentToData() |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 165 | */ |
vandebo@chromium.org | 3509f05 | 2011-05-30 20:52:33 +0000 | [diff] [blame] | 166 | SK_API SkStream* content() const; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 167 | |
reed@google.com | 5667afc | 2011-06-27 14:42:15 +0000 | [diff] [blame] | 168 | /** Returns a SkStream with the page contents. The caller is responsible |
| 169 | * for calling data->unref() when it is finished. |
| 170 | */ |
| 171 | SK_API SkData* copyContentToData() const; |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 172 | |
vandebo@chromium.org | 3509f05 | 2011-05-30 20:52:33 +0000 | [diff] [blame] | 173 | SK_API const SkMatrix& initialTransform() const { |
| 174 | return fInitialTransform; |
| 175 | } |
vandebo@chromium.org | 61d2678 | 2011-05-24 23:02:07 +0000 | [diff] [blame] | 176 | |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 177 | /** Returns a SkPDFGlyphSetMap which represents glyph usage of every font |
| 178 | * that shows on this device. |
| 179 | */ |
| 180 | const SkPDFGlyphSetMap& getFontGlyphUsage() const { |
| 181 | return *(fFontGlyphUsage.get()); |
| 182 | } |
vandebo@chromium.org | 74b4619 | 2012-01-28 01:45:11 +0000 | [diff] [blame] | 183 | |
bsalomon@google.com | c698097 | 2011-11-02 19:57:21 +0000 | [diff] [blame] | 184 | protected: |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 185 | virtual bool onReadPixels(const SkBitmap& bitmap, int x, int y, |
| 186 | SkCanvas::Config8888) SK_OVERRIDE; |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 187 | |
reed@google.com | b55deeb | 2012-01-06 14:43:09 +0000 | [diff] [blame] | 188 | virtual bool allowImageFilter(SkImageFilter*) SK_OVERRIDE; |
| 189 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 190 | private: |
ctguil@chromium.org | 769fa6a | 2011-08-20 00:36:18 +0000 | [diff] [blame] | 191 | // TODO(vandebo): push most of SkPDFDevice's state into a core object in |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 192 | // order to get the right access levels without using friend. |
vandebo@chromium.org | 13d14a9 | 2011-05-24 23:12:41 +0000 | [diff] [blame] | 193 | friend class ScopedContentEntry; |
vandebo@chromium.org | a0c7edb | 2011-05-09 07:58:08 +0000 | [diff] [blame] | 194 | |
ctguil@chromium.org | 1526129 | 2011-04-29 17:54:16 +0000 | [diff] [blame] | 195 | SkISize fPageSize; |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 196 | SkISize fContentSize; |
vandebo@chromium.org | 75f97e4 | 2011-04-11 23:24:18 +0000 | [diff] [blame] | 197 | SkMatrix fInitialTransform; |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 198 | SkClipStack fExistingClipStack; |
| 199 | SkRegion fExistingClipRegion; |
reed@google.com | 2a006c1 | 2012-09-19 17:05:55 +0000 | [diff] [blame] | 200 | SkPDFArray* fAnnotations; |
reed@google.com | fc641d0 | 2012-09-20 17:52:20 +0000 | [diff] [blame] | 201 | SkPDFDict* fResourceDict; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 202 | |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 203 | SkTDArray<SkPDFGraphicState*> fGraphicStateResources; |
| 204 | SkTDArray<SkPDFObject*> fXObjectResources; |
vandebo@chromium.org | 28be72b | 2010-11-11 21:37:00 +0000 | [diff] [blame] | 205 | SkTDArray<SkPDFFont*> fFontResources; |
vandebo@chromium.org | 421d644 | 2011-07-20 17:39:01 +0000 | [diff] [blame] | 206 | SkTDArray<SkPDFObject*> fShaderResources; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 207 | |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 208 | SkTScopedPtr<ContentEntry> fContentEntries; |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 209 | ContentEntry* fLastContentEntry; |
ctguil@chromium.org | 8dcf74f | 2011-07-12 21:56:27 +0000 | [diff] [blame] | 210 | SkTScopedPtr<ContentEntry> fMarginContentEntries; |
| 211 | ContentEntry* fLastMarginContentEntry; |
| 212 | DrawingArea fDrawingArea; |
| 213 | |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 214 | const SkClipStack* fClipStack; |
| 215 | |
ctguil@chromium.org | 8dcf74f | 2011-07-12 21:56:27 +0000 | [diff] [blame] | 216 | // Accessor and setter functions based on the current DrawingArea. |
ctguil@chromium.org | 9510ccc | 2011-07-27 00:10:51 +0000 | [diff] [blame] | 217 | SkTScopedPtr<ContentEntry>* getContentEntries(); |
ctguil@chromium.org | 8dcf74f | 2011-07-12 21:56:27 +0000 | [diff] [blame] | 218 | ContentEntry* getLastContentEntry(); |
| 219 | void setLastContentEntry(ContentEntry* contentEntry); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 220 | |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 221 | // Glyph ids used for each font on this device. |
| 222 | SkTScopedPtr<SkPDFGlyphSetMap> fFontGlyphUsage; |
| 223 | |
vandebo@chromium.org | a0c7edb | 2011-05-09 07:58:08 +0000 | [diff] [blame] | 224 | SkPDFDevice(const SkISize& layerSize, const SkClipStack& existingClipStack, |
| 225 | const SkRegion& existingClipRegion); |
| 226 | |
bsalomon@google.com | e97f085 | 2011-06-17 13:10:25 +0000 | [diff] [blame] | 227 | // override from SkDevice |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 228 | virtual SkDevice* onCreateCompatibleDevice(SkBitmap::Config config, |
| 229 | int width, int height, |
bsalomon@google.com | e97f085 | 2011-06-17 13:10:25 +0000 | [diff] [blame] | 230 | bool isOpaque, |
reed@google.com | 982cb87 | 2011-12-07 18:34:08 +0000 | [diff] [blame] | 231 | Usage usage) SK_OVERRIDE; |
bsalomon@google.com | e97f085 | 2011-06-17 13:10:25 +0000 | [diff] [blame] | 232 | |
vandebo@chromium.org | 77bcaa3 | 2011-04-15 20:57:37 +0000 | [diff] [blame] | 233 | void init(); |
vandebo@chromium.org | 9859428 | 2011-07-25 22:34:12 +0000 | [diff] [blame] | 234 | void cleanUp(bool clearFontUsage); |
reed@google.com | fc641d0 | 2012-09-20 17:52:20 +0000 | [diff] [blame] | 235 | SkPDFFormXObject* createFormXObjectFromDevice(); |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 236 | |
vandebo@chromium.org | 466f3d6 | 2011-05-18 23:06:29 +0000 | [diff] [blame] | 237 | // Clear the passed clip from all existing content entries. |
| 238 | void clearClipFromContent(const SkClipStack* clipStack, |
| 239 | const SkRegion& clipRegion); |
vandebo@chromium.org | 481aef6 | 2011-05-24 16:39:05 +0000 | [diff] [blame] | 240 | void drawFormXObjectWithClip(SkPDFFormXObject* form, |
| 241 | const SkClipStack* clipStack, |
| 242 | const SkRegion& clipRegion, |
| 243 | bool invertClip); |
vandebo@chromium.org | 466f3d6 | 2011-05-18 23:06:29 +0000 | [diff] [blame] | 244 | |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 245 | // If the paint or clip is such that we shouldn't draw anything, this |
| 246 | // returns NULL and does not create a content entry. |
| 247 | // setUpContentEntry and finishContentEntry can be used directly, but |
vandebo@chromium.org | 13d14a9 | 2011-05-24 23:12:41 +0000 | [diff] [blame] | 248 | // the preferred method is to use the ScopedContentEntry helper class. |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 249 | ContentEntry* setUpContentEntry(const SkClipStack* clipStack, |
| 250 | const SkRegion& clipRegion, |
| 251 | const SkMatrix& matrix, |
| 252 | const SkPaint& paint, |
| 253 | bool hasText, |
reed@google.com | fc641d0 | 2012-09-20 17:52:20 +0000 | [diff] [blame] | 254 | SkPDFFormXObject** dst); |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 255 | void finishContentEntry(SkXfermode::Mode xfermode, |
| 256 | SkPDFFormXObject* dst); |
vandebo@chromium.org | 481aef6 | 2011-05-24 16:39:05 +0000 | [diff] [blame] | 257 | bool isContentEmpty(); |
| 258 | |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 259 | void populateGraphicStateEntryFromPaint(const SkMatrix& matrix, |
| 260 | const SkClipStack& clipStack, |
| 261 | const SkRegion& clipRegion, |
| 262 | const SkPaint& paint, |
| 263 | bool hasText, |
| 264 | GraphicStateEntry* entry); |
vandebo@chromium.org | 6112c21 | 2011-05-13 03:50:38 +0000 | [diff] [blame] | 265 | int addGraphicStateResource(SkPDFGraphicState* gs); |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 266 | |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 267 | void updateFont(const SkPaint& paint, uint16_t glyphID, |
| 268 | ContentEntry* contentEntry); |
ctguil@chromium.org | 9db86bb | 2011-03-04 21:43:27 +0000 | [diff] [blame] | 269 | int getFontResourceIndex(SkTypeface* typeface, uint16_t glyphID); |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 270 | |
vandebo@chromium.org | b069c8c | 2011-05-24 17:19:38 +0000 | [diff] [blame] | 271 | void internalDrawPaint(const SkPaint& paint, ContentEntry* contentEntry); |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 272 | void internalDrawBitmap(const SkMatrix& matrix, |
vandebo@chromium.org | 78dad54 | 2011-05-11 18:46:03 +0000 | [diff] [blame] | 273 | const SkClipStack* clipStack, |
vandebo@chromium.org | 9fbdf87 | 2011-05-09 07:55:58 +0000 | [diff] [blame] | 274 | const SkRegion& clipRegion, |
| 275 | const SkBitmap& bitmap, |
| 276 | const SkIRect* srcRect, |
| 277 | const SkPaint& paint); |
| 278 | |
ctguil@chromium.org | 8dcf74f | 2011-07-12 21:56:27 +0000 | [diff] [blame] | 279 | /** Helper method for copyContentToData. It is responsible for copying the |
| 280 | * list of content entries |entry| to |data|. |
| 281 | */ |
| 282 | void copyContentEntriesToData(ContentEntry* entry, SkWStream* data) const; |
ctguil@chromium.org | 9510ccc | 2011-07-27 00:10:51 +0000 | [diff] [blame] | 283 | |
vandebo@chromium.org | 238be8c | 2012-07-13 20:06:02 +0000 | [diff] [blame] | 284 | bool handleAnnotations(const SkRect& r, const SkMatrix& matrix, |
| 285 | const SkPaint& paint); |
| 286 | |
robertphillips@google.com | 40a1ae4 | 2012-07-13 15:36:15 +0000 | [diff] [blame] | 287 | typedef SkDevice INHERITED; |
vandebo@chromium.org | 9b49dc0 | 2010-10-20 22:23:29 +0000 | [diff] [blame] | 288 | }; |
| 289 | |
| 290 | #endif |