mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
add warning messages for clinican mode
This commit is contained in:
parent
c82ace546f
commit
14aabf133b
@ -578,10 +578,15 @@ void Daily::showEvent(QShowEvent *)
|
|||||||
|
|
||||||
bool Daily::rejectToggleSessionEnable( Session*sess) {
|
bool Daily::rejectToggleSessionEnable( Session*sess) {
|
||||||
if (!sess) return true;
|
if (!sess) return true;
|
||||||
|
if (!AppSetting->allowDisableSessions()) {
|
||||||
|
QMessageBox mbox(QMessageBox::Warning, tr("Disable Session"), tr(" Disabling Sessions is not enabled"), QMessageBox::Ok , this);
|
||||||
|
mbox.exec();
|
||||||
|
return true;
|
||||||
|
}
|
||||||
bool enabled=sess->enabled();
|
bool enabled=sess->enabled();
|
||||||
if (enabled ) {
|
if (enabled ) {
|
||||||
QMessageBox mbox(QMessageBox::Warning, tr("Disable Warning"),
|
QMessageBox mbox(QMessageBox::Warning, tr("Disable Session"),
|
||||||
tr("Disabling a session will remove this session data \nfrom all graphs, reports and statistics."
|
tr("Disabling a session will remove this session \nfrom all graphs, reports and statistics."
|
||||||
"\n\n"
|
"\n\n"
|
||||||
"The Search tab can find disabled sessions"
|
"The Search tab can find disabled sessions"
|
||||||
"\n\n"
|
"\n\n"
|
||||||
|
@ -7,6 +7,9 @@
|
|||||||
* License. See the file COPYING in the main directory of the source code
|
* License. See the file COPYING in the main directory of the source code
|
||||||
* for more details. */
|
* for more details. */
|
||||||
|
|
||||||
|
#define TEST_MACROS_ENABLEDoff
|
||||||
|
#include <test_macros.h>
|
||||||
|
|
||||||
#include <QApplication>
|
#include <QApplication>
|
||||||
#include <QFile>
|
#include <QFile>
|
||||||
#include <QDataStream>
|
#include <QDataStream>
|
||||||
@ -534,6 +537,8 @@ Statistics::Statistics(QObject *parent) :
|
|||||||
QObject(parent)
|
QObject(parent)
|
||||||
{
|
{
|
||||||
rows.push_back(StatisticsRow(tr("CPAP Statistics"), SC_HEADING, MT_CPAP));
|
rows.push_back(StatisticsRow(tr("CPAP Statistics"), SC_HEADING, MT_CPAP));
|
||||||
|
if (AppSetting->allowDisableSessions())
|
||||||
|
rows.push_back(StatisticsRow(tr("Warning: Disabled session data is excluded in this report"),SC_WARNING,MT_CPAP));
|
||||||
rows.push_back(StatisticsRow("", SC_DAYS, MT_CPAP));
|
rows.push_back(StatisticsRow("", SC_DAYS, MT_CPAP));
|
||||||
rows.push_back(StatisticsRow("", SC_COLUMNHEADERS, MT_CPAP));
|
rows.push_back(StatisticsRow("", SC_COLUMNHEADERS, MT_CPAP));
|
||||||
rows.push_back(StatisticsRow(tr("CPAP Usage"), SC_SUBHEADING, MT_CPAP));
|
rows.push_back(StatisticsRow(tr("CPAP Usage"), SC_SUBHEADING, MT_CPAP));
|
||||||
@ -656,7 +661,6 @@ QString Statistics::getUserInfo () {
|
|||||||
}
|
}
|
||||||
|
|
||||||
const QString table_width = "width='100%'";
|
const QString table_width = "width='100%'";
|
||||||
|
|
||||||
// Create the page header in HTML. Includes everything from <head> through <body>
|
// Create the page header in HTML. Includes everything from <head> through <body>
|
||||||
QString Statistics::generateHeader(bool onScreen)
|
QString Statistics::generateHeader(bool onScreen)
|
||||||
{
|
{
|
||||||
@ -886,6 +890,7 @@ struct Period {
|
|||||||
QString header;
|
QString header;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
const QString warning_color="#ff8888";
|
||||||
const QString heading_color="#ffffff";
|
const QString heading_color="#ffffff";
|
||||||
const QString subheading_color="#e0e0e0";
|
const QString subheading_color="#e0e0e0";
|
||||||
//const int rxthresh = 5;
|
//const int rxthresh = 5;
|
||||||
@ -1252,6 +1257,10 @@ QString Statistics::GenerateCPAPUsage()
|
|||||||
continue;
|
continue;
|
||||||
} else if (row.calc == SC_UNDEFINED) {
|
} else if (row.calc == SC_UNDEFINED) {
|
||||||
continue;
|
continue;
|
||||||
|
} else if (row.calc == SC_WARNING) {
|
||||||
|
html+=QString("<tr bgcolor='%1'><th colspan=%2 align=center><font size='+1'>%3</font></th></tr>").
|
||||||
|
arg(warning_color).arg(periods.size()+1).arg(row.src);
|
||||||
|
continue;
|
||||||
} else {
|
} else {
|
||||||
ChannelID id = schema::channel[row.src].id();
|
ChannelID id = schema::channel[row.src].id();
|
||||||
if ((id == NoChannel) || (!p_profile->channelAvailable(id))) {
|
if ((id == NoChannel) || (!p_profile->channelAvailable(id))) {
|
||||||
|
@ -21,7 +21,7 @@
|
|||||||
|
|
||||||
//! \brief Type of calculation on one statistics row
|
//! \brief Type of calculation on one statistics row
|
||||||
enum StatCalcType {
|
enum StatCalcType {
|
||||||
SC_UNDEFINED=0, SC_COLUMNHEADERS, SC_HEADING, SC_SUBHEADING, SC_MEDIAN, SC_AVG, SC_WAVG, SC_90P, SC_MIN, SC_MAX, SC_CPH, SC_SPH, SC_AHI, SC_HOURS, SC_COMPLIANCE, SC_DAYS, SC_ABOVE, SC_BELOW
|
SC_UNDEFINED=0, SC_COLUMNHEADERS, SC_HEADING, SC_SUBHEADING, SC_MEDIAN, SC_AVG, SC_WAVG, SC_90P, SC_MIN, SC_MAX, SC_CPH, SC_SPH, SC_AHI, SC_HOURS, SC_COMPLIANCE, SC_DAYS, SC_ABOVE, SC_BELOW , SC_WARNING
|
||||||
};
|
};
|
||||||
|
|
||||||
/*! \struct StatisticsRow
|
/*! \struct StatisticsRow
|
||||||
@ -166,10 +166,6 @@ class Statistics : public QObject
|
|||||||
public:
|
public:
|
||||||
explicit Statistics(QObject *parent = 0);
|
explicit Statistics(QObject *parent = 0);
|
||||||
|
|
||||||
void loadRXChanges();
|
|
||||||
void saveRXChanges();
|
|
||||||
void updateRXChanges();
|
|
||||||
|
|
||||||
QString GenerateHTML();
|
QString GenerateHTML();
|
||||||
|
|
||||||
QString UpdateRecordsBox();
|
QString UpdateRecordsBox();
|
||||||
@ -178,6 +174,10 @@ class Statistics : public QObject
|
|||||||
|
|
||||||
|
|
||||||
protected:
|
protected:
|
||||||
|
void loadRXChanges();
|
||||||
|
void saveRXChanges();
|
||||||
|
void updateRXChanges();
|
||||||
|
|
||||||
QString getUserInfo();
|
QString getUserInfo();
|
||||||
QString getRDIorAHIText();
|
QString getRDIorAHIText();
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user