mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
af1c55c29d
We don't really need includes of display.h and dive.h in printoptions.h and printlayout.h or forward declartions of 'struct dive' and 'struct options' in there. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
34 lines
599 B
C++
34 lines
599 B
C++
#ifndef PRINTLAYOUT_H
|
|
#define PRINTLAYOUT_H
|
|
|
|
#include <QPrinter>
|
|
#include <QStringList>
|
|
|
|
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(struct dive *dive);
|
|
};
|
|
|
|
#endif
|