subsurface/qt-ui/printdialog.h
Lubomir I. Ivanov 9dc45af915 Print: add a print preview for testing purposes
Use a QPrintPreviewDialog, while the print logic is WIP.
This way Qt will show the print output in a window instead
of exporting to a file and opending it manualy.

Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
2013-07-10 19:27:10 +03:00

30 lines
585 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();
void onPaintRequested(QPrinter *);
};
#endif