summaryrefslogtreecommitdiffstats
path: root/printer.h
blob: 1974d46c1d2fa22b140ac1d9eadd59dbcb65e0eb (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
#ifndef PRINTER_H
#define PRINTER_H

#include <QPrinter>
#include <QWebView>

class Printer : public QObject {
	Q_OBJECT

private:
	QPrinter *printer;
	QWebView *webView;
	void render();
	int done;

private slots:
	void templateProgessUpdated(int value);

public:
	Printer(QPrinter *printer);
	void print();

signals:
	void progessUpdated(int value);
};

#endif //PRINTER_H