Added more request ui changes

This commit is contained in:
LoudSnorer 2023-06-08 12:32:51 -04:00
parent d2e03caea1
commit 18e13aff6f
5 changed files with 61 additions and 87 deletions

View File

@ -578,6 +578,11 @@ void Daily::showEvent(QShowEvent *)
bool Daily::rejectToggleSessionEnable( Session*sess) { bool Daily::rejectToggleSessionEnable( Session*sess) {
if (!sess) return true; if (!sess) return true;
if (AppSetting->clinicalMode()) {
QMessageBox mbox(QMessageBox::Warning, tr("Disable Session"), tr(" Disabling Sessions requires the Permissive Mode"), QMessageBox::Ok , this);
mbox.exec();
return true;
}
sess->setEnabled(!sess->enabled()); sess->setEnabled(!sess->enabled());
return false; return false;
} }

View File

@ -1210,69 +1210,33 @@ QString DailySearchTab::centerLine(QString line) {
QString DailySearchTab::helpStr() QString DailySearchTab::helpStr()
{ {
QStringList str; QStringList str; str
str.append(tr("Finds days that match specified criteria.")); <<tr("Finds days that match specified criteria.") <<"\n"
str.append("\n"); <<tr(" Searches from last day to first day.") <<"\n" <<"\n"
str.append(tr(" Searches from last day to first day.")); <<tr("First click on Match Button then select topic.") <<"\n"
str.append("\n"); <<tr(" Then click on the operation to modify it.") <<"\n"
str.append("\n"); <<tr(" or update the value") <<"\n"
str.append(tr("First click on Match Button then select topic.")); <<tr("Topics without operations will automatically start.") <<"\n" <<"\n"
str.append("\n"); <<tr("Compare Operations: numberic or character. ") <<"\n"
str.append(tr(" Then click on the operation to modify it.")); <<tr(" Numberic Operations: ") <<" > , >= , < , <= , == , != " <<"\n"
str.append("\n"); <<tr(" Character Operations: ") <<" == , *? " <<"\n" <<"\n"
str.append(tr(" or update the value")); <<tr("Summary Line") <<"\n"
str.append("\n"); <<tr(" Left:Summary - Number of Day searched") <<"\n"
str.append(tr("Topics without operations will automatically start.")); <<tr(" Center:Number of Items Found") <<"\n"
str.append("\n"); <<tr(" Right:Minimum/Maximum for item searched") <<"\n"
str.append("\n"); <<tr("Result Table") <<"\n"
str.append(tr("Compare Operations: numberic or character. ")); <<tr(" Column One: Date of match. Click selects date.") <<"\n"
str.append("\n"); <<tr(" Column two: Information. Click selects date.") <<"\n"
str.append(tr(" Numberic Operations: ")); <<tr(" Then Jumps the appropiate tab.") <<"\n" <<"\n"
str.append(" > , >= , < , <= , == , != "); <<tr("Wildcard Pattern Matching:") <<" *? " <<"\n"
str.append("\n"); <<tr(" Wildcards use 3 characters:") <<"\n"
str.append(tr(" Character Operations: ")); <<tr(" Asterisk") <<" * " <<" "
str.append(" == , *? "); <<tr(" Question Mark") <<" ? " <<" "
str.append("\n"); <<tr(" Backslash.") <<" \\ " <<"\n"
str.append("\n"); <<tr(" Asterisk matches any number of characters.") <<"\n"
str.append(tr("Summary Line")); <<tr(" Question Mark matches a single character.") <<"\n"
str.append("\n"); <<tr(" Backslash matches next character.") <<"\n";
str.append(tr(" Left:Summary - Number of Day searched")); return str.join("");
str.append("\n");
str.append(tr(" Center:Number of Items Found"));
str.append("\n");
str.append(tr(" Right:Minimum/Maximum for item searched"));
str.append("\n");
str.append(tr("Result Table"));
str.append("\n");
str.append(tr(" Column One: Date of match. Click selects date."));
str.append("\n");
str.append(tr(" Column two: Information. Click selects date."));
str.append("\n");
str.append(tr(" Then Jumps the appropiate tab."));
str.append("\n");
str.append("\n");
str.append(tr("Wildcard Pattern Matching:"));
str.append(" *? ");
str.append("\n");
str.append(tr(" Wildcards use 3 characters:"));
str.append("\n");
str.append(tr(" Asterisk"));
str.append(" * ");
str.append(" ");
str.append(tr(" Question Mark"));
str.append(" ? ");
str.append(" ");
str.append(tr(" Backslash."));
str.append(" \\ ");
str.append("\n");
str.append(tr(" Asterisk matches any number of characters."));
str.append("\n");
str.append(tr(" Question Mark matches a single character."));
str.append("\n");
str.append(tr(" Backslash matches next character."));
str.append("\n");
QString result =str.join("");
return result;
} }
QString DailySearchTab::formatTime (qint32 ms) { QString DailySearchTab::formatTime (qint32 ms) {

View File

@ -130,7 +130,6 @@ QColor brighten(QColor, float f);
void SessionBar::mousePressEvent(QMouseEvent *ev) void SessionBar::mousePressEvent(QMouseEvent *ev)
{ {
if ( AppSetting->clinicalMode() ) return;
SegType mn = min(); SegType mn = min();
SegType mx = max(); SegType mx = max();
@ -173,7 +172,6 @@ void SessionBar::mousePressEvent(QMouseEvent *ev)
void SessionBar::mouseMoveEvent(QMouseEvent *ev) void SessionBar::mouseMoveEvent(QMouseEvent *ev)
{ {
if ( AppSetting->clinicalMode() ) return;
SegType mn = min(); SegType mn = min();
SegType mx = max(); SegType mx = max();

View File

@ -174,40 +174,42 @@ void DisabledInfo::update(QDate latestDate, QDate earliestDate)
{ {
clear(); clear();
if (AppSetting->clinicalMode()) return; if (AppSetting->clinicalMode()) return;
qint64 complianceLimit = 3600000.0 * p_profile->cpap->complianceHours(); // conbvert to ms qint64 complianceHours = 3600000.0 * p_profile->cpap->complianceHours(); // conbvert to ms
totalDays = 1+earliestDate.daysTo(latestDate); totalDays = 1+earliestDate.daysTo(latestDate);
for (QDate date = latestDate ; date >= earliestDate ; date=date.addDays(-1) ) { for (QDate date = latestDate ; date >= earliestDate ; date=date.addDays(-1) ) {
Day* day = p_profile->GetDay(date); Day* day = p_profile->GetDay(date);
if (!day) { daysNoData++; continue;}; if (!day) { daysNoData++; continue;};
// find basic statistics for a day
int numDisabled=0; int numDisabled=0;
qint64 sessLength = 0; qint64 sessLength = 0;
qint64 dayLength = 0; qint64 dayLength = 0;
qint64 complianceLength = 0; qint64 enabledLength = 0;
//qint64 disableLength = 0;
QList<Session *> sessions = day->getSessions(MT_CPAP,true); QList<Session *> sessions = day->getSessions(MT_CPAP,true);
for (auto & sess : sessions) { for (auto & sess : sessions) {
sessLength = sess->length(); sessLength = sess->length();
dayLength += sessLength; dayLength += sessLength;
if (!sess->enabled(true)) { if (sess->enabled(true)) {
enabledLength += sessLength;
} else {
numDisabled ++; numDisabled ++;
numDisabledsessions ++;
//disableLength += sessLength;
totalDurationOfDisabledSessions += sessLength; totalDurationOfDisabledSessions += sessLength;
if (maxDurationOfaDisabledsession < sessLength) maxDurationOfaDisabledsession = sessLength; if (maxDurationOfaDisabledsession < sessLength) maxDurationOfaDisabledsession = sessLength;
} else {
complianceLength += sess->length();
} }
} }
if ( complianceLimit <= complianceLength ) { // calculate stats for all days
// calculate if compliance for a day changed.
if ( complianceHours <= enabledLength ) {
daysInCompliance ++; daysInCompliance ++;
} else { } else {
if (complianceLimit < dayLength ) { if (complianceHours < dayLength ) {
numDaysDisabledSessionChangedCompliance++; numDaysDisabledSessionChangedCompliance++;
} else { } else {
daysOutOfCompliance ++; daysOutOfCompliance ++;
} }
} }
// update disabled info for all days
if ( numDisabled > 0 ) { if ( numDisabled > 0 ) {
numDisabledsessions += numDisabled;
numDaysWithDisabledsessions++; numDaysWithDisabledsessions++;
}; };
} }
@ -236,20 +238,20 @@ void DisabledInfo::update(QDate latestDate, QDate earliestDate)
QString DisabledInfo::display(int type) QString DisabledInfo::display(int type)
{ {
/* /*
Warning: As Permissive mode is set (Preferences/Clinical), some sessions are excluded from this report, as follows: Permissive mode: some sessions are excluded from this report, as follows:
Total disabled sessions: xx, found in yy days, of which zz days would have caused compliance failures. Total disabled sessions: xx, found in yy days.
Duration of longest disabled session: aa minutes, Total duration of all disabled sessions: bb minutes. Duration of longest disabled session: aa minutes, Total duration of all disabled sessions: bb minutes.
*/ */
switch (type) { switch (type) {
default : default :
case 0: case 0:
return QString(QObject::tr("Warning: As Permissive mode is set (Preferences/Clinical), some sessions are excluded from this report")); return QString(QObject::tr("Permissive mode is set (Preferences/Clinical), disabled sessions are excluded from this report"));
case 1: case 1:
return QString(QObject::tr("Total disabled sessions: %1, found in %2 days") //, of which %3 days would have caused compliance failures") if (numDisabledsessions>0) {
.arg(numDisabledsessions) return QString(QObject::tr("Total disabled sessions: %1, found in %2 days") .arg(numDisabledsessions) .arg(numDaysWithDisabledsessions));
.arg(numDaysWithDisabledsessions) } else {
//.arg(numDaysDisabledSessionChangedCompliance) return QString(QObject::tr("Total disabled sessions: %1") .arg(numDisabledsessions) );
); }
case 2: case 2:
return QString(QObject::tr( "Duration of longest disabled session: %1 minutes, Total duration of all disabled sessions: %2 minutes.") return QString(QObject::tr( "Duration of longest disabled session: %1 minutes, Total duration of all disabled sessions: %2 minutes.")
.arg(maxDurationOfaDisabledsession) .arg(maxDurationOfaDisabledsession)
@ -633,7 +635,9 @@ Statistics::Statistics(QObject *parent) :
updateDisabledInfo(); updateDisabledInfo();
rows.push_back(StatisticsRow(disabledInfo.display(0),SC_WARNING ,MT_CPAP)); rows.push_back(StatisticsRow(disabledInfo.display(0),SC_WARNING ,MT_CPAP));
rows.push_back(StatisticsRow(disabledInfo.display(1),SC_WARNING2,MT_CPAP)); rows.push_back(StatisticsRow(disabledInfo.display(1),SC_WARNING2,MT_CPAP));
rows.push_back(StatisticsRow(disabledInfo.display(2),SC_WARNING2,MT_CPAP)); if (disabledInfo.size()>0) {
rows.push_back(StatisticsRow(disabledInfo.display(2),SC_WARNING2,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));
@ -986,7 +990,7 @@ struct Period {
QString header; QString header;
}; };
const QString warning_color="#ff8888"; const QString warning_color="#ffffff";
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;
@ -1354,11 +1358,13 @@ QString Statistics::GenerateCPAPUsage()
} else if (row.calc == SC_UNDEFINED) { } else if (row.calc == SC_UNDEFINED) {
continue; continue;
} else if (row.calc == SC_WARNING) { } else if (row.calc == SC_WARNING) {
html+=QString("<tr bgcolor='%1'><th colspan=%2 align=center><font size='+1'>%3</font></th></tr>"). //html+=QString("<tr bgcolor='%1'><td colspan=%2 align=center><font size='+1'>%3</font></td></tr>").
// arg(warning_color).arg(periods.size()+1).arg(row.src);
html+=QString("<tr bgcolor='%1'><th colspan=%2 align=center><font size='+0'><i>%3</i></font></th></tr>").
arg(warning_color).arg(periods.size()+1).arg(row.src); arg(warning_color).arg(periods.size()+1).arg(row.src);
continue; continue;
} else if (row.calc == SC_WARNING2) { } else if (row.calc == SC_WARNING2) {
html+=QString("<tr bgcolor='%1'><th colspan=%2 align=center><font size='+0'>%3</font></th></tr>"). html+=QString("<tr bgcolor='%1'><th colspan=%2 align=center><font size='+0'><i>%3</i></font></th></tr>").
arg(warning_color).arg(periods.size()+1).arg(row.src); arg(warning_color).arg(periods.size()+1).arg(row.src);
continue; continue;
} else { } else {

View File

@ -27,6 +27,7 @@ class DisabledInfo
public: public:
QString display(int); QString display(int);
void update(QDate latest, QDate earliest) ; void update(QDate latest, QDate earliest) ;
int size() {return numDisabledsessions;};
private: private:
int totalDays ; int totalDays ;
int daysNoData ; int daysNoData ;