2015-04-21 16:05:20 +00:00
|
|
|
#ifndef PRINTER_H
|
|
|
|
#define PRINTER_H
|
|
|
|
|
|
|
|
#include <QPrinter>
|
|
|
|
#include <QWebView>
|
2015-06-10 17:31:19 +00:00
|
|
|
#include <QRect>
|
|
|
|
#include <QPainter>
|
|
|
|
|
|
|
|
#include "profile/profilewidget2.h"
|
2015-06-14 04:25:35 +00:00
|
|
|
#include "printoptions.h"
|
2015-07-02 20:26:31 +00:00
|
|
|
#include "templateedit.h"
|
2015-04-21 16:05:20 +00:00
|
|
|
|
|
|
|
class Printer : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
2015-07-10 19:30:18 +00:00
|
|
|
public:
|
|
|
|
enum PrintMode {
|
|
|
|
PRINT,
|
|
|
|
PREVIEW
|
|
|
|
};
|
|
|
|
|
2015-04-21 16:05:20 +00:00
|
|
|
private:
|
2015-07-10 18:34:25 +00:00
|
|
|
QPaintDevice *paintDevice;
|
2015-04-21 16:05:20 +00:00
|
|
|
QWebView *webView;
|
2015-06-14 04:25:35 +00:00
|
|
|
print_options *printOptions;
|
2015-07-02 20:26:31 +00:00
|
|
|
template_options *templateOptions;
|
2015-06-17 15:05:14 +00:00
|
|
|
QSize pageSize;
|
2015-07-10 19:30:18 +00:00
|
|
|
PrintMode printMode;
|
2015-06-17 15:05:14 +00:00
|
|
|
int done;
|
|
|
|
int dpi;
|
2015-07-10 14:20:14 +00:00
|
|
|
void render(int Pages);
|
2015-08-13 21:23:07 +00:00
|
|
|
void flowRender();
|
2015-06-10 17:31:19 +00:00
|
|
|
void putProfileImage(QRect box, QRect viewPort, QPainter *painter, struct dive *dive, QPointer<ProfileWidget2> profile);
|
2015-05-30 13:32:15 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void templateProgessUpdated(int value);
|
2015-04-21 16:05:20 +00:00
|
|
|
|
|
|
|
public:
|
2015-07-10 19:30:18 +00:00
|
|
|
Printer(QPaintDevice *paintDevice, print_options *printOptions, template_options *templateOptions, PrintMode printMode);
|
2015-07-10 12:59:56 +00:00
|
|
|
~Printer();
|
2015-04-21 16:05:20 +00:00
|
|
|
void print();
|
2015-07-10 19:45:27 +00:00
|
|
|
void previewOnePage();
|
2015-05-30 13:32:15 +00:00
|
|
|
|
|
|
|
signals:
|
|
|
|
void progessUpdated(int value);
|
2015-04-21 16:05:20 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif //PRINTER_H
|