mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Add Warning dialog when a session is disabled
This commit is contained in:
parent
b3956acb1f
commit
25b28f41ff
@ -7,7 +7,7 @@
|
|||||||
* 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
|
#define TEST_MACROS_ENABLED
|
||||||
#include <test_macros.h>
|
#include <test_macros.h>
|
||||||
|
|
||||||
#include <QTextCharFormat>
|
#include <QTextCharFormat>
|
||||||
@ -580,10 +580,26 @@ void Daily::showEvent(QShowEvent *)
|
|||||||
// sleep(3);
|
// sleep(3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool Daily::rejectToggleSessionEnable( Session*sess) {
|
||||||
|
if (!sess) return true;
|
||||||
|
bool enabled=sess->enabled();
|
||||||
|
if (enabled ) {
|
||||||
|
QMessageBox mbox(QMessageBox::Warning, tr("Disable Warning"),
|
||||||
|
tr("Disabling a session will remove this session data \nfrom all graphs, reports and statistics."
|
||||||
|
"\n\n"
|
||||||
|
"The Search tab can find disabled sessions"
|
||||||
|
"\n\n"
|
||||||
|
"Continue ?"),
|
||||||
|
QMessageBox::Yes | QMessageBox::No , this);
|
||||||
|
if (mbox.exec() != QMessageBox::Yes ) return true;
|
||||||
|
};
|
||||||
|
sess->setEnabled(!enabled);
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
|
||||||
void Daily::doToggleSession(Session * sess)
|
void Daily::doToggleSession(Session * sess)
|
||||||
{
|
{
|
||||||
sess->setEnabled(!sess->enabled());
|
if (rejectToggleSessionEnable( sess) ) return;
|
||||||
|
|
||||||
LoadDate(previous_date);
|
LoadDate(previous_date);
|
||||||
mainwin->getOverview()->graphView()->dataChanged();
|
mainwin->getOverview()->graphView()->dataChanged();
|
||||||
}
|
}
|
||||||
@ -599,10 +615,8 @@ void Daily::Link_clicked(const QUrl &url)
|
|||||||
day=p_profile->GetDay(previous_date,MT_CPAP);
|
day=p_profile->GetDay(previous_date,MT_CPAP);
|
||||||
if (!day) return;
|
if (!day) return;
|
||||||
Session *sess=day->find(sid, MT_CPAP);
|
Session *sess=day->find(sid, MT_CPAP);
|
||||||
if (!sess)
|
|
||||||
return;
|
|
||||||
// int i=webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);
|
// int i=webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);
|
||||||
sess->setEnabled(!sess->enabled());
|
if (rejectToggleSessionEnable( sess) ) return;
|
||||||
|
|
||||||
// Reload day
|
// Reload day
|
||||||
LoadDate(previous_date);
|
LoadDate(previous_date);
|
||||||
@ -612,10 +626,8 @@ void Daily::Link_clicked(const QUrl &url)
|
|||||||
day=p_profile->GetDay(previous_date,MT_OXIMETER);
|
day=p_profile->GetDay(previous_date,MT_OXIMETER);
|
||||||
if (!day) return;
|
if (!day) return;
|
||||||
Session *sess=day->find(sid, MT_OXIMETER);
|
Session *sess=day->find(sid, MT_OXIMETER);
|
||||||
if (!sess)
|
|
||||||
return;
|
|
||||||
// int i=webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);
|
// int i=webView->page()->mainFrame()->scrollBarMaximum(Qt::Vertical)-webView->page()->mainFrame()->scrollBarValue(Qt::Vertical);
|
||||||
sess->setEnabled(!sess->enabled());
|
if (rejectToggleSessionEnable( sess) ) return;
|
||||||
|
|
||||||
// Reload day
|
// Reload day
|
||||||
LoadDate(previous_date);
|
LoadDate(previous_date);
|
||||||
@ -625,16 +637,14 @@ void Daily::Link_clicked(const QUrl &url)
|
|||||||
day=p_profile->GetDay(previous_date,MT_SLEEPSTAGE);
|
day=p_profile->GetDay(previous_date,MT_SLEEPSTAGE);
|
||||||
if (!day) return;
|
if (!day) return;
|
||||||
Session *sess=day->find(sid, MT_SLEEPSTAGE);
|
Session *sess=day->find(sid, MT_SLEEPSTAGE);
|
||||||
if (!sess) return;
|
if (rejectToggleSessionEnable( sess) ) return;
|
||||||
sess->setEnabled(!sess->enabled());
|
|
||||||
LoadDate(previous_date);
|
LoadDate(previous_date);
|
||||||
mainwin->getOverview()->graphView()->dataChanged();
|
mainwin->getOverview()->graphView()->dataChanged();
|
||||||
} else if (code=="togglepositionsession") { // Enable/Disable Position session
|
} else if (code=="togglepositionsession") { // Enable/Disable Position session
|
||||||
day=p_profile->GetDay(previous_date,MT_POSITION);
|
day=p_profile->GetDay(previous_date,MT_POSITION);
|
||||||
if (!day) return;
|
if (!day) return;
|
||||||
Session *sess=day->find(sid, MT_POSITION);
|
Session *sess=day->find(sid, MT_POSITION);
|
||||||
if (!sess) return;
|
if (rejectToggleSessionEnable( sess) ) return;
|
||||||
sess->setEnabled(!sess->enabled());
|
|
||||||
LoadDate(previous_date);
|
LoadDate(previous_date);
|
||||||
mainwin->getOverview()->graphView()->dataChanged();
|
mainwin->getOverview()->graphView()->dataChanged();
|
||||||
} else if (code=="cpap") {
|
} else if (code=="cpap") {
|
||||||
@ -1122,6 +1132,9 @@ QString Daily::getSessionInformation(Day * day)
|
|||||||
.arg(fd.date().toString(Qt::SystemLocaleShortDate))
|
.arg(fd.date().toString(Qt::SystemLocaleShortDate))
|
||||||
.arg(fd.toString("HH:mm:ss"))
|
.arg(fd.toString("HH:mm:ss"))
|
||||||
.arg(ld.toString("HH:mm:ss"));
|
.arg(ld.toString("HH:mm:ss"));
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
#ifdef SESSION_DEBUG
|
#ifdef SESSION_DEBUG
|
||||||
for (int i=0; i< sess->session_files.size(); ++i) {
|
for (int i=0; i< sess->session_files.size(); ++i) {
|
||||||
html+=QString("<tr><td colspan=5 align=center>%1</td></tr>").arg(sess->session_files[i].section("/",-1));
|
html+=QString("<tr><td colspan=5 align=center>%1</td></tr>").arg(sess->session_files[i].section("/",-1));
|
||||||
|
@ -264,6 +264,8 @@ private slots:
|
|||||||
void on_weightSpinBox_valueChanged(double arg1);
|
void on_weightSpinBox_valueChanged(double arg1);
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
bool rejectToggleSessionEnable(Session * sess);
|
||||||
|
|
||||||
void doToggleSession(Session *);
|
void doToggleSession(Session *);
|
||||||
|
|
||||||
void on_eventsCombo_activated(int index);
|
void on_eventsCombo_activated(int index);
|
||||||
|
Loading…
Reference in New Issue
Block a user