diff --git a/SleepLib/day.cpp b/SleepLib/day.cpp index 60e6e295..f11d0fa8 100644 --- a/SleepLib/day.cpp +++ b/SleepLib/day.cpp @@ -345,8 +345,9 @@ bool Day::settingExists(ChannelID id) } bool Day::channelExists(ChannelID id) { - if (machine->hasChannel(id)) return true; - return false; + return channelHasData(id); + //if (machine->hasChannel(id)) return true; + //return false; } bool Day::channelHasData(ChannelID id) { diff --git a/SleepLib/machine.cpp b/SleepLib/machine.cpp index 32b45144..f01e3f8e 100644 --- a/SleepLib/machine.cpp +++ b/SleepLib/machine.cpp @@ -233,7 +233,7 @@ bool Machine::Load() if (!dir.exists() || !dir.isReadable()) return false; - QString fn=path+"/channels.dat"; +/* QString fn=path+"/channels.dat"; QFile cf(fn); cf.open(QIODevice::ReadOnly); QDataStream in(&cf); @@ -255,8 +255,7 @@ bool Machine::Load() qDebug() << "Machine Channel file format is wrong" << fn; } in >> m_channels; - cf.close(); - + cf.close(); */ dir.setFilter(QDir::Files | QDir::Hidden | QDir::NoSymLinks); dir.setSorting(QDir::Name); @@ -322,7 +321,7 @@ bool Machine::Save() dir.mkdir(path); } - QString fn=path+"/channels.dat"; + /*QString fn=path+"/channels.dat"; QFile cf(fn); if (!cf.open(QIODevice::WriteOnly)) { qDebug() << "Couldn't write.. Permissions? Hard disk crashing?"; @@ -337,7 +336,7 @@ bool Machine::Save() out << (quint32)m_id;// Machine ID out << m_channels; - cf.close(); + cf.close(); */ // Calculate size for progress bar diff --git a/SleepLib/machine.h b/SleepLib/machine.h index ad9e14bc..4985be9f 100644 --- a/SleepLib/machine.h +++ b/SleepLib/machine.h @@ -91,8 +91,8 @@ public: const MachineID & id() { return m_id; } const QDate & FirstDay() { return firstday; } const QDate & LastDay() { return lastday; } - bool hasChannel(QString id) { return m_channels.contains(id) && m_channels[id]; } - void registerChannel(QString id,bool b=true) { m_channels[id]=b; } + //bool hasChannel(QString id) { return m_channels.contains(id) && m_channels[id]; } + //void registerChannel(QString id,bool b=true) { m_channels[id]=b; } protected: QDate firstday,lastday; @@ -104,7 +104,7 @@ protected: Profile *profile; bool changed; bool firstsession; - QHash m_channels; + //QHash m_channels; }; class CPAP:public Machine diff --git a/SleepLib/session.cpp b/SleepLib/session.cpp index 76385c60..7c0ee34f 100644 --- a/SleepLib/session.cpp +++ b/SleepLib/session.cpp @@ -918,6 +918,6 @@ EventList * Session::AddEventList(QString chan, EventListType et,EventDataType g } EventList * el=new EventList(et,gain,offset,min,max,rate,second_field); eventlist[chan].push_back(el); - s_machine->registerChannel(chan); + //s_machine->registerChannel(chan); return el; } diff --git a/daily.cpp b/daily.cpp index dc69926c..cb68b8ce 100644 --- a/daily.cpp +++ b/daily.cpp @@ -267,7 +267,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw) ui->webView->settings()->setFontSize(QWebSettings::DefaultFontSize,QApplication::font().pointSize()); ui->webView->page()->setLinkDelegationPolicy(QWebPage::DelegateAllLinks); - connect(ui->webView,SIGNAL(linkClicked(QUrl)),this,SLOT(on_Link_clicked(QUrl))); + connect(ui->webView,SIGNAL(linkClicked(QUrl)),this,SLOT(Link_clicked(QUrl))); if (!PROFILE.Exists("EventViewSize")) PROFILE["EventViewSize"]=4; int ews=PROFILE["EventViewSize"].toInt(); @@ -285,7 +285,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw) GraphToggles[title]=btn; btn->setSizePolicy(QSizePolicy::Fixed,QSizePolicy::Minimum); ui->graphToggleArea->addWidget(btn); - connect(btn,SIGNAL(toggled(bool)),this,SLOT(on_graphtogglebutton_toggled(bool))); + connect(btn,SIGNAL(toggled(bool)),this,SLOT(graphtogglebutton_toggled(bool))); } ui->graphToggleArea->addSpacerItem(new QSpacerItem(0,0,QSizePolicy::Expanding)); @@ -308,7 +308,7 @@ Daily::~Daily() { GraphView->SaveSettings("Daily"); - disconnect(ui->webView,SIGNAL(linkClicked(QUrl)),this,SLOT(on_Link_clicked(QUrl))); + disconnect(ui->webView,SIGNAL(linkClicked(QUrl)),this,SLOT(Link_clicked(QUrl))); // Save any last minute changes.. if (previous_date.isValid()) Unload(previous_date); @@ -316,7 +316,7 @@ Daily::~Daily() // delete splitter; delete ui; } -void Daily::on_Link_clicked(const QUrl &url) +void Daily::Link_clicked(const QUrl &url) { QString code=url.toString().section("=",0,0).toLower(); QString data=url.toString().section("=",1); @@ -327,13 +327,15 @@ void Daily::on_Link_clicked(const QUrl &url) } else if (code=="oxi") { day=PROFILE.GetDay(previous_date,MT_OXIMETER); } else if (code=="event") { - QList list=ui->treeWidget->findItems(data,Qt::MatchContains); + QList list=ui->treeWidget->findItems(schema::channel[data].description(),Qt::MatchContains); if (list.size()>0) { ui->treeWidget->collapseAll(); ui->treeWidget->expandItem(list.at(0)); QTreeWidgetItem *wi=list.at(0)->child(0); ui->treeWidget->setCurrentItem(wi); ui->tabWidget->setCurrentIndex(1); + } else { + mainwin->Notify("No "+schema::channel[data].description()+" events are recorded this day",1500); } } else if (code=="graph") { qDebug() << "Select graph " << data; @@ -538,8 +540,9 @@ void Daily::ShowHideGraphs() //splitter->update(); RedrawGraphs(); */ } -void Daily::on_graphtogglebutton_toggled(bool b) +void Daily::graphtogglebutton_toggled(bool b) { + Q_UNUSED(b) for (int i=0;isize();i++) { QString title=(*GraphView)[i]->title(); (*GraphView)[i]->setVisible(GraphToggles[title]->isChecked()); @@ -562,6 +565,21 @@ void Daily::Load(QDate date) } } } + + if (cpap && oxi) { + qint64 len=qAbs(cpap->first() - oxi->first()); + if (len>30000) { + GraphView->findGraph("Pulse")->setGroup(1); + GraphView->findGraph("SpO2")->setGroup(1); + GraphView->findGraph("Plethy")->setGroup(1); + mainwin->Notify("Oximetry data exists for this day, however it's timestamps are too different, so the Graphs will not be linked.",3000); + } else { + mainwin->Notify("Oximetry & CPAP graphs are linked for this day",2000); + GraphView->findGraph("Pulse")->setGroup(0); + GraphView->findGraph("SpO2")->setGroup(0); + GraphView->findGraph("Plethy")->setGroup(0); + } + } lastcpapday=cpap; QString html="