2013-07-09 12:37:53 +00:00
|
|
|
#ifndef PRINTDIALOG_H
|
|
|
|
#define PRINTDIALOG_H
|
|
|
|
|
|
|
|
#include <QDialog>
|
2013-07-10 12:34:57 +00:00
|
|
|
#include <QPrinter>
|
2013-07-09 12:37:53 +00:00
|
|
|
#include "../display.h"
|
|
|
|
#include "printoptions.h"
|
2013-07-10 12:34:57 +00:00
|
|
|
#include "printlayout.h"
|
2013-07-09 12:37:53 +00:00
|
|
|
|
|
|
|
// 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;
|
2013-07-10 12:34:57 +00:00
|
|
|
PrintLayout *printLayout;
|
|
|
|
QPrinter printer;
|
2013-07-09 12:37:53 +00:00
|
|
|
|
|
|
|
private slots:
|
|
|
|
void printClicked();
|
2013-07-10 16:27:10 +00:00
|
|
|
void onPaintRequested(QPrinter *);
|
2013-07-09 12:37:53 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|