mirror of
https://github.com/subsurface/subsurface.git
synced 2025-02-19 22:16:15 +00:00
PrintDialog class cleanup.
* Remove static PrintDialog::instance() method * Remove void PrintDialog::runDialog() method * construct/destruct print dialog on demand Signed-off-by: Boris Barbulovski <bbarbulovski@gmail.com> Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
This commit is contained in:
parent
3086741d49
commit
02e9a6d07b
3 changed files with 5 additions and 17 deletions
|
@ -11,13 +11,6 @@
|
|||
#include <QPrintPreviewDialog>
|
||||
#include <QPrintDialog>
|
||||
|
||||
PrintDialog *PrintDialog::instance()
|
||||
{
|
||||
static PrintDialog *self = new PrintDialog(mainWindow());
|
||||
self->setAttribute(Qt::WA_QuitOnClose, false);
|
||||
return self;
|
||||
}
|
||||
|
||||
PrintDialog::PrintDialog(QWidget *parent, Qt::WindowFlags f)
|
||||
{
|
||||
// options template (are we storing these in the settings?)
|
||||
|
@ -52,6 +45,7 @@ PrintDialog::PrintDialog(QWidget *parent, Qt::WindowFlags f)
|
|||
connect(printLayout, SIGNAL(signalProgress(int)), progressBar, SLOT(setValue(int)));
|
||||
progressBar->setMinimum(0);
|
||||
progressBar->setMaximum(100);
|
||||
progressBar->setValue(0);
|
||||
progressBar->setTextVisible(false);
|
||||
layout->addWidget(progressBar);
|
||||
|
||||
|
@ -62,12 +56,6 @@ PrintDialog::PrintDialog(QWidget *parent, Qt::WindowFlags f)
|
|||
setWindowIcon(QIcon(":subsurface-icon"));
|
||||
}
|
||||
|
||||
void PrintDialog::runDialog()
|
||||
{
|
||||
progressBar->setValue(0);
|
||||
exec();
|
||||
}
|
||||
|
||||
void PrintDialog::previewClicked(void)
|
||||
{
|
||||
QPrintPreviewDialog previewDialog(&printer, this);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue