mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 21:20:19 +00:00
9dc45af915
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>
30 lines
585 B
C++
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
|