00001 #ifndef BITMAP_DEVICE_H 00002 #define BITMAP_DEVICE_H 00003 #include <qscrollview.h> 00004 #include "PrintDevice.h" 00005 #include <qpixmap.h> 00006 #include "../painter/QPainterZoom.h" 00011 class BitmapDevice:public PrintDevice{ 00012 QPixmap * pixmap; 00013 QPainterZoom * painter; 00014 int pageNumber; 00015 QString prefixname; 00016 public: 00017 BitmapDevice(QString prefix); 00018 Painter * getPainter(int page); 00019 void save(); 00020 }; 00021 #endif
1.3.6