diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 979e4f47..e150c470 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -2611,7 +2611,7 @@ void gGraphView::paintGL() if (this->isVisible()) { if (m_limbo || m_inAnimation || (something_fun && !numgraphs)) { - redrawtimer->setInterval(50); + redrawtimer->setInterval(20); redrawtimer->setSingleShot(true); redrawtimer->start(); } else { diff --git a/Graphs/gLineChart.cpp b/Graphs/gLineChart.cpp index 93a83e53..a1766f73 100644 --- a/Graphs/gLineChart.cpp +++ b/Graphs/gLineChart.cpp @@ -385,6 +385,22 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height) ////////////////////////////////////////////////////////////////// first=true; double start=el.first(); + if (siz==2) { + time=start+tim[0]; + data=dat[0]*gain; + data-=subtract_offset; + lastpy=yst-((data - miny) * ymult); // Same for Y scale with precomputed gain + lastpx=xst+((time - minx) * xmult); // Scale the time scale X to pixel scale X + if (lastpxxst+width) px=xst+width; + + lines->add(lastpx,lastpy,px,py); + } else for (int i=0;i -Copyright (C) 2011 +Copyright (C)2011 Mark Watkins Licence Stuff ------------- This software is released under the GNU Public License, at a GPL version of my choosing at a later date. -Exceptions: +Exceptions and 3rd Party Libraries: Incorporates QextSerialPort. Insert New BSD license here? (Apparently PD.. need to verify) +http://code.google.com/p/qextserialport/ +It uses QuaZip, by Sergey A. Tachenov, which is a C++ wrapper over Gilles Vollant's ZIP/UNZIP package.. +http://sourceforge.net/projects/quazip/ diff --git a/SleepLib/session.cpp b/SleepLib/session.cpp index 65e947ea..a1fccaa2 100644 --- a/SleepLib/session.cpp +++ b/SleepLib/session.cpp @@ -562,6 +562,7 @@ void Session::updateCountSummary(ChannelID code) EventList & e=*(ev.value()[i]); if (e.type()==EVL_Waveform) continue; + for (unsigned j=0;j0) { len=(time-lasttime) / 1000; - tsi=timesum.find(lastraw); - if (tsi==timesum.end()) timesum[raw]=len; - else tsi.value()+=len; - } + } else len=0; + + tsi=timesum.find(lastraw); + if (tsi==timesum.end()) timesum[raw]=len; + else tsi.value()+=len; + lastraw=raw; lasttime=time; } @@ -587,15 +591,14 @@ void Session::updateCountSummary(ChannelID code) void Session::UpdateSummaries() { + ChannelID id; + QHash >::iterator c; calcAHIGraph(this); calcRespRate(this); calcLeaks(this); - calcSPO2Drop(this); calcPulseChange(this); - ChannelID id; - QHash >::iterator c; for (c=eventlist.begin();c!=eventlist.end();c++) { id=c.key(); if (schema::channel[id].type()==schema::DATA) { @@ -620,6 +623,7 @@ void Session::UpdateSummaries() first(id); } } + if (channelExists(CPAP_Obstructive)) { setCph(CPAP_AHI,cph(CPAP_Obstructive)+cph(CPAP_Hypopnea)+cph(CPAP_ClearAirway)); setSph(CPAP_AHI,sph(CPAP_Obstructive)+sph(CPAP_Hypopnea)+sph(CPAP_ClearAirway)); diff --git a/mainwindow.cpp b/mainwindow.cpp index 9aa246fc..ec75e52c 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -121,7 +121,7 @@ MainWindow::MainWindow(QWidget *parent) : // Start with the Welcome Tab - ui->tabWidget->setCurrentWidget(daily); + ui->tabWidget->setCurrentWidget(ui->welcome); // setting this to daily shows the cube during loading.. // Nifty Notification popups in System Tray (uses Growl on Mac) if (QSystemTrayIcon::isSystemTrayAvailable() && QSystemTrayIcon::supportsMessages()) {