mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Welcome page 2.0
This commit is contained in:
parent
565d0c5c31
commit
236552c885
@ -615,3 +615,131 @@ const char * US_STR_SkipEmptyDays="SkipEmptyDays";
|
||||
const char * US_STR_RebuildCache="RebuildCache";
|
||||
const char * US_STR_ShowDebug="ShowDebug";
|
||||
const char * US_STR_LinkGroups="LinkGroups";
|
||||
|
||||
EventDataType Profile::calcCount(ChannelID code, MachineType mt, QDate start, QDate end)
|
||||
{
|
||||
if (!start.isValid()) start=LastDay(mt);
|
||||
if (!end.isValid()) end=LastDay(mt);
|
||||
QDate date=start;
|
||||
|
||||
double val=0;
|
||||
do {
|
||||
Day * day=GetDay(date,mt);
|
||||
if (day) {
|
||||
val+=day->count(code);
|
||||
}
|
||||
date=date.addDays(1);
|
||||
} while (date<end);
|
||||
return val;
|
||||
}
|
||||
double Profile::calcSum(ChannelID code, MachineType mt, QDate start, QDate end)
|
||||
{
|
||||
if (!start.isValid()) start=LastDay(mt);
|
||||
if (!end.isValid()) end=LastDay(mt);
|
||||
QDate date=start;
|
||||
|
||||
double val=0;
|
||||
do {
|
||||
Day * day=GetDay(date,mt);
|
||||
if (day) {
|
||||
val+=day->sum(code);
|
||||
}
|
||||
date=date.addDays(1);
|
||||
} while (date<end);
|
||||
return val;
|
||||
}
|
||||
EventDataType Profile::calcHours(MachineType mt, QDate start, QDate end)
|
||||
{
|
||||
if (!start.isValid()) start=LastDay(mt);
|
||||
if (!end.isValid()) end=LastDay(mt);
|
||||
QDate date=start;
|
||||
|
||||
double val=0;
|
||||
do {
|
||||
Day * day=GetDay(date,mt);
|
||||
if (day) {
|
||||
val+=day->hours();
|
||||
}
|
||||
date=date.addDays(1);
|
||||
} while (date<end);
|
||||
return val;
|
||||
}
|
||||
EventDataType Profile::calcAvg(ChannelID code, MachineType mt, QDate start, QDate end)
|
||||
{
|
||||
if (!start.isValid()) start=LastDay(mt);
|
||||
if (!end.isValid()) end=LastDay(mt);
|
||||
QDate date=start;
|
||||
|
||||
double val=0;
|
||||
int cnt=0;
|
||||
do {
|
||||
Day * day=GetDay(date,mt);
|
||||
if (day) {
|
||||
val+=day->sum(code);
|
||||
cnt++;
|
||||
}
|
||||
date=date.addDays(1);
|
||||
} while (date<end);
|
||||
if (!cnt) return 0;
|
||||
return val/float(cnt);
|
||||
}
|
||||
EventDataType Profile::calcWavg(ChannelID code, MachineType mt, QDate start, QDate end)
|
||||
{
|
||||
if (!start.isValid())
|
||||
start=LastDay(mt);
|
||||
if (!end.isValid())
|
||||
end=LastDay(mt);
|
||||
QDate date=start;
|
||||
|
||||
double val=0,tmp,tmph,hours=0;
|
||||
do {
|
||||
Day * day=GetDay(date,mt);
|
||||
if (day) {
|
||||
tmph=day->hours();
|
||||
tmp=day->wavg(code);
|
||||
val+=tmp*tmph;
|
||||
hours+=tmph;
|
||||
}
|
||||
date=date.addDays(1);
|
||||
} while (date<end);
|
||||
if (!hours) return 0;
|
||||
val=val/hours;
|
||||
return val;
|
||||
}
|
||||
EventDataType Profile::calcPercentile(ChannelID code, EventDataType percent, MachineType mt, QDate start, QDate end)
|
||||
{
|
||||
if (!start.isValid()) start=LastDay(mt);
|
||||
if (!end.isValid()) end=LastDay(mt);
|
||||
|
||||
QDate date=start;
|
||||
|
||||
//double val=0,tmp,hours=0;
|
||||
do {
|
||||
date=date.addDays(1);
|
||||
} while (date<end);
|
||||
return 0;
|
||||
}
|
||||
|
||||
QDate Profile::FirstDay(MachineType mt)
|
||||
{
|
||||
if ((mt==MT_UNKNOWN) || (!m_last.isValid()) || (!m_first.isValid()))
|
||||
return m_first;
|
||||
|
||||
QDate d=m_first;
|
||||
do {
|
||||
if (GetDay(d,mt)!=NULL) return d;
|
||||
d=d.addDays(1);
|
||||
} while (d<=m_last);
|
||||
return m_last;
|
||||
}
|
||||
QDate Profile::LastDay(MachineType mt)
|
||||
{
|
||||
if ((mt==MT_UNKNOWN) || (!m_last.isValid()) || (!m_first.isValid()))
|
||||
return m_last;
|
||||
QDate d=m_last;
|
||||
do {
|
||||
if (GetDay(d,mt)!=NULL) return d;
|
||||
d=d.addDays(-1);
|
||||
} while (d>=m_first);
|
||||
return m_first;
|
||||
}
|
||||
|
@ -96,12 +96,19 @@ public:
|
||||
//! \brief Returns true if this profile stores this variable identified by key
|
||||
bool contains(QString key) { return p_preferences.contains(key); }
|
||||
|
||||
EventDataType calcCount(ChannelID code, MachineType mt=MT_CPAP, QDate start=QDate(), QDate end=QDate());
|
||||
double calcSum(ChannelID code, MachineType mt=MT_CPAP, QDate start=QDate(), QDate end=QDate());
|
||||
EventDataType calcHours(MachineType mt=MT_CPAP, QDate start=QDate(), QDate end=QDate());
|
||||
EventDataType calcAvg(ChannelID code, MachineType mt=MT_CPAP, QDate start=QDate(), QDate end=QDate());
|
||||
EventDataType calcWavg(ChannelID code, MachineType mt=MT_CPAP, QDate start=QDate(), QDate end=QDate());
|
||||
EventDataType calcPercentile(ChannelID code, EventDataType percent, MachineType mt=MT_CPAP, QDate start=QDate(), QDate end=QDate());
|
||||
|
||||
virtual void ExtraLoad(QDomElement & root);
|
||||
virtual QDomElement ExtraSave(QDomDocument & doc);
|
||||
|
||||
QMap<QDate,QList<Day *> > daylist;
|
||||
const QDate & FirstDay() { return m_first; }
|
||||
const QDate & LastDay() { return m_last; }
|
||||
QDate FirstDay(MachineType mt=MT_UNKNOWN);
|
||||
QDate LastDay(MachineType mt=MT_UNKNOWN);
|
||||
|
||||
QString dataFolder() { return (*this).Get("{DataFolder}"); }
|
||||
|
||||
@ -351,6 +358,7 @@ public:
|
||||
|
||||
void setProfile(Profile *p) { m_profile=p; }
|
||||
|
||||
//Getters
|
||||
double complianceHours() { return (*m_profile)[CS_STR_ComplianceHours].toDouble(); }
|
||||
bool showComplianceInfo() { return (*m_profile)[CS_STR_ShowCompliance].toBool(); }
|
||||
int leakMode() { return (*m_profile)[CS_STR_ShowLeaksMode].toInt(); }
|
||||
@ -364,6 +372,7 @@ public:
|
||||
const QString notes() { return (*m_profile)[CS_STR_Notes].toString(); }
|
||||
QDate dateDiagnosed() { return (*m_profile)[CS_STR_DateDiagnosed].toDate(); }
|
||||
|
||||
//Setters
|
||||
void setMode(CPAPMode mode) { (*m_profile)[CS_STR_PrescribedMode]=(int)mode; }
|
||||
void setMinPressure(double pressure) { (*m_profile)[CS_STR_PrescribedMinPressure]=pressure; }
|
||||
void setMaxPressure(double pressure) { (*m_profile)[CS_STR_PrescribedMaxPressure]=pressure; }
|
||||
|
112
mainwindow.cpp
112
mainwindow.cpp
@ -209,6 +209,8 @@ void MainWindow::Startup()
|
||||
if (overview) overview->ReloadGraphs();
|
||||
qprogress->hide();
|
||||
qstatus->setText("");
|
||||
on_homeButton_clicked();
|
||||
|
||||
}
|
||||
|
||||
void MainWindow::on_action_Import_Data_triggered()
|
||||
@ -342,11 +344,115 @@ void MainWindow::on_action_Fullscreen_triggered()
|
||||
this->showNormal();
|
||||
}
|
||||
|
||||
QString htmlHeader()
|
||||
{
|
||||
return QString("<html><head>"
|
||||
"</head>"
|
||||
"<style type='text/css'>"
|
||||
"<!--h1,p,a,td,body { font-family: 'FreeSans', 'Sans Serif' } --/>"
|
||||
"p,a,td,body { font-size: 14px }"
|
||||
"a:link,a:visited { color: '#000020'; text-decoration: none; font-weight: bold;}"
|
||||
"a:hover { background-color: inherit; color: red; text-decoration:none; font-weight: bold; }"
|
||||
"</style>"
|
||||
"</head>"
|
||||
"<body leftmargin=0 topmargin=0 rightmargin=0>"
|
||||
"<h2><img src='qrc:/docs/sheep.png' width=100px height=100px>SleepyHead v"+VersionString+" "+ReleaseStatus+"</h2>"
|
||||
"<p><i>This page is being redesigned to be more useful... Please send me your ideas on what you'd like to see here :)</i></p>"
|
||||
"<p>The plan is to get the content happening first, then make the layout pretty...</p><hr/>");
|
||||
}
|
||||
QString htmlFooter()
|
||||
{
|
||||
return QString("</body></html>");
|
||||
}
|
||||
|
||||
void MainWindow::on_homeButton_clicked()
|
||||
{
|
||||
QString file="qrc:/docs/index.html";
|
||||
QUrl url(file);
|
||||
ui->webView->setUrl(url);
|
||||
QString html=htmlHeader();
|
||||
|
||||
QDate lastcpap=p_profile->LastDay(MT_CPAP);
|
||||
QDate firstcpap=p_profile->FirstDay(MT_CPAP);
|
||||
QDate cpapweek=lastcpap.addDays(-7);
|
||||
QDate cpapmonth=lastcpap.addDays(-30);
|
||||
QDate cpap6month=lastcpap.addMonths(-6);
|
||||
QDate cpapyear=lastcpap.addYears(-12);
|
||||
if (cpapweek<firstcpap) cpapweek=firstcpap;
|
||||
if (cpapmonth<firstcpap) cpapmonth=firstcpap;
|
||||
if (cpap6month<firstcpap) cpap6month=firstcpap;
|
||||
if (cpapyear<firstcpap) cpapyear=firstcpap;
|
||||
|
||||
int cpapweekdays=cpapweek.daysTo(lastcpap);
|
||||
int cpapmonthdays=cpapmonth.daysTo(lastcpap);
|
||||
int cpapyeardays=cpapyear.daysTo(lastcpap);
|
||||
int cpap6monthdays=cpap6month.daysTo(lastcpap);
|
||||
|
||||
html+=QString("<b>Summary Information as of %1</b>").arg(lastcpap.toString(Qt::SystemLocaleLongDate));
|
||||
html+=QString("<table cellpadding=2 cellspacing=0 border=1>"
|
||||
"<tr><td><b>%1</b></td><td><b>%2</b></td><td><b>%3</b></td><td><b>%4</b></td><td><b>%5</b></td><td><b>%6</td></tr>")
|
||||
.arg(tr("Details")).arg(tr("Most Recent")).arg(tr("Last 7 Days")).arg(tr("Last 30 Days")).arg(tr("Last 6 months")).arg(tr("Last Year"));
|
||||
|
||||
html+=QString("<tr><td>%1</td><td>%2</td><td>%3</td><td>%4</td><td>%5</td><td>%6</td></tr>")
|
||||
.arg(tr("AHI"))
|
||||
.arg((p_profile->calcCount(CPAP_Obstructive)
|
||||
+p_profile->calcCount(CPAP_Hypopnea)
|
||||
+p_profile->calcCount(CPAP_ClearAirway)
|
||||
+p_profile->calcCount(CPAP_Apnea))
|
||||
/p_profile->calcHours(),0,'f',2)
|
||||
.arg((p_profile->calcCount(CPAP_Obstructive,MT_CPAP,cpapweek,lastcpap)
|
||||
+p_profile->calcCount(CPAP_Hypopnea,MT_CPAP,cpapweek,lastcpap)
|
||||
+p_profile->calcCount(CPAP_ClearAirway,MT_CPAP,cpapweek,lastcpap)
|
||||
+p_profile->calcCount(CPAP_Apnea,MT_CPAP,cpapweek,lastcpap))
|
||||
/p_profile->calcHours(MT_CPAP,cpapweek,lastcpap),0,'f',2)
|
||||
.arg((p_profile->calcCount(CPAP_Obstructive,MT_CPAP,cpapmonth,lastcpap)
|
||||
+p_profile->calcCount(CPAP_Hypopnea,MT_CPAP,cpapmonth,lastcpap)
|
||||
+p_profile->calcCount(CPAP_ClearAirway,MT_CPAP,cpapmonth,lastcpap)
|
||||
+p_profile->calcCount(CPAP_Apnea,MT_CPAP,cpapmonth,lastcpap))
|
||||
/p_profile->calcHours(MT_CPAP,cpapmonth,lastcpap),0,'f',2)
|
||||
.arg((p_profile->calcCount(CPAP_Obstructive,MT_CPAP,cpap6month,lastcpap)
|
||||
+p_profile->calcCount(CPAP_Hypopnea,MT_CPAP,cpap6month,lastcpap)
|
||||
+p_profile->calcCount(CPAP_ClearAirway,MT_CPAP,cpap6month,lastcpap)
|
||||
+p_profile->calcCount(CPAP_Apnea,MT_CPAP,cpap6month,lastcpap))
|
||||
/p_profile->calcHours(MT_CPAP,cpap6month,lastcpap),0,'f',2)
|
||||
.arg((p_profile->calcCount(CPAP_Obstructive,MT_CPAP,cpapyear,lastcpap)
|
||||
+p_profile->calcCount(CPAP_Hypopnea,MT_CPAP,cpapyear,lastcpap)
|
||||
+p_profile->calcCount(CPAP_ClearAirway,MT_CPAP,cpapyear,lastcpap)
|
||||
+p_profile->calcCount(CPAP_Apnea,MT_CPAP,cpapyear,lastcpap))
|
||||
/p_profile->calcHours(MT_CPAP,cpapyear,lastcpap),0,'f',2);
|
||||
html+="<tr><td colspan=6>Note, these are different to overview calcs.. Overview shows a simple average AHI, this shows combined counts divide by combined hours</td></tr>";
|
||||
|
||||
html+=QString("<tr><td>%1</td><td>%2</td><td>%3</td><td>%4</td><td>%5</td><td>%6</td></tr>")
|
||||
.arg(tr("Usage (Average)"))
|
||||
.arg(p_profile->calcHours(MT_CPAP),0,'f',2)
|
||||
.arg(p_profile->calcHours(MT_CPAP,cpapweek,lastcpap)/float(cpapweekdays),0,'f',2)
|
||||
.arg(p_profile->calcHours(MT_CPAP,cpapmonth,lastcpap)/float(cpapmonthdays),0,'f',2)
|
||||
.arg(p_profile->calcHours(MT_CPAP,cpap6month,lastcpap)/float(cpap6monthdays),0,'f',2)
|
||||
.arg(p_profile->calcHours(MT_CPAP,cpapyear,lastcpap)/float(cpapyeardays),0,'f',2);
|
||||
|
||||
html+=QString("<tr><td>%1</td><td>%2</td><td>%3</td><td>%4</td><td>%5</td><td>%6</td></tr>")
|
||||
.arg(tr("Average Pressure"))
|
||||
.arg(p_profile->calcWavg(CPAP_Pressure,MT_CPAP))
|
||||
.arg(p_profile->calcWavg(CPAP_Pressure,MT_CPAP,cpapweek,lastcpap),0,'f',3)
|
||||
.arg(p_profile->calcWavg(CPAP_Pressure,MT_CPAP,cpapmonth,lastcpap),0,'f',3)
|
||||
.arg(p_profile->calcWavg(CPAP_Pressure,MT_CPAP,cpap6month,lastcpap),0,'f',3)
|
||||
.arg(p_profile->calcWavg(CPAP_Pressure,MT_CPAP,cpapyear,lastcpap),0,'f',3);
|
||||
html+="<tr><td colspan=6>TODO: 90% pressure.. Any point showing if this is all CPAP?</td></tr>";
|
||||
|
||||
|
||||
html+=QString("<tr><td>%1</td><td>%2</td><td>%3</td><td>%4</td><td>%5</td><td>%6</td></tr>")
|
||||
.arg(tr("Average Leaks"))
|
||||
.arg(p_profile->calcWavg(CPAP_Leak,MT_CPAP))
|
||||
.arg(p_profile->calcWavg(CPAP_Leak,MT_CPAP,cpapweek,lastcpap),0,'f',3)
|
||||
.arg(p_profile->calcWavg(CPAP_Leak,MT_CPAP,cpapmonth,lastcpap),0,'f',3)
|
||||
.arg(p_profile->calcWavg(CPAP_Leak,MT_CPAP,cpap6month,lastcpap),0,'f',3)
|
||||
.arg(p_profile->calcWavg(CPAP_Leak,MT_CPAP,cpapyear,lastcpap),0,'f',3);
|
||||
html+="<tr><td colspan=6>What about median leak values? 90% Leaks?</td></tr>";
|
||||
|
||||
|
||||
html+="</table>";
|
||||
html+=htmlFooter();
|
||||
ui->webView->setHtml(html);
|
||||
// QString file="qrc:/docs/index.html";
|
||||
// QUrl url(file);
|
||||
// ui->webView->setUrl(url);
|
||||
}
|
||||
|
||||
void MainWindow::on_backButton_clicked()
|
||||
|
Loading…
Reference in New Issue
Block a user