blob: 058e17f4a34aa607754030b306b964937b6fd983 [file] [log] [blame]
epoger@google.comb58772f2013-03-08 09:09:10 +00001/*
2 * Copyright 2013 Google Inc.
3 *
4 * Use of this source code is governed by a BSD-style license that can be
5 * found in the LICENSE file.
6 */
epoger@google.comb58772f2013-03-08 09:09:10 +00007
Ben Wagner7fde8e12019-05-01 17:28:53 -04008#include "gm/gm.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -05009#include "include/core/SkAnnotation.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040010#include "include/core/SkCanvas.h"
11#include "include/core/SkColor.h"
Mike Kleinc0bd9f92019-04-23 12:05:21 -050012#include "include/core/SkData.h"
Ben Wagner7fde8e12019-05-01 17:28:53 -040013#include "include/core/SkFont.h"
14#include "include/core/SkPaint.h"
15#include "include/core/SkPoint.h"
16#include "include/core/SkRect.h"
17#include "include/core/SkRefCnt.h"
18#include "include/core/SkScalar.h"
19#include "include/core/SkSize.h"
20#include "include/core/SkString.h"
21#include "include/core/SkTypeface.h"
22#include "tools/ToolUtils.h"
epoger@google.comb58772f2013-03-08 09:09:10 +000023
Hal Canarybd865e22019-07-18 11:51:19 -040024namespace {
epoger@google.comb58772f2013-03-08 09:09:10 +000025
26/** Draws two rectangles. In output formats that support internal links (PDF),
27 * clicking the one labeled "Link to A" should take you to the one labeled
28 * "Target A". Note that you'll need to zoom your PDF viewer in a fair bit in
29 * order for the scrolling to not be blocked by the edge of the document.
30 */
Hal Canarybd865e22019-07-18 11:51:19 -040031class InternalLinksGM : public skiagm::GM {
32 void onOnceBeforeDraw() override { this->setBGColor(0xFFDDDDDD); }
epoger@google.comb58772f2013-03-08 09:09:10 +000033
Hal Canarybd865e22019-07-18 11:51:19 -040034 SkString onShortName() override { return SkString("internal_links"); }
epoger@google.comb58772f2013-03-08 09:09:10 +000035
Hal Canarybd865e22019-07-18 11:51:19 -040036 SkISize onISize() override { return {700, 500}; }
epoger@google.comb58772f2013-03-08 09:09:10 +000037
Hal Canarybd865e22019-07-18 11:51:19 -040038 void onDraw(SkCanvas* canvas) override {
bungeman38d909e2016-08-02 14:40:46 -070039 sk_sp<SkData> name(SkData::MakeWithCString("target-a"));
epoger@google.comb58772f2013-03-08 09:09:10 +000040
41 canvas->save();
42 canvas->translate(SkIntToScalar(100), SkIntToScalar(100));
43 drawLabeledRect(canvas, "Link to A", 0, 0);
44 SkRect rect = SkRect::MakeXYWH(0, 0, SkIntToScalar(50), SkIntToScalar(20));
45 SkAnnotateLinkToDestination(canvas, rect, name.get());
46 canvas->restore();
47
48 canvas->save();
49 canvas->translate(SkIntToScalar(200), SkIntToScalar(200));
50 SkPoint point = SkPoint::Make(SkIntToScalar(100), SkIntToScalar(50));
51 drawLabeledRect(canvas, "Target A", point.x(), point.y());
52 SkAnnotateNamedDestination(canvas, point, name.get());
53 canvas->restore();
54 }
55
epoger@google.comb58772f2013-03-08 09:09:10 +000056 /** Draw an arbitrary rectangle at a given location and label it with some
57 * text. */
58 void drawLabeledRect(SkCanvas* canvas, const char* text, SkScalar x, SkScalar y) {
59 SkPaint paint;
60 paint.setColor(SK_ColorBLUE);
61 SkRect rect = SkRect::MakeXYWH(x, y,
62 SkIntToScalar(50), SkIntToScalar(20));
63 canvas->drawRect(rect, paint);
64
Mike Kleinea3f0142019-03-20 11:12:10 -050065 SkFont font(ToolUtils::create_portable_typeface(), 25);
epoger@google.comb58772f2013-03-08 09:09:10 +000066 paint.setColor(SK_ColorBLACK);
Mike Reed1af9b482019-01-07 11:01:57 -050067 canvas->drawString(text, x, y, font, paint);
epoger@google.comb58772f2013-03-08 09:09:10 +000068 }
epoger@google.comb58772f2013-03-08 09:09:10 +000069};
Hal Canarybd865e22019-07-18 11:51:19 -040070} // namespace
epoger@google.comb58772f2013-03-08 09:09:10 +000071
Hal Canarye964c182019-01-23 10:22:01 -050072DEF_GM( return new InternalLinksGM; )