mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
add mechanism to set default graphview settings. added enable UpperThreshold for CPAP_Leak graph
This commit is contained in:
parent
e20ab60a30
commit
521d84a8c5
@ -3590,8 +3590,8 @@ void gGraphView::SaveDefaultSettings() {
|
|||||||
m_default_graphs = m_graphs;
|
m_default_graphs = m_graphs;
|
||||||
}
|
}
|
||||||
|
|
||||||
const quint32 gvmagic = 0x41756728; //'Aug('
|
const quint32 gVmagic = 0x41756728; //'Aug('
|
||||||
const quint16 gvversion = 5; // version 5 has same format as 4, used to override settings in shg files on upgrade to version 5.
|
const quint16 gVversion = 5; // version 5 has same format as 4, used to override settings in shg files on upgrade to version 5.
|
||||||
|
|
||||||
QString gGraphView::settingsFilename (QString title,QString folderName, QString ext) {
|
QString gGraphView::settingsFilename (QString title,QString folderName, QString ext) {
|
||||||
if (folderName.size()==0) {
|
if (folderName.size()==0) {
|
||||||
@ -3600,6 +3600,19 @@ QString gGraphView::settingsFilename (QString title,QString folderName, QString
|
|||||||
return folderName+title.toLower()+ext;
|
return folderName+title.toLower()+ext;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* This note is for the save and restore settings.
|
||||||
|
* all versions prior to 4 were sleepyHead versions and have never been used.
|
||||||
|
* The layouts (version 4 and 5) are identical
|
||||||
|
* The rollback to a gVversion should always work.
|
||||||
|
* So new addtions to the saved configuration must be placed at the end of the file.
|
||||||
|
* the SHG file will then be
|
||||||
|
* SHG FILE HEADER - Must never change
|
||||||
|
* SHG VERSION 4(5) changes - for all graphs
|
||||||
|
* SHG VERSION 6 changes - for all graphs
|
||||||
|
* SHG VERSION 7 changes - for all graphs
|
||||||
|
* ...
|
||||||
|
*/
|
||||||
|
|
||||||
void gGraphView::SaveSettings(QString title,QString folderName)
|
void gGraphView::SaveSettings(QString title,QString folderName)
|
||||||
{
|
{
|
||||||
qDebug() << "Saving" << title << "settings";
|
qDebug() << "Saving" << title << "settings";
|
||||||
@ -3610,8 +3623,8 @@ void gGraphView::SaveSettings(QString title,QString folderName)
|
|||||||
out.setVersion(QDataStream::Qt_4_6);
|
out.setVersion(QDataStream::Qt_4_6);
|
||||||
out.setByteOrder(QDataStream::LittleEndian);
|
out.setByteOrder(QDataStream::LittleEndian);
|
||||||
|
|
||||||
out << (quint32)gvmagic;
|
out << (quint32)gVmagic;
|
||||||
out << (quint16)gvversion;
|
out << (quint16)gVversion;
|
||||||
|
|
||||||
out << (qint16)size();
|
out << (qint16)size();
|
||||||
|
|
||||||
@ -3636,9 +3649,13 @@ void gGraphView::SaveSettings(QString title,QString folderName)
|
|||||||
} else {
|
} else {
|
||||||
out << (quint32)LT_Other;
|
out << (quint32)LT_Other;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
#if 0
|
||||||
|
// add changes for additional settings
|
||||||
|
for (auto & graph : m_graphs) {
|
||||||
|
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
f.close();
|
f.close();
|
||||||
}
|
}
|
||||||
@ -3675,17 +3692,17 @@ bool gGraphView::LoadSettings(QString title,QString folderName)
|
|||||||
|
|
||||||
in >> t1;
|
in >> t1;
|
||||||
|
|
||||||
if (t1 != gvmagic) {
|
if (t1 != gVmagic) {
|
||||||
qDebug() << "gGraphView" << title << "settings magic doesn't match" << t1 << gvmagic;
|
qDebug() << "gGraphView" << title << "settings magic doesn't match" << t1 << gVmagic;
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
in >> version;
|
in >> version;
|
||||||
|
|
||||||
//The first version of OSCAR 1.0.0-release started at gvversion 4. and the OSCAR 1.4.0 still uses gvversion 4
|
//The first version of OSCAR 1.0.0-release started at gVversion 4. and the OSCAR 1.4.0 still uses gVversion 4
|
||||||
// This section of code is being simplified to remove dependances on lower version.
|
// This section of code is being simplified to remove dependances on lower version.
|
||||||
|
|
||||||
//if (version < gvversion) {
|
//if (version < gVversion) {
|
||||||
//qDebug() << "gGraphView" << title << "settings will be upgraded.";
|
//qDebug() << "gGraphView" << title << "settings will be upgraded.";
|
||||||
//}
|
//}
|
||||||
|
|
||||||
@ -3749,17 +3766,32 @@ bool gGraphView::LoadSettings(QString title,QString folderName)
|
|||||||
|
|
||||||
// the following check forces the flowRate graph to have a Zero dotted line enabled when the the current version changes from 4 to 5
|
// the following check forces the flowRate graph to have a Zero dotted line enabled when the the current version changes from 4 to 5
|
||||||
// still allows the end user user to to remove the zero dotted line.
|
// still allows the end user user to to remove the zero dotted line.
|
||||||
// currently this would be executed on each graphview version (gvVersion) change
|
// currently this would be executed on each graphview version (gVversion) change
|
||||||
// could be changed.
|
// could be changed.
|
||||||
if (version!=gvversion ) {
|
// This is a one time change.
|
||||||
if (lc->code()==CPAP_FlowRate) {
|
if (version==4 && gVversion>4) {
|
||||||
lc->m_dot_enabled[lc->code()][Calc_Zero] = true;
|
lc->resetGraphViewSettings();
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
// Do this for gVersion 5
|
||||||
|
#if 0
|
||||||
|
// Version 5 had no changes
|
||||||
|
if (version>=gVversion)
|
||||||
|
for (int i = 0; i < numGraphs; i++) {
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
|
// Do this for gVersion 6 ...
|
||||||
|
#if 0
|
||||||
|
// repeat this for each additional version change
|
||||||
|
// this for the next additions to the saved information.
|
||||||
|
if (version>=gVversion)
|
||||||
|
for (int i = 0; i < numGraphs; i++) {
|
||||||
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
if (neworder.size() == m_graphs.size()) {
|
if (neworder.size() == m_graphs.size()) {
|
||||||
m_graphs = neworder;
|
m_graphs = neworder;
|
||||||
|
@ -57,6 +57,15 @@ QColor darken(QColor color, float p)
|
|||||||
return QColor(r,g,b, color.alpha());
|
return QColor(r,g,b, color.alpha());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void gLineChart::resetGraphViewSettings() {
|
||||||
|
if (m_code==CPAP_FlowRate) {
|
||||||
|
m_dot_enabled[m_code][Calc_Zero] = true;
|
||||||
|
}
|
||||||
|
else if (m_code==CPAP_Leak) {
|
||||||
|
m_dot_enabled[m_code][Calc_UpperThresh] = true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
gLineChart::gLineChart(ChannelID code, bool square_plot, bool disable_accel)
|
gLineChart::gLineChart(ChannelID code, bool square_plot, bool disable_accel)
|
||||||
: Layer(code), m_square_plot(square_plot), m_disable_accel(disable_accel)
|
: Layer(code), m_square_plot(square_plot), m_disable_accel(disable_accel)
|
||||||
{
|
{
|
||||||
@ -65,9 +74,7 @@ gLineChart::gLineChart(ChannelID code, bool square_plot, bool disable_accel)
|
|||||||
lines.reserve(50000);
|
lines.reserve(50000);
|
||||||
lasttime = 0;
|
lasttime = 0;
|
||||||
m_layertype = LT_LineChart;
|
m_layertype = LT_LineChart;
|
||||||
if (code==CPAP_FlowRate) {
|
resetGraphViewSettings();
|
||||||
m_dot_enabled[code][Calc_Zero] = true;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
gLineChart::~gLineChart()
|
gLineChart::~gLineChart()
|
||||||
@ -1127,8 +1134,9 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion ®ion)
|
|||||||
|
|
||||||
// painter.setRenderHint(QPainter::Antialiasing, false);
|
// painter.setRenderHint(QPainter::Antialiasing, false);
|
||||||
|
|
||||||
if (actual_max_y>0) {
|
if (actual_max_y>0) {
|
||||||
m_actual_min_y=actual_min_y;
|
m_actual_min_y=actual_min_y;
|
||||||
m_actual_max_y=actual_max_y;
|
m_actual_max_y=actual_max_y;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
@ -161,6 +161,7 @@ class gLineChart: public Layer
|
|||||||
layer->lasttime = lasttime;
|
layer->lasttime = lasttime;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
virtual void resetGraphViewSettings();
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
//! \brief Mouse moved over this layers area (shows the hover-over tooltips here)
|
//! \brief Mouse moved over this layers area (shows the hover-over tooltips here)
|
||||||
|
Loading…
Reference in New Issue
Block a user