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:
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