mirror of
https://github.com/subsurface/subsurface.git
synced 2024-11-28 13:10:19 +00:00
41bad7695e
PrintLayout is a class that will handle the layouting part of dive profiles, text, tables depending on the settings of a QPrinter and the PrinterDialog and PrintOptions instances. Signed-off-by: Lubomir I. Ivanov <neolit123@gmail.com>
48 lines
1.2 KiB
C++
48 lines
1.2 KiB
C++
#include "printdialog.h"
|
|
|
|
#include <QDebug>
|
|
#include <QPushButton>
|
|
#include <QVBoxLayout>
|
|
|
|
PrintDialog *PrintDialog::instance()
|
|
{
|
|
static PrintDialog *self = new PrintDialog();
|
|
self->setAttribute(Qt::WA_QuitOnClose, false);
|
|
return self;
|
|
}
|
|
|
|
PrintDialog::PrintDialog(QWidget *parent, Qt::WindowFlags f)
|
|
{
|
|
// options template (are we storing these in the settings?)
|
|
struct options tempOptions = {options::PRETTY, 0, 2, false, 65, 15, 12};
|
|
printOptions = tempOptions;
|
|
|
|
// create a print layout and pass the printer and options
|
|
printLayout = new PrintLayout(this, &printer, &printOptions);
|
|
|
|
/* temporary.
|
|
* add the PrintOptions widget and a Print button for testing purposes. */
|
|
optionsWidget = new PrintOptions(this, &printOptions);
|
|
|
|
QVBoxLayout *layout = new QVBoxLayout(this);
|
|
setLayout(layout);
|
|
layout->addWidget(optionsWidget);
|
|
|
|
QPushButton *printButton = new QPushButton(tr("&Print"));
|
|
connect(printButton, SIGNAL(clicked(bool)), this, SLOT(printClicked()));
|
|
layout->addWidget(printButton);
|
|
|
|
setFixedSize(520, 500);
|
|
setWindowTitle("Print");
|
|
}
|
|
|
|
void PrintDialog::runDialog()
|
|
{
|
|
exec();
|
|
}
|
|
|
|
void PrintDialog::printClicked(void)
|
|
{
|
|
// nop for now
|
|
printLayout->print();
|
|
}
|