From 7aac8dc8533347e21311b15186e0af82f1b22fd6 Mon Sep 17 00:00:00 2001 From: Martin Kretzschmar Date: Wed, 18 Sep 2002 20:32:18 +0000 Subject: Synched with Xpdf 0.92 this adds "decryption" support testing this code after six weeks immediately gives me segfaults (image drawing) :-O must have fixed that later without knowing :-O --- (limited to 'pdf/xpdf/Page.h') diff --git a/pdf/xpdf/Page.h b/pdf/xpdf/Page.h index 6c020c7..a144d2c 100644 --- a/pdf/xpdf/Page.h +++ b/pdf/xpdf/Page.h @@ -18,6 +18,8 @@ class Dict; class XRef; class OutputDev; +class Links; +class Catalog; //------------------------------------------------------------------------ // PageAttrs @@ -87,7 +89,7 @@ public: double getHeight() { return attrs->getY2() - attrs->getY1(); } int getRotate() { return attrs->getRotate(); } - // Get resource + // Get resource dictionary. Dict *getResourceDict() { return attrs->getResourceDict(); } // Get annotations array. @@ -97,7 +99,8 @@ public: Object *getContents(Object *obj) { return contents.fetch(obj); } // Display a page. - void display(OutputDev *out, int dpi, int rotate); + void display(OutputDev *out, double dpi, int rotate, + Links *links, Catalog *catalog); private: -- cgit v0.9.1