Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/Page.h
diff options
context:
space:
mode:
authorMartin Kretzschmar <mkretzschmar@src.gnome.org>2002-09-18 20:32:18 (GMT)
committer Martin Kretzschmar <mkretzschmar@src.gnome.org>2002-09-18 20:32:18 (GMT)
commit7aac8dc8533347e21311b15186e0af82f1b22fd6 (patch)
tree02650bb02c8a1d8468c22f50ff151885d233016b /pdf/xpdf/Page.h
parentd99fb4f4acd14fcdbda968abd907547dcc7af40c (diff)
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
Diffstat (limited to 'pdf/xpdf/Page.h')
-rw-r--r--pdf/xpdf/Page.h7
1 files changed, 5 insertions, 2 deletions
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: