Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/LTKOutputDev.h
diff options
context:
space:
mode:
authorMartin Kretzschmar <mkretzschmar@src.gnome.org>2002-09-18 22:20:42 (GMT)
committer Martin Kretzschmar <mkretzschmar@src.gnome.org>2002-09-18 22:20:42 (GMT)
commit2a393c134fe3fe8eb85bf818cb7ad6ae4396322a (patch)
treeeba8b0dcaba42d799ed8313faee15fb74a5a0cd2 /pdf/xpdf/LTKOutputDev.h
parent7aac8dc8533347e21311b15186e0af82f1b22fd6 (diff)
Synched with Xpdf 1.01
Diffstat (limited to 'pdf/xpdf/LTKOutputDev.h')
-rw-r--r--pdf/xpdf/LTKOutputDev.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/pdf/xpdf/LTKOutputDev.h b/pdf/xpdf/LTKOutputDev.h
index f8d7dda..7b996dc 100644
--- a/pdf/xpdf/LTKOutputDev.h
+++ b/pdf/xpdf/LTKOutputDev.h
@@ -2,7 +2,7 @@
//
// LTKOutputDev.h
//
-// Copyright 1998 Derek B. Noonburg
+// Copyright 1998-2002 Glyph & Cog, LLC
//
//========================================================================
@@ -25,7 +25,9 @@ class LTKWindow;
class LTKOutputDev: public XOutputDev {
public:
- LTKOutputDev(LTKWindow *win1, unsigned long paperColor);
+ LTKOutputDev(LTKWindow *winA, GBool reverseVideoA,
+ unsigned long paperColor, GBool installCmap,
+ GBool rgbCubeSize, GBool incrementalUpdateA);
~LTKOutputDev();
@@ -34,6 +36,9 @@ public:
// Start a page.
virtual void startPage(int pageNum, GfxState *state);
+ // End a page.
+ virtual void endPage();
+
// Dump page contents to display.
virtual void dump();
@@ -41,6 +46,7 @@ private:
LTKWindow *win; // window
LTKScrollingCanvas *canvas; // drawing canvas
+ GBool incrementalUpdate; // incrementally update the display?
};
#endif