printing: don't access displayed_dive in printing code

To phase out this global variable, avoid access of displayed_dive
in the printing code. This is used when printing a plan. Instead,
when in plan-mode, pass the planned dive to the printing code
as a single dive to be printed.

Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
This commit is contained in:
Berthold Stoeger 2022-11-06 20:37:53 +01:00 committed by bstoeger
parent 80df790efc
commit d51589b9a7
8 changed files with 44 additions and 29 deletions

View file

@ -7,6 +7,7 @@
#include "templateedit.h"
#include "printoptions.h"
struct dive;
class Printer;
class QPrinter;
class QProgressBar;
@ -18,11 +19,12 @@ class PrintDialog : public QDialog {
Q_OBJECT
public:
explicit PrintDialog(bool inPlanner, QWidget *parent = 0);
// If singleDive is non-null, print only that single dive
explicit PrintDialog(dive *singleDive, QWidget *parent = 0);
~PrintDialog();
private:
bool inPlanner;
dive *singleDive;
PrintOptions *optionsWidget;
QProgressBar *progressBar;
Printer *printer;