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

Unified Diff: experimental/PdfViewer/pdfparser/podofo/SkPodofoParsedPDF.h

Issue 18042005: isolate podofo to prepare for native parser, autogenerate PDF API during build (Closed) Base URL: http://skia.googlecode.com/svn/trunk/
Patch Set: Created 7 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 side-by-side diff with in-line comments
Download patch
Index: experimental/PdfViewer/pdfparser/podofo/SkPodofoParsedPDF.h
===================================================================
--- experimental/PdfViewer/pdfparser/podofo/SkPodofoParsedPDF.h (revision 0)
+++ experimental/PdfViewer/pdfparser/podofo/SkPodofoParsedPDF.h (revision 0)
@@ -0,0 +1,59 @@
+#ifndef EXPERIMENTAL_PDFVIEWER_PDFPARSER_PODOFO_SKPODOFOPARSEDPDF_H_
+#define EXPERIMENTAL_PDFVIEWER_PDFPARSER_PODOFO_SKPODOFOPARSEDPDF_H_
+
+#include "SkRect.h"
+
+class SkCanvas;
+
+class SkPdfInteger;
+class SkPdfMapper;
+class SkPdfNumber;
+class SkPdfObject;
+class SkPdfResourceDictionary;
+class SkPdfStream;
+class SkPdfString;
+
+class SkPdfPodofoTokenizer;
+
+namespace PoDoFo {
+class PdfMemDocument;
+class PdfObject;
+}
+
+class SkPodofoParsedPDF {
+public:
+ SkPodofoParsedPDF(const char* path);
+ virtual ~SkPodofoParsedPDF();
+
+ virtual int pages() const;
+ virtual double width(int page) const;
+ virtual double height(int page) const;
+ const SkPdfResourceDictionary* pageResources(int page) const;
+ virtual SkRect MediaBox(int n) const;
+ virtual SkPdfPodofoTokenizer* tokenizerOfPage(int n) const;
+
+ virtual SkPdfPodofoTokenizer* tokenizerOfStream(const SkPdfStream* stream) const;
+ virtual SkPdfPodofoTokenizer* tokenizerOfBuffer(char* buffer, size_t len) const;
+
+ virtual size_t objects() const;
+ virtual const SkPdfObject* object(int i) const;
+
+ PoDoFo::PdfMemDocument* podofo() const {return fDoc;}
+
+ const SkPdfMapper* mapper() const;
+
+ SkPdfNumber* createNumber(double number) const;
+ SkPdfInteger* createInteger(int value) const;
+ SkPdfString* createString(char* sz, size_t len) const;
+
+ void drawPage(int page, SkCanvas* canvas) const;
+
+private:
+ SkPdfObject* make(PoDoFo::PdfObject* obj) const;
+ const SkPdfObject* make(const PoDoFo::PdfObject* obj) const;
+
+ PoDoFo::PdfMemDocument* fDoc;
+ SkPdfMapper* fMapper;
+};
+
+#endif // EXPERIMENTAL_PDFVIEWER_PDFPARSER_PODOFO_SKPODOFOPARSEDPDF_H_

Powered by Google App Engine
This is Rietveld 408576698