mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Implement clinican mode
This commit is contained in:
parent
0a40906c22
commit
c82ace546f
@ -36,6 +36,7 @@
|
||||
#include "profiles.h"
|
||||
#include <algorithm>
|
||||
#include "SleepLib/schema.h"
|
||||
//#include "SleepLib/session.h"
|
||||
#include "SleepLib/day.h"
|
||||
#include "mainwindow.h"
|
||||
|
||||
@ -164,7 +165,7 @@ bool Machine::saveSessionInfo()
|
||||
Session * sess = s.value();
|
||||
if (sess->s_first != 0) {
|
||||
out << (quint32) sess->session();
|
||||
out << (bool)(sess->enabled());
|
||||
out << (quint8)(sess->enabled(true));
|
||||
} else {
|
||||
qWarning() << "Machine::SaveSessionInfo discarding session" << sess->s_session
|
||||
<< "["+QDateTime::fromTime_t(sess->s_session).toString("MMM dd, yyyy hh:mm:ss")+"]"
|
||||
@ -197,9 +198,11 @@ bool Machine::loadSessionInfo()
|
||||
Session * sess = s.value();
|
||||
QHash<ChannelID, QVariant>::iterator it = sess->settings.find(SESSION_ENABLED);
|
||||
|
||||
bool b = true;
|
||||
quint8 b = true;
|
||||
b &= 0x1;
|
||||
if (it != sess->settings.end()) {
|
||||
b = it.value().toBool();
|
||||
} else {
|
||||
}
|
||||
sess->setEnabled(b); // Extract from session settings and save..
|
||||
}
|
||||
@ -233,11 +236,12 @@ bool Machine::loadSessionInfo()
|
||||
in >> size;
|
||||
|
||||
quint32 sid;
|
||||
bool b;
|
||||
quint8 b;
|
||||
|
||||
for (int i=0; i< size; ++i) {
|
||||
in >> sid;
|
||||
in >> b;
|
||||
b &= 0x1;
|
||||
|
||||
s = sessionlist.find(sid);
|
||||
|
||||
@ -1084,7 +1088,7 @@ bool Machine::SaveSummaryCache()
|
||||
el.setAttribute("id", (quint32)sess->session());
|
||||
el.setAttribute("first", sess->realFirst());
|
||||
el.setAttribute("last", sess->realLast());
|
||||
el.setAttribute("enabled", sess->enabled() ? "1" : "0");
|
||||
el.setAttribute("enabled", sess->enabled(true) ? "1" : "0");
|
||||
el.setAttribute("events", sess->summaryOnly() ? "0" : "1");
|
||||
|
||||
QHash<ChannelID, QVector<EventList *> >::iterator ev;
|
||||
|
@ -91,6 +91,12 @@ void Session::TrashEvents()
|
||||
eventlist.squeeze();
|
||||
}
|
||||
|
||||
bool Session::enabled(bool realValues) const
|
||||
{
|
||||
if (!AppSetting->allowDisableSessions() && !realValues) return true;
|
||||
return s_enabled;
|
||||
}
|
||||
|
||||
void Session::setEnabled(bool b)
|
||||
{
|
||||
s_enabled = b;
|
||||
|
@ -113,7 +113,7 @@ class Session
|
||||
}
|
||||
|
||||
//! \brief Returns whether or not session is being used.
|
||||
inline bool enabled() const { return s_enabled; }
|
||||
bool enabled(bool realValues=false) const;
|
||||
|
||||
//! \brief Sets whether or not session is being used.
|
||||
void setEnabled(bool b);
|
||||
@ -417,15 +417,6 @@ class Session
|
||||
//! \brief Completely purges Session from memory and disk.
|
||||
bool Destroy();
|
||||
|
||||
void wipeSummary() {
|
||||
s_first = s_last = 0;
|
||||
s_enabled = true;
|
||||
m_cph.clear();
|
||||
m_sum.clear();
|
||||
m_cnt.clear();
|
||||
}
|
||||
|
||||
|
||||
QString eventFile() const;
|
||||
|
||||
//! \brief Returns DeviceType for this session
|
||||
@ -456,7 +447,7 @@ protected:
|
||||
|
||||
bool s_summary_loaded;
|
||||
bool s_events_loaded;
|
||||
bool s_enabled;
|
||||
quint8 s_enabled;
|
||||
|
||||
// for debugging
|
||||
bool destroyed;
|
||||
|
@ -1413,6 +1413,8 @@ void MainWindow::on_action_Preferences_triggered()
|
||||
if (profileSelector)
|
||||
profileSelector->updateProfileList();
|
||||
|
||||
GenerateStatistics();
|
||||
|
||||
// These attempts to update calendar after a change to application font do NOT work, and I can find no QT documentation suggesting
|
||||
// that changing the font after Calendar is created is even possible.
|
||||
// qDebug() << "application font family set to" << QApplication::font().family() << "and font" << QApplication::font();
|
||||
|
Loading…
Reference in New Issue
Block a user