mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
More Oximetry fixes
This commit is contained in:
parent
4513edbbdb
commit
3d7ced4250
@ -1599,48 +1599,49 @@ void gGraph::ToolTip(QString text, int x, int y, int timeout)
|
|||||||
void gGraph::roundY(EventDataType &miny, EventDataType &maxy)
|
void gGraph::roundY(EventDataType &miny, EventDataType &maxy)
|
||||||
{
|
{
|
||||||
int m,t;
|
int m,t;
|
||||||
|
bool ymin_good=false,ymax_good=false;
|
||||||
if (rec_miny!=rec_maxy) {
|
if (rec_miny!=rec_maxy) {
|
||||||
if (miny>rec_miny) miny=rec_miny;
|
if (miny>rec_miny) miny=rec_miny;
|
||||||
if (maxy<rec_maxy) maxy=rec_maxy;
|
if (maxy<rec_maxy) maxy=rec_maxy;
|
||||||
|
|
||||||
if (miny==rec_miny) return;
|
if (miny==rec_miny) ymin_good=true;
|
||||||
if (maxy==rec_maxy) return;
|
if (maxy==rec_maxy) ymax_good=true;
|
||||||
}
|
}
|
||||||
if (maxy==miny) {
|
if (maxy==miny) {
|
||||||
m=ceil(maxy/2.0);
|
m=ceil(maxy/2.0);
|
||||||
t=m*2;
|
t=m*2;
|
||||||
if (maxy==t) t+=2;
|
if (maxy==t) t+=2;
|
||||||
maxy=t;
|
if (!ymax_good) maxy=t;
|
||||||
|
|
||||||
m=floor(miny/2.0);
|
m=floor(miny/2.0);
|
||||||
t=m*2;
|
t=m*2;
|
||||||
if (miny==t) t-=2;
|
if (miny==t) t-=2;
|
||||||
if (miny>=0 && t<0) t=0;
|
if (miny>=0 && t<0) t=0;
|
||||||
miny=t;
|
if (!ymin_good) miny=t;
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (maxy>=5) {
|
if (maxy>=5) {
|
||||||
m=ceil(maxy/5.0);
|
m=ceil(maxy/5.0);
|
||||||
t=m*5;
|
t=m*5;
|
||||||
maxy=t;
|
if (!ymax_good) maxy=t;
|
||||||
m=floor(miny/5.0);
|
m=floor(miny/5.0);
|
||||||
miny=m*5;
|
if (!ymin_good) miny=m*5;
|
||||||
} else {
|
} else {
|
||||||
if (maxy==miny && maxy==0) {
|
if (maxy==miny && maxy==0) {
|
||||||
maxy=0.5;
|
maxy=0.5;
|
||||||
} else {
|
} else {
|
||||||
//maxy*=4.0;
|
//maxy*=4.0;
|
||||||
//miny*=4.0;
|
//miny*=4.0;
|
||||||
maxy=ceil(maxy);
|
if (!ymax_good) maxy=ceil(maxy);
|
||||||
miny=floor(miny);
|
if (!ymin_good) miny=floor(miny);
|
||||||
//maxy/=4.0;
|
//maxy/=4.0;
|
||||||
//miny/=4.0;
|
//miny/=4.0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (m_enforceMinY) { miny=f_miny; }
|
//if (m_enforceMinY) { miny=f_miny; }
|
||||||
if (m_enforceMaxY) { maxy=f_maxy; }
|
//if (m_enforceMaxY) { maxy=f_maxy; }
|
||||||
}
|
}
|
||||||
|
|
||||||
gGraphView::gGraphView(QWidget *parent, gGraphView * shared) :
|
gGraphView::gGraphView(QWidget *parent, gGraphView * shared) :
|
||||||
|
@ -269,6 +269,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
|
|||||||
QPushButton *btn=new QPushButton(title,this);
|
QPushButton *btn=new QPushButton(title,this);
|
||||||
btn->setCheckable(true);
|
btn->setCheckable(true);
|
||||||
btn->setChecked((*GraphView)[i]->visible());
|
btn->setChecked((*GraphView)[i]->visible());
|
||||||
|
btn->setToolTip("Show/Hide "+title);
|
||||||
GraphToggles[title]=btn;
|
GraphToggles[title]=btn;
|
||||||
btn->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Minimum);
|
btn->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Minimum);
|
||||||
ui->graphToggleArea->addWidget(btn);
|
ui->graphToggleArea->addWidget(btn);
|
||||||
|
20
oximetry.cpp
20
oximetry.cpp
@ -182,8 +182,8 @@ void SerialOximeter::addPulse(qint64 time, EventDataType pr)
|
|||||||
pulse->setMax(max);
|
pulse->setMax(max);
|
||||||
session->setMax(OXI_Pulse,max);
|
session->setMax(OXI_Pulse,max);
|
||||||
}
|
}
|
||||||
|
//pulse->setLast(time);
|
||||||
session->setLast(OXI_Pulse,time);
|
session->setLast(OXI_Pulse,time);
|
||||||
pulse->setLast(time);
|
|
||||||
session->set_last(lasttime);
|
session->set_last(lasttime);
|
||||||
emit(updatePulse(pr));
|
emit(updatePulse(pr));
|
||||||
}
|
}
|
||||||
@ -209,7 +209,7 @@ void SerialOximeter::addSpO2(qint64 time, EventDataType o2)
|
|||||||
}
|
}
|
||||||
session->setLast(OXI_SPO2,time);
|
session->setLast(OXI_SPO2,time);
|
||||||
session->set_last(lasttime);
|
session->set_last(lasttime);
|
||||||
spo2->setLast(time);
|
//spo2->setLast(time);
|
||||||
emit(updateSpO2(o2));
|
emit(updateSpO2(o2));
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -846,8 +846,6 @@ void Oximetry::onDataChanged()
|
|||||||
spo2->setMinX(first);
|
spo2->setMinX(first);
|
||||||
spo2->setMaxX(last);
|
spo2->setMaxX(last);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
plethy->setMinY((oximeter->Plethy())->min());
|
plethy->setMinY((oximeter->Plethy())->min());
|
||||||
plethy->setMaxY((oximeter->Plethy())->max());
|
plethy->setMaxY((oximeter->Plethy())->max());
|
||||||
pulse->setMinY((oximeter->Pulse())->min());
|
pulse->setMinY((oximeter->Pulse())->min());
|
||||||
@ -855,12 +853,19 @@ void Oximetry::onDataChanged()
|
|||||||
spo2->setMinY((oximeter->Spo2())->min());
|
spo2->setMinY((oximeter->Spo2())->min());
|
||||||
spo2->setMaxY((oximeter->Spo2())->max());
|
spo2->setMaxY((oximeter->Spo2())->max());
|
||||||
|
|
||||||
PLETHY->MinY();
|
PLETHY->SetMinY((oximeter->Plethy())->min());
|
||||||
|
PLETHY->SetMaxY((oximeter->Plethy())->max());
|
||||||
|
PULSE->SetMinY((oximeter->Pulse())->min());
|
||||||
|
PULSE->SetMaxY((oximeter->Pulse())->max());
|
||||||
|
SPO2->SetMinY((oximeter->Spo2())->min());
|
||||||
|
SPO2->SetMaxY((oximeter->Spo2())->max());
|
||||||
|
|
||||||
|
/*PLETHY->MinY();
|
||||||
PLETHY->MaxY();
|
PLETHY->MaxY();
|
||||||
PULSE->MinY();
|
PULSE->MinY();
|
||||||
PULSE->MaxY();
|
PULSE->MaxY();
|
||||||
SPO2->MinY();
|
SPO2->MinY();
|
||||||
SPO2->MaxY();
|
SPO2->MaxY(); */
|
||||||
|
|
||||||
PLETHY->SetMaxX(last);
|
PLETHY->SetMaxX(last);
|
||||||
PULSE->SetMaxX(last);
|
PULSE->SetMaxX(last);
|
||||||
@ -879,6 +884,7 @@ void Oximetry::onDataChanged()
|
|||||||
if (qstatus2) qstatus2->setText(QString().sprintf("Rec %02i:%02i:%02i",h,m,s));
|
if (qstatus2) qstatus2->setText(QString().sprintf("Rec %02i:%02i:%02i",h,m,s));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
GraphView->updateScale();
|
||||||
GraphView->updateGL();
|
GraphView->updateGL();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -1043,6 +1049,7 @@ void Oximetry::on_import_complete(Session * session)
|
|||||||
void Oximetry::onPulseChanged(float p)
|
void Oximetry::onPulseChanged(float p)
|
||||||
{
|
{
|
||||||
ui->pulseLCD->display(p);
|
ui->pulseLCD->display(p);
|
||||||
|
return;
|
||||||
if (firstPulseUpdate) {
|
if (firstPulseUpdate) {
|
||||||
if (secondPulseUpdate) {
|
if (secondPulseUpdate) {
|
||||||
secondPulseUpdate=false;
|
secondPulseUpdate=false;
|
||||||
@ -1057,6 +1064,7 @@ void Oximetry::onPulseChanged(float p)
|
|||||||
void Oximetry::onSpO2Changed(float o2)
|
void Oximetry::onSpO2Changed(float o2)
|
||||||
{
|
{
|
||||||
ui->spo2LCD->display(o2);
|
ui->spo2LCD->display(o2);
|
||||||
|
return;
|
||||||
if (firstSPO2Update) {
|
if (firstSPO2Update) {
|
||||||
if (secondSPO2Update) {
|
if (secondSPO2Update) {
|
||||||
secondSPO2Update=false;
|
secondSPO2Update=false;
|
||||||
|
17
oximetry.ui
17
oximetry.ui
@ -6,7 +6,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>554</width>
|
<width>662</width>
|
||||||
<height>361</height>
|
<height>361</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -51,6 +51,12 @@
|
|||||||
<enum>QFrame::Raised</enum>
|
<enum>QFrame::Raised</enum>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
|
<property name="spacing">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
|
<property name="margin">
|
||||||
|
<number>4</number>
|
||||||
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QLabel" name="label">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
@ -152,6 +158,12 @@
|
|||||||
</disabled>
|
</disabled>
|
||||||
</palette>
|
</palette>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::Box</enum>
|
||||||
|
</property>
|
||||||
|
<property name="frameShadow">
|
||||||
|
<enum>QFrame::Sunken</enum>
|
||||||
|
</property>
|
||||||
<property name="numDigits">
|
<property name="numDigits">
|
||||||
<number>3</number>
|
<number>3</number>
|
||||||
</property>
|
</property>
|
||||||
@ -212,6 +224,9 @@
|
|||||||
</disabled>
|
</disabled>
|
||||||
</palette>
|
</palette>
|
||||||
</property>
|
</property>
|
||||||
|
<property name="frameShadow">
|
||||||
|
<enum>QFrame::Sunken</enum>
|
||||||
|
</property>
|
||||||
<property name="numDigits">
|
<property name="numDigits">
|
||||||
<number>3</number>
|
<number>3</number>
|
||||||
</property>
|
</property>
|
||||||
|
Loading…
Reference in New Issue
Block a user