#include "report.h" #include "ui_report.h" #include #include #include #include #include #include #include Report::Report(QWidget *parent, Profile * _profile, gGraphView * shared, Overview * overview) : QWidget(parent), ui(new Ui::Report), profile(_profile), m_overview(overview) { ui->setupUi(this); Q_ASSERT(profile!=NULL); GraphView=new gGraphView(this,shared); setMaximumSize(1280,800); setMinimumSize(1280,800); GraphView->setMaximumSize(1280,graph_height); GraphView->setMinimumSize(1280,graph_height); GraphView->hide(); // Reusing the layer data from overview screen, // (Can't reuse the graphs objects without breaking things) UC=new gGraph(GraphView,"Usage",graph_height,0); UC->AddLayer(m_overview->uc); AHI=new gGraph(GraphView,"AHI",graph_height,0); AHI->AddLayer(m_overview->bc); PR=new gGraph(GraphView,"Pressure",graph_height,0); PR->AddLayer(m_overview->pr); LK=new gGraph(GraphView,"Leaks",graph_height,0); LK->AddLayer(m_overview->lk); NPB=new gGraph(GraphView,"% in PB",graph_height,0); NPB->AddLayer(m_overview->npb); graphs.push_back(AHI); graphs.push_back(UC); graphs.push_back(PR); graphs.push_back(LK); graphs.push_back(NPB); gXAxis *gx; for (int i=0;iAddLayer(new gYAxis(),LayerLeft,gYAxis::Margin); gx=new gXAxis(); gx->setUtcFix(true); graphs[i]->AddLayer(gx,LayerBottom,0,gXAxis::Margin); graphs[i]->AddLayer(new gXGrid()); } GraphView->hideSplitter(); //ui->webView->hide(); m_ready=false; ReloadGraphs(); // Reload(); } Report::~Report() { delete ui; } void Report::ReloadGraphs() { for (int i=0;isetDay(NULL); } startDate=profile->FirstDay(); endDate=profile->LastDay(); for (int i=0;iResetBounds(); } m_ready=true; } void Report::resizeEvent(QResizeEvent *event) { // QWidget::resizeEvent(event); //GraphView->setMinimumSize(1280,graph_height); //GraphView->setMaximumSize(1280,graph_height); //GenerateReport(startDate,endDate); } QPixmap Report::Snapshot(gGraph * graph) { QDateTime d1(startDate,QTime(0,0,0),Qt::UTC); qint64 first=qint64(d1.toTime_t())*1000L; QDateTime d2(endDate,QTime(23,59,59),Qt::UTC); qint64 last=qint64(d2.toTime_t())*1000L; GraphView->TrashGraphs(); GraphView->AddGraph(graph); GraphView->ResetBounds(); GraphView->SetXBounds(first,last); QPixmap pixmap=GraphView->renderPixmap(1280,graph_height,false); return pixmap; } void Report::GenerateReport(QDate start, QDate end) { if (!m_ready) return; startDate=start; endDate=end; //UC->ResetBounds(); QString html="" "" "" "
" "" "" "
"; html+="

CPAP Overview

"; html+="
"; //html+="This is a temporary scratch pad tab so I can see what's going on while designing printing code. These graphs are images, and not controllable."; if (!((*profile).Exists("FirstName") && (*profile).Exists("LastName"))) html+="

Please edit your profile

"; else { html+=""; } if ((*profile).Exists("Address")&& !(*profile)["Address"].toString().isEmpty()) { QString address=(*profile)["Address"].toString().replace("\n","
"); html+=""; } if ((*profile).Exists("Phone") && !(*profile)["Phone"].toString().isEmpty()) { html+=""; } if ((*profile).Exists("EmailAddress") && !(*profile)["EmailAddress"].toString().isEmpty()) { html+=""; } html+="
Name:"+(*profile)["FirstName"].toString()+" "+(*profile)["LastName"].toString()+"
Address:"+address+"
Phone:"+(*profile)["Phone"].toString()+"
Email:"+(*profile)["EmailAddress"].toString()+"
"; if ((*profile).Exists("Gender")) { QString gender=(*profile)["Gender"].toBool() ? "Male" : "Female"; html+=""; } if ((*profile).Exists("DOB") && !(*profile)["DOB"].toString().isEmpty()) { QDate dob=(*profile)["DOB"].toDate(); //html+=""; QDateTime d1(dob,QTime(0,0,0)); QDateTime d2(QDate::currentDate(),QTime(0,0,0)); int years=d1.daysTo(d2)/365.25; html+=""; } if ((*profile).Exists("Height") && !(*profile)["Height"].toString().isEmpty()) { html+=""; } html+="
Gender:"+gender+"
D.O.B.:"+dob.toString()+"
Age:"+QString::number(years)+" years
Height:"+(*profile)["Height"].toString(); if (!(*profile).Exists("UnitSystem")) { (*profile)["UnitSystem"]="Metric"; } if ((*profile)["UnitSystem"].toString()=="Metric") html+="cm"; else html+="inches"; html+="
"; html+="

SleepyHead v"+pref["VersionString"].toString()+"
" "Reporting from "+startDate.toString()+" to "+endDate.toString()+"" "
" "
 
"; for (int i=0;iisEmpty()) continue; QPixmap pixmap=Snapshot(graphs[i]); QByteArray byteArray; QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray buffer.open(QIODevice::WriteOnly); pixmap.save(&buffer, "PNG"); html += "
\n"; // } html+=""; ui->webView->setHtml(html); } void Report::on_printButton_clicked() { QPrinter printer; //printer.setPrinterName("Print to File (PDF)"); //printer.setOutputFormat(QPrinter::PdfFormat); printer.setPrintRange(QPrinter::AllPages); printer.setOrientation(QPrinter::Portrait); //printer.setPaperSize(QPrinter::A4); printer.setResolution(QPrinter::HighResolution); //printer.setPageSize(); printer.setFullPage(false); printer.setNumCopies(1); printer.setPageMargins(10,10,10,10,QPrinter::Millimeter); QPrintDialog *dialog = new QPrintDialog(&printer); //printer.setOutputFileName("printYou.pdf"); if ( dialog->exec() == QDialog::Accepted) { ui->webView->print(&printer); } }