Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1173)

Side by Side Diff: src/pdf/SkPDFDevice.h

Issue 1148263005: SkPDF: Annotations are clipped by canvas clip stack. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: 2015-06-04 (Thursday) 10:39:57 EDT Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | src/pdf/SkPDFDevice.cpp » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 1
2 /* 2 /*
3 * Copyright 2011 Google Inc. 3 * Copyright 2011 Google Inc.
4 * 4 *
5 * Use of this source code is governed by a BSD-style license that can be 5 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 6 * found in the LICENSE file.
7 */ 7 */
8 8
9 9
10 #ifndef SkPDFDevice_DEFINED 10 #ifndef SkPDFDevice_DEFINED
(...skipping 275 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 const SkPaint& paint); 286 const SkPaint& paint);
287 287
288 /** Helper method for copyContentToData. It is responsible for copying the 288 /** Helper method for copyContentToData. It is responsible for copying the
289 * list of content entries |entry| to |data|. 289 * list of content entries |entry| to |data|.
290 */ 290 */
291 void copyContentEntriesToData(ContentEntry* entry, SkWStream* data) const; 291 void copyContentEntriesToData(ContentEntry* entry, SkWStream* data) const;
292 292
293 bool handleInversePath(const SkDraw& d, const SkPath& origPath, 293 bool handleInversePath(const SkDraw& d, const SkPath& origPath,
294 const SkPaint& paint, bool pathIsMutable, 294 const SkPaint& paint, bool pathIsMutable,
295 const SkMatrix* prePathMatrix = NULL); 295 const SkMatrix* prePathMatrix = NULL);
296 bool handleRectAnnotation(const SkRect& r, const SkMatrix& matrix,
297 const SkPaint& paint);
298 bool handlePointAnnotation(const SkPoint* points, size_t count, 296 bool handlePointAnnotation(const SkPoint* points, size_t count,
299 const SkMatrix& matrix, const SkPaint& paint); 297 const SkMatrix& matrix, SkAnnotation* annot);
300 void addAnnotation(SkPDFDict*); 298 void addAnnotation(SkPDFDict*);
301 void handleLinkToURL(SkData* urlData, const SkRect& r,
302 const SkMatrix& matrix);
303 void handleLinkToNamedDest(SkData* nameData, const SkRect& r,
304 const SkMatrix& matrix);
305 void defineNamedDestination(SkData* nameData, const SkPoint& point,
306 const SkMatrix& matrix);
307 299
308 typedef SkBaseDevice INHERITED; 300 typedef SkBaseDevice INHERITED;
309 301
310 // TODO(edisonn): Only SkDocument_PDF and SkPDFImageShader should be able to create 302 // TODO(edisonn): Only SkDocument_PDF and SkPDFImageShader should be able to create
311 // an SkPDFDevice 303 // an SkPDFDevice
312 //friend class SkDocument_PDF; 304 //friend class SkDocument_PDF;
313 //friend class SkPDFImageShader; 305 //friend class SkPDFImageShader;
314 }; 306 };
315 307
316 #endif 308 #endif
OLDNEW
« no previous file with comments | « no previous file | src/pdf/SkPDFDevice.cpp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698