From 94c0dc37020370b4e949784e935dd1bc619ff160 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 12 Sep 2011 00:36:51 +1000 Subject: [PATCH] More Print Cleanups --- Graphs/gGraphView.cpp | 20 ++------------------ overview.cpp | 3 ++- report.cpp | 34 +++++++++++++++++----------------- report.h | 2 ++ 4 files changed, 23 insertions(+), 36 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index e2101c44..b49aaf84 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -1285,11 +1285,12 @@ void gGraphView::DrawTextQue() //glFlush(); //glEnable(GL_BLEND); int w,h; - QPaintDevice *pd=QGLContext::currentContext()->device(); /* #ifdef Q_WS_WIN32 + QPaintDevice *pd=QGLContext::currentContext()->device(); QPixmap *pixmap=dynamic_cast(pd); #endif */ + QPainter painter; for (int i=0;ilayout(); - const int default_height=180; AHI=new gGraph(GraphView,"AHI",default_height,0); UC=new gGraph(GraphView,"Usage",default_height,0); PR=new gGraph(GraphView,"Pressure",default_height,0); diff --git a/report.cpp b/report.cpp index ad351fa3..24b1b74e 100644 --- a/report.cpp +++ b/report.cpp @@ -21,25 +21,22 @@ Report::Report(QWidget *parent, Profile * _profile, gGraphView * shared, Overvie GraphView=new gGraphView(this,shared); GraphView->hide(); - // Create a new graph, but reuse the layers.. - int default_height=150; - // Reusing the layer data from overview screen, // (Can't reuse the graphs objects without breaking things) - UC=new gGraph(GraphView,"Usage",default_height,0); + UC=new gGraph(GraphView,"Usage",graph_height,0); UC->AddLayer(m_overview->uc); - AHI=new gGraph(GraphView,"AHI",default_height,0); + AHI=new gGraph(GraphView,"AHI",graph_height,0); AHI->AddLayer(m_overview->bc); - PR=new gGraph(GraphView,"Pressure",default_height,0); + PR=new gGraph(GraphView,"Pressure",graph_height,0); PR->AddLayer(m_overview->pr); - LK=new gGraph(GraphView,"Leaks",default_height,0); + LK=new gGraph(GraphView,"Leaks",graph_height,0); LK->AddLayer(m_overview->lk); - NPB=new gGraph(GraphView,"% in PB",default_height,0); + NPB=new gGraph(GraphView,"% in PB",graph_height,0); NPB->AddLayer(m_overview->npb); graphs.push_back(AHI); @@ -85,8 +82,8 @@ void Report::ReloadGraphs() void Report::resizeEvent(QResizeEvent *event) { QWidget::resizeEvent(event); - GraphView->setMinimumSize(event->size().width()-20,240); - GraphView->setMaximumSize(event->size().width()-20,240); + GraphView->setMinimumSize(1280,graph_height); + GraphView->setMaximumSize(1280,graph_height); //GenerateReport(startDate,endDate); } @@ -102,8 +99,7 @@ QPixmap Report::Snapshot(gGraph * graph) GraphView->ResetBounds(); GraphView->SetXBounds(first,last); - int w=this->width()-20; - QPixmap pixmap=GraphView->renderPixmap(w,240,false); + QPixmap pixmap=GraphView->renderPixmap(1280,graph_height,false); return pixmap; } @@ -118,7 +114,7 @@ void Report::GenerateReport(QDate start, QDate end) QString html="" "" "" - "" + "
" "
"; html+="

CPAP Overview

"; html+="
"; @@ -161,9 +157,12 @@ void Report::GenerateReport(QDate start, QDate end) } html+="
"; - html+="

SleepyHead v"+pref["VersionString"].toString()+"
 
" - "Reporting from "+startDate.toString()+" to "+endDate.toString()+"
" - "
"; + html+="

SleepyHead v"+pref["VersionString"].toString()+"
" + "" + "Reporting from "+startDate.toString()+" to "+endDate.toString()+"" + "
" + "" + " 
"; @@ -174,7 +173,7 @@ void Report::GenerateReport(QDate start, QDate end) QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray buffer.open(QIODevice::WriteOnly); pixmap.save(&buffer, "PNG"); - html += "
\n"; // + html += "
\n"; // } html+=""; @@ -190,6 +189,7 @@ void Report::on_printButton_clicked() 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); diff --git a/report.h b/report.h index 72c142a0..d2e6366d 100644 --- a/report.h +++ b/report.h @@ -11,6 +11,8 @@ namespace Ui { class Report; } +const int graph_height=220; + class Daily; class Overview; class Report : public QWidget