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

Side by Side Diff: src/core/SkAnnotation.cpp

Issue 1744103002: move annotations to canvas virtual (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: update dumpcanvas Created 4 years, 9 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
OLDNEW
1 /* 1 /*
2 * Copyright 2012 Google Inc. 2 * Copyright 2012 Google Inc.
3 * 3 *
4 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file. 5 * found in the LICENSE file.
6 */ 6 */
7 7
8 #include "SkAnnotation.h" 8 #include "SkAnnotation.h"
9 #include "SkData.h" 9 #include "SkCanvas.h"
10 #include "SkPaint.h"
11 #include "SkPoint.h" 10 #include "SkPoint.h"
12 #include "SkReadBuffer.h" 11 #include "SkRect.h"
13 #include "SkWriteBuffer.h"
14
15 SkAnnotation::SkAnnotation(const char key[], SkData* value) : fKey(key) {
16 if (nullptr == value) {
17 value = SkData::NewEmpty();
18 } else {
19 value->ref();
20 }
21 fData = value;
22 }
23
24 SkAnnotation::~SkAnnotation() {
25 fData->unref();
26 }
27
28 SkData* SkAnnotation::find(const char key[]) const {
29 return fKey.equals(key) ? fData : nullptr;
30 }
31
32 SkAnnotation::SkAnnotation(SkReadBuffer& buffer) {
33 buffer.readString(&fKey);
34 fData = buffer.readByteArrayAsData();
35 }
36
37 void SkAnnotation::writeToBuffer(SkWriteBuffer& buffer) const {
38 buffer.writeString(fKey.c_str());
39 buffer.writeDataAsByteArray(fData);
40 }
41 12
42 const char* SkAnnotationKeys::URL_Key() { 13 const char* SkAnnotationKeys::URL_Key() {
43 return "SkAnnotationKey_URL"; 14 return "SkAnnotationKey_URL";
44 }; 15 };
45 16
46 const char* SkAnnotationKeys::Define_Named_Dest_Key() { 17 const char* SkAnnotationKeys::Define_Named_Dest_Key() {
47 return "SkAnnotationKey_Define_Named_Dest"; 18 return "SkAnnotationKey_Define_Named_Dest";
48 }; 19 };
49 20
50 const char* SkAnnotationKeys::Link_Named_Dest_Key() { 21 const char* SkAnnotationKeys::Link_Named_Dest_Key() {
51 return "SkAnnotationKey_Link_Named_Dest"; 22 return "SkAnnotationKey_Link_Named_Dest";
52 }; 23 };
53 24
54 /////////////////////////////////////////////////////////////////////////////// 25 //////////////////////////////////////////////////////////////////////////////// //////////////////
55
56 #include "SkCanvas.h"
57
58 static void annotate_paint(SkPaint& paint, const char* key, SkData* value) {
59 paint.setAnnotation(SkAnnotation::Create(key, value))->unref();
60 }
61 26
62 void SkAnnotateRectWithURL(SkCanvas* canvas, const SkRect& rect, SkData* value) { 27 void SkAnnotateRectWithURL(SkCanvas* canvas, const SkRect& rect, SkData* value) {
63 if (nullptr == value) { 28 if (nullptr == value) {
64 return; 29 return;
65 } 30 }
66 SkPaint paint; 31 canvas->drawAnnotation(rect, SkAnnotationKeys::URL_Key(), value);
67 annotate_paint(paint, SkAnnotationKeys::URL_Key(), value);
68 canvas->drawRect(rect, paint);
69 } 32 }
70 33
71 void SkAnnotateNamedDestination(SkCanvas* canvas, const SkPoint& point, SkData* name) { 34 void SkAnnotateNamedDestination(SkCanvas* canvas, const SkPoint& point, SkData* name) {
72 if (nullptr == name) { 35 if (nullptr == name) {
73 return; 36 return;
74 } 37 }
75 SkPaint paint; 38 const SkRect rect = SkRect::MakeXYWH(point.x(), point.y(), 0, 0);
76 annotate_paint(paint, SkAnnotationKeys::Define_Named_Dest_Key(), name); 39 canvas->drawAnnotation(rect, SkAnnotationKeys::Define_Named_Dest_Key(), name );
77 canvas->drawPoint(point.x(), point.y(), paint);
78 } 40 }
79 41
80 void SkAnnotateLinkToDestination(SkCanvas* canvas, const SkRect& rect, SkData* n ame) { 42 void SkAnnotateLinkToDestination(SkCanvas* canvas, const SkRect& rect, SkData* n ame) {
81 if (nullptr == name) { 43 if (nullptr == name) {
82 return; 44 return;
83 } 45 }
84 SkPaint paint; 46 canvas->drawAnnotation(rect, SkAnnotationKeys::Link_Named_Dest_Key(), name);
85 annotate_paint(paint, SkAnnotationKeys::Link_Named_Dest_Key(), name);
86 canvas->drawRect(rect, paint);
87 } 47 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698