⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 coreoutputdev.h

📁 这是一个做pdf阅读器的源代码文件,是大家学习阅读器资料的很好参考
💻 H
字号:
//========================================================================//// CoreOutputDev.h//// Copyright 2004 Glyph & Cog, LLC////========================================================================#ifndef COREOUTPUTDEV_H#define COREOUTPUTDEV_H#ifdef USE_GCC_PRAGMAS#pragma interface#endif#include "SplashTypes.h"#include "SplashOutputDev.h"class TextPage;//------------------------------------------------------------------------typedef void (*CoreOutRedrawCbk)(void *data, int x0, int y0, int x1, int y1,				 GBool composited);//------------------------------------------------------------------------// CoreOutputDev//------------------------------------------------------------------------class CoreOutputDev: public SplashOutputDev {public:  CoreOutputDev(SplashColorMode colorModeA, int bitmapRowPadA,		GBool reverseVideoA, SplashColorPtr paperColorA,		GBool incrementalUpdateA,		CoreOutRedrawCbk redrawCbkA,		void *redrawCbkDataA);  virtual ~CoreOutputDev();  //----- initialization and control  // End a page.  virtual void endPage();  // Dump page contents to display.  virtual void dump();  //----- special access  // Clear out the document (used when displaying an empty window).  void clear();private:  GBool incrementalUpdate;      // incrementally update the display?  CoreOutRedrawCbk redrawCbk;  void *redrawCbkData;};#endif

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -