2013-07-09 12:37:53 +00:00
|
|
|
#include "printdialog.h"
|
2013-12-04 13:44:31 +00:00
|
|
|
#include "printoptions.h"
|
2013-11-30 17:18:04 +00:00
|
|
|
#include "mainwindow.h"
|
2013-07-09 12:37:53 +00:00
|
|
|
|
2013-12-04 11:41:19 +00:00
|
|
|
#include <QProgressBar>
|
2013-07-10 16:27:10 +00:00
|
|
|
#include <QPrintPreviewDialog>
|
2013-12-04 11:51:34 +00:00
|
|
|
#include <QPrintDialog>
|
2014-04-25 17:27:44 +00:00
|
|
|
#include <QShortcut>
|
2014-11-13 22:57:42 +00:00
|
|
|
#include <QSettings>
|
2014-11-14 11:42:22 +00:00
|
|
|
|
2014-11-13 22:57:42 +00:00
|
|
|
#define SETTINGS_GROUP "PrintDialog"
|
2013-07-09 12:37:53 +00:00
|
|
|
|
2014-02-12 14:26:25 +00:00
|
|
|
PrintDialog::PrintDialog(QWidget *parent, Qt::WindowFlags f) : QDialog(parent, f)
|
2013-07-09 12:37:53 +00:00
|
|
|
{
|
2014-11-13 22:57:42 +00:00
|
|
|
// check if the options were previously stored in the settings; if not use some defaults.
|
|
|
|
QSettings s;
|
|
|
|
bool stored = s.childGroups().contains(SETTINGS_GROUP);
|
|
|
|
if (!stored) {
|
|
|
|
printOptions.print_selected = true;
|
|
|
|
printOptions.color_selected = true;
|
|
|
|
printOptions.landscape = false;
|
|
|
|
} else {
|
|
|
|
s.beginGroup(SETTINGS_GROUP);
|
|
|
|
printOptions.type = (print_options::print_type)s.value("type").toInt();
|
|
|
|
printOptions.print_selected = s.value("print_selected").toBool();
|
|
|
|
printOptions.color_selected = s.value("color_selected").toBool();
|
|
|
|
printOptions.landscape = s.value("landscape").toBool();
|
|
|
|
printer.setOrientation((QPrinter::Orientation)printOptions.landscape);
|
|
|
|
}
|
2013-07-10 12:34:57 +00:00
|
|
|
|
2013-12-04 11:46:08 +00:00
|
|
|
// create a print options object and pass our options struct
|
2013-07-09 20:43:21 +00:00
|
|
|
optionsWidget = new PrintOptions(this, &printOptions);
|
|
|
|
|
2013-07-09 12:37:53 +00:00
|
|
|
QVBoxLayout *layout = new QVBoxLayout(this);
|
|
|
|
setLayout(layout);
|
|
|
|
|
2014-04-16 18:25:15 +00:00
|
|
|
layout->addWidget(optionsWidget);
|
2013-12-04 12:14:04 +00:00
|
|
|
|
2013-12-04 13:51:01 +00:00
|
|
|
progressBar = new QProgressBar();
|
2013-12-04 11:41:19 +00:00
|
|
|
progressBar->setMinimum(0);
|
|
|
|
progressBar->setMaximum(100);
|
2014-02-08 19:12:13 +00:00
|
|
|
progressBar->setValue(0);
|
2013-12-04 11:41:19 +00:00
|
|
|
progressBar->setTextVisible(false);
|
|
|
|
layout->addWidget(progressBar);
|
|
|
|
|
2014-04-16 18:25:15 +00:00
|
|
|
QHBoxLayout *hLayout = new QHBoxLayout();
|
|
|
|
layout->addLayout(hLayout);
|
|
|
|
|
|
|
|
QPushButton *printButton = new QPushButton(tr("P&rint"));
|
|
|
|
connect(printButton, SIGNAL(clicked(bool)), this, SLOT(printClicked()));
|
|
|
|
|
|
|
|
QPushButton *previewButton = new QPushButton(tr("&Preview"));
|
|
|
|
connect(previewButton, SIGNAL(clicked(bool)), this, SLOT(previewClicked()));
|
|
|
|
|
|
|
|
QDialogButtonBox *buttonBox = new QDialogButtonBox;
|
|
|
|
buttonBox->addButton(QDialogButtonBox::Cancel);
|
|
|
|
buttonBox->addButton(printButton, QDialogButtonBox::AcceptRole);
|
|
|
|
buttonBox->addButton(previewButton, QDialogButtonBox::ActionRole);
|
|
|
|
|
|
|
|
connect(buttonBox, SIGNAL(rejected()), this, SLOT(reject()));
|
|
|
|
|
|
|
|
hLayout->addWidget(buttonBox);
|
2013-11-30 16:43:40 +00:00
|
|
|
|
2013-11-30 16:54:28 +00:00
|
|
|
setWindowTitle(tr("Print"));
|
|
|
|
setWindowIcon(QIcon(":subsurface-icon"));
|
2014-04-25 17:27:44 +00:00
|
|
|
|
|
|
|
QShortcut *close = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_W), this);
|
|
|
|
connect(close, SIGNAL(activated()), this, SLOT(close()));
|
|
|
|
QShortcut *quit = new QShortcut(QKeySequence(Qt::CTRL + Qt::Key_Q), this);
|
|
|
|
connect(quit, SIGNAL(activated()), parent, SLOT(close()));
|
2014-11-13 22:57:42 +00:00
|
|
|
|
|
|
|
// seems to be the most reliable way to track for all sorts of dialog disposal.
|
|
|
|
connect(this, SIGNAL(finished(int)), this, SLOT(onFinished()));
|
|
|
|
}
|
|
|
|
|
|
|
|
void PrintDialog::onFinished()
|
|
|
|
{
|
|
|
|
// save the settings
|
|
|
|
QSettings s;
|
|
|
|
s.beginGroup(SETTINGS_GROUP);
|
|
|
|
s.setValue("type", printOptions.type);
|
|
|
|
s.setValue("print_selected", printOptions.print_selected);
|
|
|
|
s.setValue("color_selected", printOptions.color_selected);
|
2013-07-09 12:37:53 +00:00
|
|
|
}
|
|
|
|
|
2013-12-04 11:51:34 +00:00
|
|
|
void PrintDialog::previewClicked(void)
|
2013-07-09 12:37:53 +00:00
|
|
|
{
|
2013-12-04 11:51:34 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PrintDialog::printClicked(void)
|
|
|
|
{
|
|
|
|
QPrintDialog printDialog(&printer, this);
|
2015-05-30 08:53:34 +00:00
|
|
|
if (printDialog.exec() == QDialog::Accepted) {
|
2014-07-18 00:25:57 +00:00
|
|
|
close();
|
|
|
|
}
|
2013-07-10 16:27:10 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void PrintDialog::onPaintRequested(QPrinter *printerPtr)
|
|
|
|
{
|
2013-07-09 12:37:53 +00:00
|
|
|
}
|