mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 05:00:20 +00:00
42cff9b3a5
The TemplateLayout prints different dives depending on whether the planner is active. Instead of accessing a global variable, pass the status down from the MainWindow. That's all quite convoluted, since there are multiple layers involved. On the positive side, the in_planner() function has now no users an can be removed. Signed-off-by: Berthold Stoeger <bstoeger@mail.tuwien.ac.at>
43 lines
855 B
C++
43 lines
855 B
C++
// SPDX-License-Identifier: GPL-2.0
|
|
#ifndef PRINTDIALOG_H
|
|
#define PRINTDIALOG_H
|
|
|
|
#ifndef NO_PRINTING
|
|
#include <QDialog>
|
|
#include "templateedit.h"
|
|
#include "printoptions.h"
|
|
|
|
class Printer;
|
|
class QPrinter;
|
|
class QProgressBar;
|
|
class PrintOptions;
|
|
class PrintLayout;
|
|
|
|
// should be based on a custom QPrintDialog class
|
|
class PrintDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit PrintDialog(bool inPlanner, QWidget *parent = 0);
|
|
~PrintDialog();
|
|
|
|
private:
|
|
bool inPlanner;
|
|
PrintOptions *optionsWidget;
|
|
QProgressBar *progressBar;
|
|
Printer *printer;
|
|
QPrinter *qprinter;
|
|
struct print_options printOptions;
|
|
struct template_options templateOptions;
|
|
|
|
private
|
|
slots:
|
|
void onFinished();
|
|
void previewClicked();
|
|
void exportHtmlClicked();
|
|
void printClicked();
|
|
void onPaintRequested(QPrinter *);
|
|
void createPrinterObj();
|
|
};
|
|
#endif
|
|
#endif // PRINTDIALOG_H
|