blob: 8baf5f0abc97234967723fc6f3b6f6ebab8afc99 [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"
Kevin Lubicke836c3a2023-10-20 06:55:35 -040023#include "tools/fonts/FontToolUtils.h"
epoger@google.comb58772f2013-03-08 09:09:10 +000024
Hal Canarybd865e22019-07-18 11:51:19 -040025namespace {
epoger@google.comb58772f2013-03-08 09:09:10 +000026
27/** Draws two rectangles. In output formats that support internal links (PDF),
28 * clicking the one labeled "Link to A" should take you to the one labeled
29 * "Target A". Note that you'll need to zoom your PDF viewer in a fair bit in
30 * order for the scrolling to not be blocked by the edge of the document.
31 */
Hal Canarybd865e22019-07-18 11:51:19 -040032class InternalLinksGM : public skiagm::GM {
33 void onOnceBeforeDraw() override { this->setBGColor(0xFFDDDDDD); }
epoger@google.comb58772f2013-03-08 09:09:10 +000034
Leandro Lovisolo24fa2112023-08-15 19:05:17 +000035 SkString getName() const override { return SkString("internal_links"); }
epoger@google.comb58772f2013-03-08 09:09:10 +000036
Leandro Lovisolo8f023882023-08-15 21:13:52 +000037 SkISize getISize() override { return {700, 500}; }
epoger@google.comb58772f2013-03-08 09:09:10 +000038
Hal Canarybd865e22019-07-18 11:51:19 -040039 void onDraw(SkCanvas* canvas) override {
bungeman38d909e2016-08-02 14:40:46 -070040 sk_sp<SkData> name(SkData::MakeWithCString("target-a"));
epoger@google.comb58772f2013-03-08 09:09:10 +000041
42 canvas->save();
43 canvas->translate(SkIntToScalar(100), SkIntToScalar(100));
44 drawLabeledRect(canvas, "Link to A", 0, 0);
45 SkRect rect = SkRect::MakeXYWH(0, 0, SkIntToScalar(50), SkIntToScalar(20));
46 SkAnnotateLinkToDestination(canvas, rect, name.get());
47 canvas->restore();
48
49 canvas->save();
50 canvas->translate(SkIntToScalar(200), SkIntToScalar(200));
51 SkPoint point = SkPoint::Make(SkIntToScalar(100), SkIntToScalar(50));
52 drawLabeledRect(canvas, "Target A", point.x(), point.y());
53 SkAnnotateNamedDestination(canvas, point, name.get());
54 canvas->restore();
55 }
56
epoger@google.comb58772f2013-03-08 09:09:10 +000057 /** Draw an arbitrary rectangle at a given location and label it with some
58 * text. */
59 void drawLabeledRect(SkCanvas* canvas, const char* text, SkScalar x, SkScalar y) {
60 SkPaint paint;
61 paint.setColor(SK_ColorBLUE);
62 SkRect rect = SkRect::MakeXYWH(x, y,
63 SkIntToScalar(50), SkIntToScalar(20));
64 canvas->drawRect(rect, paint);
65
Kevin Lubicke836c3a2023-10-20 06:55:35 -040066 SkFont font(ToolUtils::DefaultPortableTypeface(), 25);
epoger@google.comb58772f2013-03-08 09:09:10 +000067 paint.setColor(SK_ColorBLACK);
Mike Reed1af9b482019-01-07 11:01:57 -050068 canvas->drawString(text, x, y, font, paint);
epoger@google.comb58772f2013-03-08 09:09:10 +000069 }
epoger@google.comb58772f2013-03-08 09:09:10 +000070};
Hal Canarybd865e22019-07-18 11:51:19 -040071} // namespace
epoger@google.comb58772f2013-03-08 09:09:10 +000072
Hal Canarye964c182019-01-23 10:22:01 -050073DEF_GM( return new InternalLinksGM; )