2013-07-10 12:34:57 +00:00
|
|
|
#ifndef PRINTLAYOUT_H
|
|
|
|
#define PRINTLAYOUT_H
|
|
|
|
|
2013-07-25 09:52:20 +00:00
|
|
|
#include <QObject>
|
2013-07-10 12:34:57 +00:00
|
|
|
#include <QPrinter>
|
2013-07-25 09:52:20 +00:00
|
|
|
#include <QList>
|
2013-07-10 12:34:57 +00:00
|
|
|
|
|
|
|
class PrintDialog;
|
2013-07-25 09:52:20 +00:00
|
|
|
class TablePrintModel;
|
|
|
|
struct dive;
|
2013-07-10 12:34:57 +00:00
|
|
|
|
|
|
|
class PrintLayout : public QObject {
|
|
|
|
Q_OBJECT
|
|
|
|
|
|
|
|
public:
|
|
|
|
PrintLayout(PrintDialog *, QPrinter *, struct options *);
|
|
|
|
void print();
|
|
|
|
|
|
|
|
private:
|
|
|
|
PrintDialog *dialog;
|
|
|
|
QPrinter *printer;
|
|
|
|
struct options *printOptions;
|
|
|
|
|
2013-07-10 16:32:15 +00:00
|
|
|
QPainter *painter;
|
2013-07-25 09:52:20 +00:00
|
|
|
int screenDpiX, screenDpiY, printerDpi, scaledPageW, scaledPageH;
|
2013-07-10 13:04:00 +00:00
|
|
|
qreal scaleX, scaleY;
|
|
|
|
QRect pageRect;
|
2013-07-10 12:34:57 +00:00
|
|
|
|
2013-07-25 09:52:20 +00:00
|
|
|
QList<QString> tablePrintColumnNames;
|
|
|
|
QList<unsigned int> tablePrintColumnWidths;
|
|
|
|
unsigned int tablePrintHeadingBackground;
|
2013-07-10 21:48:38 +00:00
|
|
|
|
2013-07-10 13:04:00 +00:00
|
|
|
void setup();
|
2013-07-11 09:55:48 +00:00
|
|
|
void printSixDives() const;
|
|
|
|
void printTwoDives() const;
|
2013-07-25 09:52:20 +00:00
|
|
|
void printTable();
|
|
|
|
void addTablePrintDataRow(TablePrintModel *model, int row, struct dive *dive) const;
|
|
|
|
void addTablePrintHeadingRow(TablePrintModel *model, int row) const;
|
|
|
|
|
2013-07-13 13:12:32 +00:00
|
|
|
QPixmap convertPixmapToGrayscale(QPixmap) const;
|
2013-07-10 12:34:57 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|