summaryrefslogtreecommitdiffstats
path: root/printer.h
blob: 4ab65834a4e0ebd5a0942a2a2b0e11eb6c9ac191 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
#ifndef PRINTER_H
#define PRINTER_H

#include <QPrinter>
#include <QWebView>
#include <QRect>
#include <QPainter>

#include "profile/profilewidget2.h"
#include "printoptions.h"
#include "templateedit.h"

class Printer : public QObject {
	Q_OBJECT

private:
	QPrinter *printer;
	QWebView *webView;
	print_options *printOptions;
	template_options *templateOptions;
	QSize pageSize;
	int done;
	int dpi;
	void render();
	void putProfileImage(QRect box, QRect viewPort, QPainter *painter, struct dive *dive, QPointer<ProfileWidget2> profile);

private slots:
	void templateProgessUpdated(int value);

public:
	Printer(QPrinter *printer, print_options *printOptions, template_options *templateOptions);
	void print();

signals:
	void progessUpdated(int value);
};

#endif //PRINTER_H