summaryrefslogtreecommitdiff
path: root/Build/source/libs/xpdf/xpdf-src/xpdf/Page.h
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/libs/xpdf/xpdf-src/xpdf/Page.h')
-rw-r--r--Build/source/libs/xpdf/xpdf-src/xpdf/Page.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/Build/source/libs/xpdf/xpdf-src/xpdf/Page.h b/Build/source/libs/xpdf/xpdf-src/xpdf/Page.h
index 0e7729efc47..ee30a1a8b47 100644
--- a/Build/source/libs/xpdf/xpdf-src/xpdf/Page.h
+++ b/Build/source/libs/xpdf/xpdf-src/xpdf/Page.h
@@ -162,6 +162,9 @@ public:
// Get contents.
Object *getContents(Object *obj) { return contents.fetch(xref, obj); }
+ // Get the page's thumbnail image.
+ Object *getThumbnail(Object *obj) { return thumbnail.fetch(xref, obj); }
+
// Display a page.
void display(OutputDev *out, double hDPI, double vDPI,
int rotate, GBool useMediaBox, GBool crop,
@@ -196,6 +199,7 @@ private:
PageAttrs *attrs; // page attributes
Object annots; // annotations array
Object contents; // page contents
+ Object thumbnail; // reference to thumbnail image
GBool ok; // true if page is valid
};