diff options
author | Gehad elrobey <gehadelrobey@gmail.com> | 2015-06-14 06:25:35 +0200 |
---|---|---|
committer | Lubomir I. Ivanov <neolit123@gmail.com> | 2015-06-19 21:41:57 +0300 |
commit | 60c5e3cf25e0966fa7ec5f90d5e04404e7fae81f (patch) | |
tree | 88f6098cf5c402094d973a8cb16eb36ea232f4c6 /printer.h | |
parent | 42b9d0d047abfa9b7816f59d00a0ed0f87368975 (diff) | |
download | subsurface-60c5e3cf25e0966fa7ec5f90d5e04404e7fae81f.tar.gz |
Printing: pass the print_options struct to TemplateLayout and Printer
As the print_options struct is needed by both TemplateLayout and Printer
class, it can be passed to their constructor.
Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Diffstat (limited to 'printer.h')
-rw-r--r-- | printer.h | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -7,6 +7,7 @@ #include <QPainter> #include "profile/profilewidget2.h" +#include "printoptions.h" class Printer : public QObject { Q_OBJECT @@ -14,6 +15,7 @@ class Printer : public QObject { private: QPrinter *printer; QWebView *webView; + print_options *printOptions; void render(); void putProfileImage(QRect box, QRect viewPort, QPainter *painter, struct dive *dive, QPointer<ProfileWidget2> profile); int done; @@ -22,7 +24,7 @@ private slots: void templateProgessUpdated(int value); public: - Printer(QPrinter *printer); + Printer(QPrinter *printer, print_options *printOptions); void print(); signals: |