mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 02:30:44 +00:00
Remove machine from day's machinelist when last session gone, fixing rxchanges bug
This commit is contained in:
parent
3558b69065
commit
959e5e5d13
@ -1424,8 +1424,21 @@ qint64 Day::last(MachineType type)
|
||||
|
||||
bool Day::removeSession(Session *sess)
|
||||
{
|
||||
return sessions.removeAll(sess) > 0;
|
||||
MachineType mt = sess->type();
|
||||
bool b = sessions.removeAll(sess) > 0;
|
||||
if (!searchMachine(mt)) {
|
||||
machines.remove(mt);
|
||||
}
|
||||
return b;
|
||||
}
|
||||
bool Day::searchMachine(MachineType mt) {
|
||||
for (int i=0; i < sessions.size(); ++i) {
|
||||
if (sessions.at(i)->type() == mt)
|
||||
return true;
|
||||
}
|
||||
return false;
|
||||
}
|
||||
|
||||
|
||||
QString Day::getCPAPMode()
|
||||
{
|
||||
|
@ -93,6 +93,8 @@ class Day
|
||||
|
||||
inline bool hasMachine(MachineType mt) const { return machines.contains(mt); }
|
||||
|
||||
bool searchMachine(MachineType mt);
|
||||
|
||||
//! \brief Returns the Average of all Sessions setting 'code' for this day
|
||||
EventDataType settings_avg(ChannelID code);
|
||||
|
||||
|
@ -22,8 +22,6 @@ class MD300W1Loader : public SerialOximeter
|
||||
{
|
||||
Q_OBJECT
|
||||
public:
|
||||
|
||||
|
||||
MD300W1Loader();
|
||||
virtual ~MD300W1Loader();
|
||||
|
||||
|
@ -102,6 +102,7 @@ public:
|
||||
delete event;
|
||||
for (int i=0;i < waveforms.size(); ++i) {delete waveforms.at(i); }
|
||||
}
|
||||
|
||||
virtual void run();
|
||||
|
||||
PRS1DataChunk * compliance;
|
||||
|
@ -23,6 +23,7 @@ class SomnoposeLoader : public MachineLoader
|
||||
public:
|
||||
SomnoposeLoader();
|
||||
virtual ~SomnoposeLoader();
|
||||
|
||||
virtual bool Detect(const QString &path) { Q_UNUSED(path); return false; } // bypass autoscanner
|
||||
|
||||
virtual int Open(QString path);
|
||||
|
@ -23,6 +23,7 @@ class ZEOLoader : public MachineLoader
|
||||
public:
|
||||
ZEOLoader();
|
||||
virtual ~ZEOLoader();
|
||||
|
||||
virtual bool Detect(const QString &path) { Q_UNUSED(path); return false; } // bypass autoscanner
|
||||
|
||||
virtual int Open(QString path);
|
||||
|
@ -84,7 +84,6 @@ Machine * MachineLoader::lookupMachine(QString serial)
|
||||
return nullptr;
|
||||
}
|
||||
|
||||
|
||||
Machine * MachineLoader::CreateMachine(MachineInfo info, MachineID id)
|
||||
{
|
||||
Q_ASSERT(p_profile != nullptr);
|
||||
|
@ -14,10 +14,9 @@
|
||||
|
||||
#include "profiles.h"
|
||||
#include "machine.h"
|
||||
|
||||
|
||||
#include "zlib.h"
|
||||
|
||||
|
||||
class MachineLoader;
|
||||
enum DeviceStatus { NEUTRAL, IMPORTING, LIVE, DETECTING };
|
||||
|
||||
|
@ -32,6 +32,7 @@
|
||||
#include "newprofile.h"
|
||||
#include "translation.h"
|
||||
#include "common_gui.h"
|
||||
#include "SleepLib/machine_loader.h"
|
||||
|
||||
|
||||
// Gah! I must add the real darn plugin system one day.
|
||||
@ -46,6 +47,7 @@
|
||||
#include "SleepLib/loader_plugins/icon_loader.h"
|
||||
#include "SleepLib/loader_plugins/weinmann_loader.h"
|
||||
|
||||
|
||||
#ifdef Q_WS_X11
|
||||
#include <X11/Xlib.h>
|
||||
#endif
|
||||
|
@ -2142,18 +2142,22 @@ void MainWindow::purgeMachine(Machine * mach)
|
||||
daily->clearLastDay(); // otherwise Daily will crash
|
||||
daily->ReloadGraphs();
|
||||
}
|
||||
GenerateStatistics();
|
||||
//GenerateStatistics();
|
||||
return;
|
||||
}
|
||||
|
||||
if (overview) overview->ReloadGraphs();
|
||||
QFile rxcache(p_profile->Get("{" + STR_GEN_DataFolder + "}/RXChanges.cache" ));
|
||||
rxcache.remove();
|
||||
|
||||
if (daily) {
|
||||
daily->clearLastDay(); // otherwise Daily will crash
|
||||
daily->ReloadGraphs();
|
||||
}
|
||||
GenerateStatistics();
|
||||
QApplication::processEvents();
|
||||
|
||||
|
||||
// GenerateStatistics();
|
||||
}
|
||||
|
||||
void MainWindow::keyPressEvent(QKeyEvent *event)
|
||||
|
Loading…
Reference in New Issue
Block a user