add mechanism to set default graphview settings. added enable UpperThreshold for CPAP_Leak graph

This commit is contained in:
LoudSnorer 2023-05-13 09:13:31 -04:00
parent e20ab60a30
commit 521d84a8c5
3 changed files with 63 additions and 22 deletions

View File

@ -3590,8 +3590,8 @@ void gGraphView::SaveDefaultSettings() {
m_default_graphs = m_graphs;
}
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 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.
QString gGraphView::settingsFilename (QString title,QString folderName, QString ext) {
if (folderName.size()==0) {
@ -3600,6 +3600,19 @@ QString gGraphView::settingsFilename (QString title,QString folderName, QString
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)
{
qDebug() << "Saving" << title << "settings";
@ -3610,8 +3623,8 @@ void gGraphView::SaveSettings(QString title,QString folderName)
out.setVersion(QDataStream::Qt_4_6);
out.setByteOrder(QDataStream::LittleEndian);
out << (quint32)gvmagic;
out << (quint16)gvversion;
out << (quint32)gVmagic;
out << (quint16)gVversion;
out << (qint16)size();
@ -3636,9 +3649,13 @@ void gGraphView::SaveSettings(QString title,QString folderName)
} else {
out << (quint32)LT_Other;
}
}
#if 0
// add changes for additional settings
for (auto & graph : m_graphs) {
}
#endif
f.close();
}
@ -3675,17 +3692,17 @@ bool gGraphView::LoadSettings(QString title,QString folderName)
in >> t1;
if (t1 != gvmagic) {
qDebug() << "gGraphView" << title << "settings magic doesn't match" << t1 << gvmagic;
if (t1 != gVmagic) {
qDebug() << "gGraphView" << title << "settings magic doesn't match" << t1 << gVmagic;
return false;
}
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.
//if (version < gvversion) {
//if (version < gVversion) {
//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
// 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.
if (version!=gvversion ) {
if (lc->code()==CPAP_FlowRate) {
lc->m_dot_enabled[lc->code()][Calc_Zero] = true;
}
// This is a one time change.
if (version==4 && gVversion>4) {
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()) {
m_graphs = neworder;

View File

@ -57,6 +57,15 @@ QColor darken(QColor color, float p)
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)
: 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);
lasttime = 0;
m_layertype = LT_LineChart;
if (code==CPAP_FlowRate) {
m_dot_enabled[code][Calc_Zero] = true;
}
resetGraphViewSettings();
}
gLineChart::~gLineChart()
@ -1127,8 +1134,9 @@ void gLineChart::paint(QPainter &painter, gGraph &w, const QRegion &region)
// painter.setRenderHint(QPainter::Antialiasing, false);
if (actual_max_y>0) {
m_actual_min_y=actual_min_y;
m_actual_max_y=actual_max_y;
}
if (actual_max_y>0) {
m_actual_min_y=actual_min_y;
m_actual_max_y=actual_max_y;
}
}

View File

@ -161,6 +161,7 @@ class gLineChart: public Layer
layer->lasttime = lasttime;
}
virtual void resetGraphViewSettings();
protected:
//! \brief Mouse moved over this layers area (shows the hover-over tooltips here)