always display red-line for FlowRate graph.

This commit is contained in:
LoudSnorer 2023-05-16 21:21:59 -04:00
parent 6d9d7d0c50
commit 74c85eb8c6
3 changed files with 28 additions and 12 deletions

View File

@ -2309,6 +2309,12 @@ void gGraphView::populateMenu(gGraph * graph)
if (!lc->m_enabled[dot.code]) continue;
#if defined(ENABLE_ALWAYS_ON_ZERO_RED_LINE_FLOW_RATE)
// if red line is always on then there is no need for the button to turn it on /off
// skip creating UI to change value. or turn enabled off.
if (lc->code() == CPAP_FlowRate && dot.type == Calc_Zero) continue;
#endif
schema::Channel &chan = schema::channel[dot.code];
if (dot.available) {

View File

@ -58,10 +58,13 @@ QColor darken(QColor color, float p)
}
void gLineChart::resetGraphViewSettings() {
#if !defined(ENABLE_ALWAYS_ON_ZERO_RED_LINE_FLOW_RATE)
// always turn zero red line on as default value.
if (m_code==CPAP_FlowRate) {
m_dot_enabled[m_code][Calc_Zero] = true;
}
else if (m_code==CPAP_Leak) {
} else
#endif
if (m_code==CPAP_Leak) {
m_dot_enabled[m_code][Calc_UpperThresh] = true;
}
}
@ -259,7 +262,12 @@ skipcheck:
if (m_codes[0] == CPAP_Leak) {
addDotLine(DottedLine(CPAP_Leak, Calc_UpperThresh, schema::channel[CPAP_Leak].calc[Calc_UpperThresh].enabled));
} else if (m_codes[0] == CPAP_FlowRate) {
addDotLine(DottedLine(CPAP_FlowRate, Calc_Zero, schema::channel[CPAP_FlowRate].calc[Calc_Zero].enabled));
//addDotLine(DottedLine(CPAP_FlowRate, Calc_Zero, schema::channel[CPAP_FlowRate].calc[Calc_Zero].enabled));
addDotLine(DottedLine(CPAP_FlowRate, Calc_Zero, false ));
#if defined(ENABLE_ALWAYS_ON_ZERO_RED_LINE_FLOW_RATE)
//on set day force red line on.
m_dot_enabled[m_code][Calc_Zero] = true;
#endif
} else if (m_codes[0] == OXI_Pulse) {
addDotLine(DottedLine(OXI_Pulse, Calc_UpperThresh, schema::channel[OXI_Pulse].calc[Calc_UpperThresh].enabled));
addDotLine(DottedLine(OXI_Pulse, Calc_LowerThresh, schema::channel[OXI_Pulse].calc[Calc_LowerThresh].enabled));
@ -268,6 +276,7 @@ skipcheck:
}
if (m_day) {
for (auto & dot : m_dotlines) {
dot.calc(m_day);

View File

@ -18,6 +18,7 @@
#include "SleepLib/day.h"
#include "Graphs/gLineOverlay.h"
#define ENABLE_ALWAYS_ON_ZERO_RED_LINE_FLOW_RATE
enum DottedLineCalc {
DLC_Zero, DLC_Min, DLC_Mid, DLC_Perc, DLC_Max, DLC_UpperThresh, DLC_LowerThresh
};