subsurface/qt-ui/printdialog.h
Lubomir I. Ivanov 41bad7695e Print: add a class for print layouting
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>
2013-07-10 15:34:57 +03:00

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