Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/LTKOutputDev.cc
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.cc
parent7aac8dc8533347e21311b15186e0af82f1b22fd6 (diff)
Synched with Xpdf 1.01
Diffstat (limited to 'pdf/xpdf/LTKOutputDev.cc')
-rw-r--r--pdf/xpdf/LTKOutputDev.cc33
1 files changed, 24 insertions, 9 deletions
diff --git a/pdf/xpdf/LTKOutputDev.cc b/pdf/xpdf/LTKOutputDev.cc
index 8b376e4..ba5a332 100644
--- a/pdf/xpdf/LTKOutputDev.cc
+++ b/pdf/xpdf/LTKOutputDev.cc
@@ -2,7 +2,7 @@
//
// LTKOutputDev.cc
//
-// Copyright 1998 Derek B. Noonburg
+// Copyright 1998-2002 Glyph & Cog, LLC
//
//========================================================================
@@ -10,6 +10,7 @@
#pragma implementation
#endif
+#include <aconf.h>
#include <stdio.h>
#include <stdlib.h>
#include <stddef.h>
@@ -23,20 +24,23 @@
#include "GfxState.h"
#include "GfxFont.h"
#include "Error.h"
-#include "Params.h"
#include "LTKOutputDev.h"
//------------------------------------------------------------------------
-LTKOutputDev::LTKOutputDev(LTKWindow *win1, unsigned long paperColor):
- XOutputDev(win1->getDisplay(),
- ((LTKScrollingCanvas *)win1->findWidget("canvas"))->getPixmap(),
- 0, win1->getColormap(), paperColor)
+LTKOutputDev::LTKOutputDev(LTKWindow *winA, GBool reverseVideoA,
+ unsigned long paperColor, GBool installCmap,
+ GBool rgbCubeSize, GBool incrementalUpdateA):
+ XOutputDev(winA->getDisplay(),
+ ((LTKScrollingCanvas *)winA->findWidget("canvas"))->getPixmap(),
+ 0, winA->getColormap(), reverseVideoA, paperColor,
+ installCmap, rgbCubeSize)
{
- win = win1;
+ win = winA;
canvas = (LTKScrollingCanvas *)win->findWidget("canvas");
setPixmap(canvas->getPixmap(),
canvas->getRealWidth(), canvas->getRealHeight());
+ incrementalUpdate = incrementalUpdateA;
}
LTKOutputDev::~LTKOutputDev() {
@@ -48,10 +52,21 @@ void LTKOutputDev::startPage(int pageNum, GfxState *state) {
setPixmap(canvas->getPixmap(),
canvas->getRealWidth(), canvas->getRealHeight());
XOutputDev::startPage(pageNum, state);
- canvas->redraw();
+ if (incrementalUpdate) {
+ canvas->redraw();
+ }
+}
+
+void LTKOutputDev::endPage() {
+ if (!incrementalUpdate) {
+ canvas->redraw();
+ }
+ XOutputDev::endPage();
}
void LTKOutputDev::dump() {
- canvas->redraw();
+ if (incrementalUpdate) {
+ canvas->redraw();
+ }
XOutputDev::dump();
}