From cd637c4356d60abe942973d61aed52c72acb6876 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 26 Dec 2011 03:12:54 +1000 Subject: [PATCH] Enabled basic print code for Summary tab --- mainwindow.cpp | 22 +++++++++++++++++++--- 1 file changed, 19 insertions(+), 3 deletions(-) diff --git a/mainwindow.cpp b/mainwindow.cpp index 10c3056b..e23a0b39 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -1213,9 +1213,25 @@ void MainWindow::on_actionPrint_Report_triggered() if (oximetry) PrintReport(oximetry->graphView(),STR_TR_Oximetry); } else { - //QPrinter printer(); - //ui->webView->print(printer) - QMessageBox::information(this,tr("Not supported Yet"),tr("Sorry, printing from this page is not supported yet"),QMessageBox::Ok); + QPrinter printer; +#ifdef Q_WS_X11 + printer.setPrinterName("Print to File (PDF)"); + printer.setOutputFormat(QPrinter::PdfFormat); + QString filename=PREF.Get("{home}/Summary_"+PROFILE.user->userName()+"_"+QDate::currentDate().toString(Qt::ISODate)+".pdf"); + + printer.setOutputFileName(filename); +#endif + printer.setPrintRange(QPrinter::AllPages); + printer.setOrientation(QPrinter::Portrait); + printer.setFullPage(false); // This has nothing to do with scaling + printer.setNumCopies(1); + printer.setPageMargins(10,10,10,10,QPrinter::Millimeter); + + QPrintDialog pdlg(&printer,this); + if (pdlg.exec()==QPrintDialog::Accepted) { + ui->summaryView->print(&printer); + } + //QMessageBox::information(this,tr("Not supported Yet"),tr("Sorry, printing from this page is not supported yet"),QMessageBox::Ok); } }