Web   ·   Wiki   ·   Activities   ·   Blog   ·   Lists   ·   Chat   ·   Meeting   ·   Bugs   ·   Git   ·   Translate   ·   Archive   ·   People   ·   Donate
summaryrefslogtreecommitdiffstats
path: root/pdf/xpdf/GDKSplashOutputDev.cc
diff options
context:
space:
mode:
authorJonathan Blandford <jrb@redhat.com>2005-01-05 02:42:04 (GMT)
committer Jonathan Blandford <jrb@src.gnome.org>2005-01-05 02:42:04 (GMT)
commite48cf2858b65aa026771a48d2b315cbc663d8234 (patch)
tree390d0b8699f36874eaa7c8a77e3917632864eac0 /pdf/xpdf/GDKSplashOutputDev.cc
parenta88a1cde73b054120966e67bc0ad361457c5b4d2 (diff)
Do real thumbnailing of PDF files. It's slow, but I'll speed it up next!
Tue Jan 4 21:25:05 2005 Jonathan Blandford <jrb@redhat.com> * pdf/xpdf/pdf-document.cc: Do real thumbnailing of PDF files. It's slow, but I'll speed it up next!
Diffstat (limited to 'pdf/xpdf/GDKSplashOutputDev.cc')
-rw-r--r--pdf/xpdf/GDKSplashOutputDev.cc6
1 files changed, 5 insertions, 1 deletions
diff --git a/pdf/xpdf/GDKSplashOutputDev.cc b/pdf/xpdf/GDKSplashOutputDev.cc
index 4ef3bb3..90f8811 100644
--- a/pdf/xpdf/GDKSplashOutputDev.cc
+++ b/pdf/xpdf/GDKSplashOutputDev.cc
@@ -90,7 +90,7 @@ void GDKSplashOutputDev::endPage() {
}
void GDKSplashOutputDev::dump() {
- if (incrementalUpdate) {
+ if (incrementalUpdate && redrawCbk) {
(*redrawCbk)(redrawCbkData);
}
}
@@ -155,6 +155,10 @@ void GDKSplashOutputDev::redraw(int srcX, int srcY,
g_free (gdk_buf);
}
+void GDKSplashOutputDev::drawToPixbuf(GdkPixbuf *pixbuf, int pageNum) {
+
+}
+
GBool GDKSplashOutputDev::findText(Unicode *s, int len,
GBool startAtTop, GBool stopAtBottom,
GBool startAtLast, GBool stopAtLast,