mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
Oximetry fix #372342
This commit is contained in:
parent
2a8d2822ff
commit
f35c6a055a
@ -1208,9 +1208,12 @@ void gGraphView::paintGL()
|
||||
if (width() <= 0) { return; }
|
||||
if (height() <= 0) { return; }
|
||||
|
||||
|
||||
// Create QPainter object, note this is only valid from paintGL events!
|
||||
QPainter painter(this);
|
||||
|
||||
painter.setRenderHint(QPainter::TextAntialiasing, true);
|
||||
|
||||
QRect bgrect(0, 0, width(), height());
|
||||
painter.fillRect(bgrect,QBrush(QColor(255,255,255)));
|
||||
|
||||
|
@ -110,7 +110,7 @@ class gLineChart: public Layer
|
||||
virtual bool isEmpty();
|
||||
|
||||
//! \brief Add Subplot 'code'. Note the first one is added in the constructor.
|
||||
void addPlot(ChannelID code, bool square) { m_codes.push_back(code); m_enabled[code] = true; m_square.push_back(square); }
|
||||
void addPlot(ChannelID code, bool square=false) { m_codes.push_back(code); m_enabled[code] = true; m_square.push_back(square); }
|
||||
|
||||
//! \brief Returns true of the subplot 'code' is enabled.
|
||||
bool plotEnabled(ChannelID code) { if ((m_enabled.contains(code)) && m_enabled[code]) { return true; } else { return false; } }
|
||||
|
@ -362,8 +362,8 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
|
||||
|
||||
leakchart->addPlot(CPAP_LeakTotal, square);
|
||||
leakchart->addPlot(CPAP_MaxLeak, square);
|
||||
schema::channel[CPAP_Leak].setUpperThresholdColor(Qt::red);
|
||||
schema::channel[CPAP_Leak].setLowerThresholdColor(Qt::green);
|
||||
// schema::channel[CPAP_Leak].setUpperThresholdColor(Qt::red);
|
||||
// schema::channel[CPAP_Leak].setLowerThresholdColor(Qt::green);
|
||||
|
||||
graphlist[schema::channel[CPAP_Leak].code()]->AddLayer(AddCPAP(leakchart));
|
||||
//LEAK->AddLayer(AddCPAP(new gLineChart(CPAP_Leak, COLOR_Leak,square)));
|
||||
|
@ -267,11 +267,12 @@ void OximeterImport::on_directImportButton_clicked()
|
||||
selecting_session = true;
|
||||
ui->tableOxiSessions->selectRow(0);
|
||||
return;
|
||||
} else {
|
||||
} else if (session_count > 0) {
|
||||
chosen_sessions.push_back(0);
|
||||
oximodule->getDuration(0);
|
||||
oximodule->setStartTime(oximodule->getDateTime(0));
|
||||
}
|
||||
doImport();
|
||||
}
|
||||
|
||||
void OximeterImport::doImport()
|
||||
|
Loading…
Reference in New Issue
Block a user