blob: ab5a73e8242567f6f9698988f1368ed2b467ff35 [file] [log] [blame]
edisonn@google.comf8b6b012013-07-11 14:28:04 +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 */
7
halcanary385fe4d2015-08-26 13:07:48 -07008#include "SkTypes.h"
9
edisonn@google.comf8b6b012013-07-11 14:28:04 +000010#ifdef SAMPLE_PDF_FILE_VIEWER
11
12#include "SampleCode.h"
13#include "SkDumpCanvas.h"
14#include "SkView.h"
15#include "SkCanvas.h"
edisonn@google.comf8b6b012013-07-11 14:28:04 +000016#include "SkGradientShader.h"
17#include "SkGraphics.h"
edisonn@google.comf8b6b012013-07-11 14:28:04 +000018#include "SkOSFile.h"
19#include "SkPath.h"
20#include "SkPicture.h"
21#include "SkRandom.h"
22#include "SkRegion.h"
23#include "SkShader.h"
24#include "SkUtils.h"
25#include "SkColorPriv.h"
26#include "SkColorFilter.h"
27#include "SkTime.h"
28#include "SkTypeface.h"
edisonn@google.comd1a874a2013-07-11 14:45:20 +000029#include "SkPdfRenderer.h"
edisonn@google.comf8b6b012013-07-11 14:28:04 +000030
31class PdfFileViewer : public SampleView {
32private:
33 SkString fFilename;
34 SkPicture* fPicture; // TODO(edisonn): multiple pages, one page / picture, make it an array
35
36 static SkPicture* LoadPdf(const char path[]) {
Ben Wagner145dbcd2016-11-03 14:40:50 -040037 std::unique_ptr<SkPdfRenderer> renderer(SkPdfRenderer::CreateFromFile(path));
halcanary96fcdcc2015-08-27 07:41:13 -070038 if (nullptr == renderer.get()) {
39 return nullptr;
edisonn@google.comf8b6b012013-07-11 14:28:04 +000040 }
scroggo@google.com90922892013-11-14 19:09:27 +000041
halcanary385fe4d2015-08-26 13:07:48 -070042 SkPicture* pic = new SkPicture;
scroggo@google.com90922892013-11-14 19:09:27 +000043 SkCanvas* canvas = pic->beginRecording((int) renderer->MediaBox(0).width(),
44 (int) renderer->MediaBox(0).height());
45 renderer->renderPage(0, canvas, renderer->MediaBox(0));
46 pic->endRecording();
edisonn@google.comf8b6b012013-07-11 14:28:04 +000047 return pic;
48 }
49
50public:
halcanary96fcdcc2015-08-27 07:41:13 -070051 PdfFileViewer(const char name[] = nullptr) : fFilename(name) {
52 fPicture = nullptr;
edisonn@google.comf8b6b012013-07-11 14:28:04 +000053 }
54
55 virtual ~PdfFileViewer() {
56 SkSafeUnref(fPicture);
57 }
58
59protected:
60 // overrides from SkEventSink
61 virtual bool onQuery(SkEvent* evt) {
62 if (SampleCode::TitleQ(*evt)) {
63 SkString name("P:");
64 const char* basename = strrchr(fFilename.c_str(), SkPATH_SEPARATOR);
65 name.append(basename ? basename+1: fFilename.c_str());
66 SampleCode::TitleR(evt, name.c_str());
67 return true;
68 }
69 return this->INHERITED::onQuery(evt);
70 }
71
72 virtual bool onEvent(const SkEvent& evt) {
73 // TODO(edisonn): add here event handlers to disable clipping, or to show helpful info
74 // like pdf object from click, ...
75 // TODO(edisonn): first, next, prev, last page navigation + slideshow
76 return this->INHERITED::onEvent(evt);
77 }
78
79 virtual void onDrawContent(SkCanvas* canvas) {
80 if (!fPicture) {
81 fPicture = LoadPdf(fFilename.c_str());
82 }
83 if (fPicture) {
84 canvas->drawPicture(*fPicture);
85 }
86 }
87
88private:
89 typedef SampleView INHERITED;
90};
91
92SampleView* CreateSamplePdfFileViewer(const char filename[]);
93SampleView* CreateSamplePdfFileViewer(const char filename[]) {
94 return new PdfFileViewer(filename);
95}
96
97//////////////////////////////////////////////////////////////////////////////
98
99#if 0
100static SkView* MyFactory() { return new PdfFileViewer; }
101static SkViewRegister reg(MyFactory);
102#endif
103
104#endif // SAMPLE_PDF_FILE_VIEWER