subsurface/qt-ui/printdialog.h
Gehad elrobey 231f90bd26 Printing: call print from printer class
This is the main function that prints dive lists.

Signed-off-by: Gehad elrobey <gehadelrobey@gmail.com>
Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
2015-06-04 10:08:04 -07:00

35 lines
653 B
C++

#ifndef PRINTDIALOG_H
#define PRINTDIALOG_H
#include <QDialog>
#include <QPrinter>
#include "printoptions.h"
#include "printer.h"
class QProgressBar;
class PrintOptions;
class PrintLayout;
// should be based on a custom QPrintDialog class
class PrintDialog : public QDialog {
Q_OBJECT
public:
explicit PrintDialog(QWidget *parent = 0, Qt::WindowFlags f = 0);
private:
PrintOptions *optionsWidget;
QProgressBar *progressBar;
Printer *printer;
QPrinter qprinter;
struct print_options printOptions;
private
slots:
void onFinished();
void previewClicked();
void printClicked();
void onPaintRequested(QPrinter *);
};
#endif // PRINTDIALOG_H