From da952deba0c3eb60b14ff0bf11d55c35fe30e590 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 29 Dec 2011 00:03:09 +1000 Subject: [PATCH] Fix zorder error messages, more session hiding related stuff --- SleepLib/day.cpp | 12 +++++++++++ SleepLib/day.h | 3 +++ daily.cpp | 6 +++--- mainwindow.cpp | 17 ++++++++------- mainwindow.h | 4 ++-- mainwindow.ui | 54 +++++++++++++++++++++++++++++++++++++++++------- oximetry.ui | 1 - 7 files changed, 75 insertions(+), 22 deletions(-) diff --git a/SleepLib/day.cpp b/SleepLib/day.cpp index 3b5eccc8..fa7a2ea2 100644 --- a/SleepLib/day.cpp +++ b/SleepLib/day.cpp @@ -271,6 +271,18 @@ qint64 Day::total_time() } return d_totaltime; } +bool Day::hasEnabledSessions() +{ + bool b=false; + for (QVector::iterator s=begin();s!=end();s++) { + if ((*s)->enabled()) { + b=true; + break; + } + } + return b; +} + /*EventDataType Day::percentile(ChannelID code,double percent) { double val=0; diff --git a/SleepLib/day.h b/SleepLib/day.h index 036840bb..62402df0 100644 --- a/SleepLib/day.h +++ b/SleepLib/day.h @@ -107,6 +107,9 @@ public: //! \brief Returns the total time in milliseconds for this day qint64 total_time(); + //! \brief Returns true if this day has enabled sessions + bool hasEnabledSessions(); + //! \brief Return the total time in decimal hours for this day EventDataType hours() { return double(total_time())/3600000.0; } diff --git a/daily.cpp b/daily.cpp index 76cd0d88..89523211 100644 --- a/daily.cpp +++ b/daily.cpp @@ -404,7 +404,7 @@ void Daily::Link_clicked(const QUrl &url) if (day) { Session *sess=day->machine->sessionlist[sid]; - if (sess) { + if (sess && sess->enabled()) { GraphView->SetXBounds(sess->first(),sess->last()); } } @@ -629,7 +629,7 @@ void Daily::Load(QDate date) } } - if (cpap && oxi) { + if ((cpap && oxi) && oxi->hasEnabledSessions()) { int gr; if (qAbs(cpap->first() - oxi->first())>30000) { @@ -911,7 +911,7 @@ void Daily::Load(QDate date) html+=" \n"; } - if (oxi) { + if (oxi && oxi->hasEnabledSessions()) { html+=" "; html+=QString("%1\n").arg(tr("Oximeter Information")); html+="
"; diff --git a/mainwindow.cpp b/mainwindow.cpp index 77cb4713..e80a121f 100644 --- a/mainwindow.cpp +++ b/mainwindow.cpp @@ -158,6 +158,7 @@ MainWindow::MainWindow(QWidget *parent) : "background: #9090ee;" "color: white; }" ); + //"font-weight: bold; " //"border-top-left-radius: 8px;" //"border-top-right-radius: 8px;" @@ -1074,15 +1075,15 @@ void MainWindow::on_summaryButton_clicked() } void MainWindow::updateFavourites() { - ui->favouritesList->blockSignals(true); - ui->favouritesList->clear(); - - QDate date=PROFILE.LastGoodDay(); + QDate date=PROFILE.LastDay(MT_JOURNAL); if (!date.isValid()) return; + ui->favouritesList->blockSignals(true); + ui->favouritesList->clear(); + do { - Day * journal=PROFILE.GetGoodDay(date,MT_JOURNAL); + Day * journal=PROFILE.GetDay(date,MT_JOURNAL); if (journal) { if (journal->size()>0) { Session *sess=(*journal)[0]; @@ -1107,7 +1108,7 @@ void MainWindow::updateFavourites() } date=date.addDays(-1); - } while (date>=PROFILE.FirstGoodDay()); + } while (date>=PROFILE.FirstDay(MT_JOURNAL)); ui->favouritesList->blockSignals(false); } @@ -2152,7 +2153,7 @@ void MainWindow::on_favouritesList_itemSelectionChanged() } } -void MainWindow::on_favouritesList_itemClicked(QListWidgetItem *item) +/*void MainWindow::on_favouritesList_itemClicked(QListWidgetItem *item) { if (!item) return; QDate date=item->data(Qt::UserRole).toDate(); @@ -2163,7 +2164,7 @@ void MainWindow::on_favouritesList_itemClicked(QListWidgetItem *item) daily->graphView()->redraw(); } } -} +}*/ void MainWindow::on_webView_statusBarMessage(const QString &text) { diff --git a/mainwindow.h b/mainwindow.h index 261c7133..a080342c 100644 --- a/mainwindow.h +++ b/mainwindow.h @@ -86,7 +86,7 @@ public: void CheckForUpdates(); //! \brief Refresh the statistics page - void refreshStatistics() { on_summaryButton_clicked(); updateFavourites(); } + void refreshStatistics() { on_summaryButton_clicked(); } /*! \fn Notify(QString s,int ms=5000, QString title="SleepyHead v"+VersionString()); @@ -265,7 +265,7 @@ private slots: void on_favouritesList_itemSelectionChanged(); - void on_favouritesList_itemClicked(QListWidgetItem *item); + //void on_favouritesList_itemClicked(QListWidgetItem *item); void on_webView_statusBarMessage(const QString &text); diff --git a/mainwindow.ui b/mainwindow.ui index 1f39efb0..8f15161e 100644 --- a/mainwindow.ui +++ b/mainwindow.ui @@ -405,7 +405,7 @@ 1 - 0 + 1 0 @@ -737,13 +737,6 @@ - dailyButton - overviewButton - verticalSpacer - oximetryButton - summaryButton_2 - importButton - helpButton @@ -785,6 +778,15 @@ + + + + 85 + 170 + 255 + + + @@ -796,6 +798,15 @@ + + + + 85 + 170 + 255 + + + @@ -807,6 +818,15 @@ + + + + 85 + 170 + 255 + + + @@ -815,6 +835,24 @@ 10 + + true + + + QAbstractItemView::NoEditTriggers + + + true + + + QAbstractItemView::ExtendedSelection + + + QAbstractItemView::SelectRows + + + false + diff --git a/oximetry.ui b/oximetry.ui index 54b03ca5..5ae5e592 100644 --- a/oximetry.ui +++ b/oximetry.ui @@ -28,7 +28,6 @@ 0 - frame