From e3fdfcb313a146bef2acb5ffdaf99ee1f390cafb Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 29 Jul 2011 04:02:51 +1000 Subject: [PATCH] Boring Cosmetic stuff --- Graphs/gSegmentChart.cpp | 2 +- Graphs/gSegmentChart.h | 2 +- daily.cpp | 47 +++++++++++++++++++++++++--------------- 3 files changed, 31 insertions(+), 20 deletions(-) diff --git a/Graphs/gSegmentChart.cpp b/Graphs/gSegmentChart.cpp index 95d146b4..6fe0c525 100644 --- a/Graphs/gSegmentChart.cpp +++ b/Graphs/gSegmentChart.cpp @@ -43,7 +43,7 @@ void gSegmentChart::Plot(gGraphWindow & w,float scrx,float scry) int start_py=w.GetBottomMargin(); int width=scrx-(w.GetLeftMargin()+w.GetRightMargin()); int height=scry-(w.GetTopMargin()+w.GetBottomMargin()); - + width--; float diameter=MIN(width,height); diameter-=8; float radius=diameter/2.0; diff --git a/Graphs/gSegmentChart.h b/Graphs/gSegmentChart.h index b312e7e6..8aceaaf8 100644 --- a/Graphs/gSegmentChart.h +++ b/Graphs/gSegmentChart.h @@ -8,7 +8,7 @@ enum GraphSegmentType { GST_Pie, GST_CandleStick }; class gSegmentChart : public gLayer { public: - gSegmentChart(GraphSegmentType gt=GST_Pie, QColor gradient_color=Qt::lightGray,QColor outline_color=Qt::black); + gSegmentChart(GraphSegmentType gt=GST_Pie, QColor gradient_color=Qt::white,QColor outline_color=Qt::black); virtual ~gSegmentChart(); virtual void Plot(gGraphWindow & w,float scrx,float scry); diff --git a/daily.cpp b/daily.cpp index 169bd125..4a80d6be 100644 --- a/daily.cpp +++ b/daily.cpp @@ -196,20 +196,13 @@ Daily::Daily(QWidget *parent,QGLWidget * shared) : // SPO2->hide(); PULSE->hide(); - //AddCPAPData(tap_eap=new TAPData(CPAP_EAP)); - //AddCPAPData(tap_iap=new TAPData(CPAP_IAP)); - //AddCPAPData(tap=new TAPData(CPAP_Pressure)); - //TAP->SetMargins(20,15,5,50); - //TAP->SetMargins(0,0,0,0); - //TAP->AddLayer(new gCandleStick(tap)); - //TAP->AddLayer(new gPieChart(tap)); - - //TAP_EAP->SetMargins(0,0,0,0); - //TAP_EAP->AddLayer(new gCandleStick(tap_eap)); - - //TAP_IAP->SetMargins(0,0,0,0); - //TAP_IAP->AddLayer(new gCandleStick(tap_iap)); + TAP_EAP->SetMargins(0,0,0,0); + TAP_EAP->AddLayer(AddCPAP(new gTAPGraph(CPAP_EAP))); + TAP_EAP->hide(); + TAP_IAP->SetMargins(0,0,0,0); + TAP_IAP->AddLayer(AddCPAP(new gTAPGraph(CPAP_IAP))); + TAP_IAP->hide(); TAP->SetMargins(0,0,0,0); TAP->AddLayer(AddCPAP(new gTAPGraph(CPAP_Pressure))); @@ -225,9 +218,6 @@ Daily::Daily(QWidget *parent,QGLWidget * shared) : G_AHI->AddLayer(AddCPAP(l)); G_AHI->SetGradientBackground(false); G_AHI->hide(); - /*TAP->hide(); - TAP_IAP->hide(); - TAP_EAP->hide(); */ NoData=new QLabel(tr("No data"),gSplitter); NoData->setAlignment(Qt::AlignCenter); @@ -434,6 +424,7 @@ void Daily::on_calendar_selectionChanged() void Daily::ResetGraphLayout() { gSplitter->setSizes(splitter_sizes); + } void Daily::Load(QDate date) @@ -479,6 +470,8 @@ void Daily::Load(QDate date) if (Graphs[i]->isEmpty()) { Graphs[i]->hide(); } else { + Graphs[i]->ResetBounds(); + Graphs[i]->show(); vis++; } @@ -655,7 +648,26 @@ void Daily::Load(QDate date) if (cpap) { if (mode==MODE_BIPAP) { - + { + html+=("")+tr("Time@EPAP")+("\n"); + TAP_EAP->setFixedSize(gwwidth,gwheight); + QPixmap pixmap=TAP_EAP->renderPixmap(gwwidth,gwheight,false); + QByteArray byteArray; + QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray + buffer.open(QIODevice::WriteOnly); + pixmap.save(&buffer, "PNG"); + html+="\n"; + } + { + html+=("")+tr("Time@IPAP")+("\n"); + TAP_IAP->setFixedSize(gwwidth,gwheight); + QPixmap pixmap=TAP_IAP->renderPixmap(gwwidth,gwheight,false); + QByteArray byteArray; + QBuffer buffer(&byteArray); // use buffer to store pixmap into byteArray + buffer.open(QIODevice::WriteOnly); + pixmap.save(&buffer, "PNG"); + html+="\n"; + } } else if (mode==MODE_APAP) { html+=("")+tr("Time@Pressure")+("\n"); @@ -862,7 +874,6 @@ void Daily::UpdateOXIGraphs(Day *day) void Daily::RedrawGraphs() { for (unsigned i=0;iResetBounds(); Graphs[i]->updateGL(); } }