summaryrefslogtreecommitdiffstats
path: root/qt-ui/printlayout.h
blob: 9328030f4ed4ebb885bb9617451af1fc22de1490 (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
#ifndef PRINTLAYOUT_H
#define PRINTLAYOUT_H

#include <QPrinter>
#include <QPainter>
#include "../display.h"

class PrintDialog;

class PrintLayout : public QObject {
	Q_OBJECT

public:
	PrintLayout(PrintDialog *, QPrinter *, struct options *);
	void print();

private:
	PrintDialog *dialog;
	QPrinter *printer;
	struct options *printOptions;

	QPainter *painter;
	int screenDpiX, screenDpiY, printerDpi;
	qreal scaleX, scaleY;
	QRect pageRect;

	void setup();
	void printSixDives();
	void printTwoDives();
	void printTable();
	QString insertTableHeadingRow();
	QString insertTableDataRow();
};

#endif