]> www.fi.muni.cz Git - evince.git/blobdiff - pdf/xpdf/Page.h
Synched with Xpdf 0.92
[evince.git] / pdf / xpdf / Page.h
index 6c020c7dc04d6dd5ed0a6c921220a2aad2debee4..a144d2cfa7195f5cf3cf757d7257d20eecffa326 100644 (file)
@@ -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: