mirror of
https://github.com/subsurface/subsurface.git
synced 2024-12-01 06:30:26 +00:00
41bad7695e
PrintLayout is a class that will handle the layouting part of dive profiles, text, tables depending on the settings of a QPrinter and the PrinterDialog and PrintOptions instances. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
29 lines
549 B
C++
29 lines
549 B
C++
#ifndef PRINTDIALOG_H
|
|
#define PRINTDIALOG_H
|
|
|
|
#include <QDialog>
|
|
#include <QPrinter>
|
|
#include "../display.h"
|
|
#include "printoptions.h"
|
|
#include "printlayout.h"
|
|
|
|
// should be based on a custom QPrintDialog class
|
|
class PrintDialog : public QDialog {
|
|
Q_OBJECT
|
|
|
|
public:
|
|
static PrintDialog *instance();
|
|
void runDialog();
|
|
struct options printOptions;
|
|
|
|
private:
|
|
explicit PrintDialog(QWidget *parent = 0, Qt::WindowFlags f = 0);
|
|
PrintOptions *optionsWidget;
|
|
PrintLayout *printLayout;
|
|
QPrinter printer;
|
|
|
|
private slots:
|
|
void printClicked();
|
|
};
|
|
|
|
#endif
|