mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
ScrollArea Fix not working on windows.. Oximeter Live view Fixes
This commit is contained in:
parent
3f207fcb37
commit
e2f304c2e6
@ -149,6 +149,13 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry)
|
|||||||
EventList & el=*evec[n];
|
EventList & el=*evec[n];
|
||||||
|
|
||||||
accel=(el.type()==EVL_Waveform); // Turn on acceleration if this is a waveform.
|
accel=(el.type()==EVL_Waveform); // Turn on acceleration if this is a waveform.
|
||||||
|
if (accel) {
|
||||||
|
sr=el.rate(); // Time distance between samples
|
||||||
|
if (sr<=0) {
|
||||||
|
qWarning() << "qLineChart::Plot() assert(sr>0)";
|
||||||
|
continue;
|
||||||
|
}
|
||||||
|
}
|
||||||
if (m_disable_accel) accel=false;
|
if (m_disable_accel) accel=false;
|
||||||
|
|
||||||
|
|
||||||
@ -183,11 +190,6 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry)
|
|||||||
}
|
}
|
||||||
if (accel) {
|
if (accel) {
|
||||||
//x1=el.time(1);
|
//x1=el.time(1);
|
||||||
sr=el.rate(); // Time distance between samples
|
|
||||||
if (sr<=0) {
|
|
||||||
qWarning() << "qLineChart::Plot() assert(sr>0)";
|
|
||||||
continue;
|
|
||||||
}
|
|
||||||
|
|
||||||
double XR=xx/sr;
|
double XR=xx/sr;
|
||||||
double Z1=MAX(x0,minx);
|
double Z1=MAX(x0,minx);
|
||||||
|
10
daily.cpp
10
daily.cpp
@ -43,22 +43,22 @@ void MyScrollArea::scrollContentsBy(int dx, int dy)
|
|||||||
{
|
{
|
||||||
QScrollArea::scrollContentsBy(dx,dy);
|
QScrollArea::scrollContentsBy(dx,dy);
|
||||||
|
|
||||||
//#ifdef Q_WS_MAC || Q_WS_WIN
|
#ifdef Q_WS_MAC
|
||||||
if (timer->isActive()) timer->stop();
|
if (timer->isActive()) timer->stop();
|
||||||
timer->setSingleShot(true);
|
timer->setSingleShot(true);
|
||||||
timer->setInterval(200);
|
timer->setInterval(250);
|
||||||
connect(timer,SIGNAL(timeout()),SLOT(UpdateGraphs()));
|
connect(timer,SIGNAL(timeout()),SLOT(UpdateGraphs()));
|
||||||
timer->start();
|
timer->start();
|
||||||
m_time.start();
|
m_time.start();
|
||||||
//m_daily->RedrawGraphs();
|
//m_daily->RedrawGraphs();
|
||||||
//#endif
|
#endif
|
||||||
}
|
}
|
||||||
void MyScrollArea::UpdateGraphs()
|
void MyScrollArea::UpdateGraphs()
|
||||||
{
|
{
|
||||||
if (m_time.elapsed()<200)
|
if (m_time.elapsed()<250)
|
||||||
return;
|
return;
|
||||||
m_time.start();
|
m_time.start();
|
||||||
//qDebug() << "Foo!";
|
qDebug() << "Redraw!";
|
||||||
m_daily->RedrawGraphs();
|
m_daily->RedrawGraphs();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -29,7 +29,9 @@ QStatusBar *qstatusbar;
|
|||||||
|
|
||||||
void MainWindow::Log(QString s)
|
void MainWindow::Log(QString s)
|
||||||
{
|
{
|
||||||
ui->logText->appendPlainText(s);
|
static int start=QDateTime::currentDateTime().toTime_t();
|
||||||
|
QString tmp=QString("%1: %2").arg(QDateTime::currentDateTime().toTime_t()-start,5,10,QChar('0')).arg(s);
|
||||||
|
ui->logText->appendPlainText(tmp);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
36
oximetry.cpp
36
oximetry.cpp
@ -48,7 +48,7 @@ Oximetry::Oximetry(QWidget *parent,QGLWidget * shared) :
|
|||||||
//ui->graphLayout->addWidget(splitter);
|
//ui->graphLayout->addWidget(splitter);
|
||||||
|
|
||||||
// Create the Event Lists to store / import data
|
// Create the Event Lists to store / import data
|
||||||
ev_plethy=new EventList(OXI_Plethysomogram,EVL_Event,1,0,0,0,1000.0/50.0);
|
ev_plethy=new EventList(OXI_Plethysomogram,EVL_Waveform,1,0,0,0,1000.0/50.0);
|
||||||
session->eventlist[OXI_Plethysomogram].push_back(ev_plethy);
|
session->eventlist[OXI_Plethysomogram].push_back(ev_plethy);
|
||||||
|
|
||||||
ev_pulse=new EventList(OXI_Pulse,EVL_Event,1);
|
ev_pulse=new EventList(OXI_Pulse,EVL_Event,1);
|
||||||
@ -157,8 +157,8 @@ void Oximetry::on_RunButton_toggled(bool checked)
|
|||||||
{
|
{
|
||||||
if (checked) {
|
if (checked) {
|
||||||
lasttime=0;
|
lasttime=0;
|
||||||
lastpulse=-1;
|
lastpulse=0;
|
||||||
lastspo2=-1;
|
lastspo2=0;
|
||||||
|
|
||||||
// Wipe any current data
|
// Wipe any current data
|
||||||
ev_plethy->getData().clear();
|
ev_plethy->getData().clear();
|
||||||
@ -220,18 +220,27 @@ void Oximetry::on_RunButton_toggled(bool checked)
|
|||||||
delete port;
|
delete port;
|
||||||
port=NULL;
|
port=NULL;
|
||||||
|
|
||||||
|
ev_pulse->AddEvent(lasttime,lastpulse);
|
||||||
|
ev_spo2->AddEvent(lasttime,lastspo2);
|
||||||
ev_spo2->setLast(lasttime);
|
ev_spo2->setLast(lasttime);
|
||||||
ev_pulse->setLast(lasttime);
|
ev_pulse->setLast(lasttime);
|
||||||
ev_plethy->setLast(lasttime);
|
ev_plethy->setLast(lasttime);
|
||||||
day->setLast(lasttime);
|
day->setLast(lasttime);
|
||||||
session->set_last(lasttime);
|
session->set_last(lasttime);
|
||||||
|
|
||||||
|
|
||||||
SPO2->SetMinX(ev_spo2->first());
|
SPO2->SetMinX(ev_spo2->first());
|
||||||
SPO2->SetMaxX(lasttime);
|
SPO2->SetMaxX(lasttime);
|
||||||
PULSE->SetMinX(ev_pulse->first());
|
PULSE->SetMinX(ev_pulse->first());
|
||||||
PULSE->SetMaxX(lasttime);
|
PULSE->SetMaxX(lasttime);
|
||||||
PLETHY->SetMinX(ev_plethy->first());
|
PLETHY->SetMinX(ev_plethy->first());
|
||||||
PLETHY->SetMaxX(lasttime);
|
PLETHY->SetMaxX(lasttime);
|
||||||
|
SPO2->MinX();
|
||||||
|
SPO2->MaxX();
|
||||||
|
PULSE->MinX();
|
||||||
|
PULSE->MaxX();
|
||||||
|
PLETHY->MinX();
|
||||||
|
PLETHY->MaxX();
|
||||||
|
|
||||||
PLETHY->updateGL();
|
PLETHY->updateGL();
|
||||||
SPO2->updateGL();
|
SPO2->updateGL();
|
||||||
@ -245,22 +254,13 @@ void Oximetry::on_SerialPortsCombo_activated(const QString &arg1)
|
|||||||
}
|
}
|
||||||
void Oximetry::UpdatePlethy(qint8 d)
|
void Oximetry::UpdatePlethy(qint8 d)
|
||||||
{
|
{
|
||||||
ev_plethy->AddEvent(lasttime,d);
|
ev_plethy->getData().push_back(d);
|
||||||
|
if (d<ev_plethy->min()) ev_plethy->setMin(d);
|
||||||
|
if (d>ev_plethy->max()) ev_plethy->setMax(d);
|
||||||
|
ev_plethy->setCount(ev_plethy->count()+1);
|
||||||
|
//ev_plethy->AddEvent(lasttime,d);
|
||||||
lasttime+=20; // 50 samples per second
|
lasttime+=20; // 50 samples per second
|
||||||
//ev_plethy->setLast(lasttime);
|
|
||||||
//if (plethy->RealMaxX()-plethy->RealMinX()>(1.0/(24.0*120.0))) {
|
|
||||||
// plethy->SetMinX(lasttime/86400000.0-(1.0/(24.0*120.0)));
|
|
||||||
// plethy->SetMaxX(lasttime/86400000.0);
|
|
||||||
//}
|
|
||||||
|
|
||||||
//plethy->setMinY(ev_plethy->min());
|
|
||||||
//plethy->setMaxY(ev_plethy->max());
|
|
||||||
//plethy->setMinY(ev_plethy->min());
|
|
||||||
//plethy->setMaxY(ev_plethy->max());
|
|
||||||
PLETHY->MinX();
|
|
||||||
PLETHY->MaxX();
|
|
||||||
//PLETHY->MinY();
|
|
||||||
//PLETHY->MaxY();
|
|
||||||
PLETHY->SetMinY(ev_plethy->min());
|
PLETHY->SetMinY(ev_plethy->min());
|
||||||
PLETHY->SetMaxY(ev_plethy->max());
|
PLETHY->SetMaxY(ev_plethy->max());
|
||||||
PULSE->SetMinY(ev_pulse->min());
|
PULSE->SetMinY(ev_pulse->min());
|
||||||
@ -276,6 +276,8 @@ void Oximetry::UpdatePlethy(qint8 d)
|
|||||||
SPO2->SetMinX(lasttime-30000);
|
SPO2->SetMinX(lasttime-30000);
|
||||||
session->set_last(lasttime);
|
session->set_last(lasttime);
|
||||||
day->setLast(lasttime);
|
day->setLast(lasttime);
|
||||||
|
PLETHY->MinX();
|
||||||
|
PLETHY->MaxX();
|
||||||
}
|
}
|
||||||
bool Oximetry::UpdatePulse(qint8 pul)
|
bool Oximetry::UpdatePulse(qint8 pul)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user