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.h52
1 files changed, 0 insertions, 52 deletions
diff --git a/pdf/xpdf/LTKOutputDev.h b/pdf/xpdf/LTKOutputDev.h
deleted file mode 100644
index 7b996dc..0000000
--- a/pdf/xpdf/LTKOutputDev.h
+++ /dev/null
@@ -1,52 +0,0 @@
-//========================================================================
-//
-// LTKOutputDev.h
-//
-// Copyright 1998-2002 Glyph & Cog, LLC
-//
-//========================================================================
-
-#ifndef LTKOUTPUTDEV_H
-#define LTKOUTPUTDEV_H
-
-#ifdef __GNUC__
-#pragma interface
-#endif
-
-#include <stddef.h>
-#include "config.h"
-#include "XOutputDev.h"
-
-class LTKApp;
-class LTKWindow;
-
-//------------------------------------------------------------------------
-
-class LTKOutputDev: public XOutputDev {
-public:
-
- LTKOutputDev(LTKWindow *winA, GBool reverseVideoA,
- unsigned long paperColor, GBool installCmap,
- GBool rgbCubeSize, GBool incrementalUpdateA);
-
- ~LTKOutputDev();
-
- //----- initialization and control
-
- // Start a page.
- virtual void startPage(int pageNum, GfxState *state);
-
- // End a page.
- virtual void endPage();
-
- // Dump page contents to display.
- virtual void dump();
-
-private:
-
- LTKWindow *win; // window
- LTKScrollingCanvas *canvas; // drawing canvas
- GBool incrementalUpdate; // incrementally update the display?
-};
-
-#endif