Fix zorder error messages, more session hiding related stuff

This commit is contained in:
Mark Watkins 2011-12-29 00:03:09 +10:00
parent bd9213bc1c
commit da952deba0
7 changed files with 75 additions and 22 deletions

View File

@ -271,6 +271,18 @@ qint64 Day::total_time()
} }
return d_totaltime; return d_totaltime;
} }
bool Day::hasEnabledSessions()
{
bool b=false;
for (QVector<Session *>::iterator s=begin();s!=end();s++) {
if ((*s)->enabled()) {
b=true;
break;
}
}
return b;
}
/*EventDataType Day::percentile(ChannelID code,double percent) /*EventDataType Day::percentile(ChannelID code,double percent)
{ {
double val=0; double val=0;

View File

@ -107,6 +107,9 @@ public:
//! \brief Returns the total time in milliseconds for this day //! \brief Returns the total time in milliseconds for this day
qint64 total_time(); 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 //! \brief Return the total time in decimal hours for this day
EventDataType hours() { return double(total_time())/3600000.0; } EventDataType hours() { return double(total_time())/3600000.0; }

View File

@ -404,7 +404,7 @@ void Daily::Link_clicked(const QUrl &url)
if (day) { if (day) {
Session *sess=day->machine->sessionlist[sid]; Session *sess=day->machine->sessionlist[sid];
if (sess) { if (sess && sess->enabled()) {
GraphView->SetXBounds(sess->first(),sess->last()); 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; int gr;
if (qAbs(cpap->first() - oxi->first())>30000) { if (qAbs(cpap->first() - oxi->first())>30000) {
@ -911,7 +911,7 @@ void Daily::Load(QDate date)
html+="<tr><td colspan=5>&nbsp;</td></tr>\n"; html+="<tr><td colspan=5>&nbsp;</td></tr>\n";
} }
if (oxi) { if (oxi && oxi->hasEnabledSessions()) {
html+="<tr><td colspan=5 align=center>&nbsp;</td></tr>"; html+="<tr><td colspan=5 align=center>&nbsp;</td></tr>";
html+=QString("<tr><td colspan=5 align=center><b>%1</b></td></tr>\n").arg(tr("Oximeter Information")); html+=QString("<tr><td colspan=5 align=center><b>%1</b></td></tr>\n").arg(tr("Oximeter Information"));
html+="<tr><td colspan=5 align=center><hr/></td></tr>"; html+="<tr><td colspan=5 align=center><hr/></td></tr>";

View File

@ -158,6 +158,7 @@ MainWindow::MainWindow(QWidget *parent) :
"background: #9090ee;" "background: #9090ee;"
"color: white; }" "color: white; }"
); );
//"font-weight: bold; " //"font-weight: bold; "
//"border-top-left-radius: 8px;" //"border-top-left-radius: 8px;"
//"border-top-right-radius: 8px;" //"border-top-right-radius: 8px;"
@ -1074,15 +1075,15 @@ void MainWindow::on_summaryButton_clicked()
} }
void MainWindow::updateFavourites() void MainWindow::updateFavourites()
{ {
ui->favouritesList->blockSignals(true); QDate date=PROFILE.LastDay(MT_JOURNAL);
ui->favouritesList->clear();
QDate date=PROFILE.LastGoodDay();
if (!date.isValid()) if (!date.isValid())
return; return;
ui->favouritesList->blockSignals(true);
ui->favouritesList->clear();
do { do {
Day * journal=PROFILE.GetGoodDay(date,MT_JOURNAL); Day * journal=PROFILE.GetDay(date,MT_JOURNAL);
if (journal) { if (journal) {
if (journal->size()>0) { if (journal->size()>0) {
Session *sess=(*journal)[0]; Session *sess=(*journal)[0];
@ -1107,7 +1108,7 @@ void MainWindow::updateFavourites()
} }
date=date.addDays(-1); date=date.addDays(-1);
} while (date>=PROFILE.FirstGoodDay()); } while (date>=PROFILE.FirstDay(MT_JOURNAL));
ui->favouritesList->blockSignals(false); 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; if (!item) return;
QDate date=item->data(Qt::UserRole).toDate(); QDate date=item->data(Qt::UserRole).toDate();
@ -2163,7 +2164,7 @@ void MainWindow::on_favouritesList_itemClicked(QListWidgetItem *item)
daily->graphView()->redraw(); daily->graphView()->redraw();
} }
} }
} }*/
void MainWindow::on_webView_statusBarMessage(const QString &text) void MainWindow::on_webView_statusBarMessage(const QString &text)
{ {

View File

@ -86,7 +86,7 @@ public:
void CheckForUpdates(); void CheckForUpdates();
//! \brief Refresh the statistics page //! \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()); /*! \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_itemSelectionChanged();
void on_favouritesList_itemClicked(QListWidgetItem *item); //void on_favouritesList_itemClicked(QListWidgetItem *item);
void on_webView_statusBarMessage(const QString &text); void on_webView_statusBarMessage(const QString &text);

View File

@ -405,7 +405,7 @@
<number>1</number> <number>1</number>
</property> </property>
<property name="currentIndex"> <property name="currentIndex">
<number>0</number> <number>1</number>
</property> </property>
<property name="tabSpacing"> <property name="tabSpacing">
<number>0</number> <number>0</number>
@ -737,13 +737,6 @@
</spacer> </spacer>
</item> </item>
</layout> </layout>
<zorder>dailyButton</zorder>
<zorder>overviewButton</zorder>
<zorder>verticalSpacer</zorder>
<zorder>oximetryButton</zorder>
<zorder>summaryButton_2</zorder>
<zorder>importButton</zorder>
<zorder>helpButton</zorder>
</widget> </widget>
<widget class="QWidget" name="page_2"> <widget class="QWidget" name="page_2">
<property name="geometry"> <property name="geometry">
@ -785,6 +778,15 @@
</color> </color>
</brush> </brush>
</colorrole> </colorrole>
<colorrole role="AlternateBase">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>85</red>
<green>170</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</active> </active>
<inactive> <inactive>
<colorrole role="Base"> <colorrole role="Base">
@ -796,6 +798,15 @@
</color> </color>
</brush> </brush>
</colorrole> </colorrole>
<colorrole role="AlternateBase">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>85</red>
<green>170</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</inactive> </inactive>
<disabled> <disabled>
<colorrole role="Base"> <colorrole role="Base">
@ -807,6 +818,15 @@
</color> </color>
</brush> </brush>
</colorrole> </colorrole>
<colorrole role="AlternateBase">
<brush brushstyle="SolidPattern">
<color alpha="255">
<red>85</red>
<green>170</green>
<blue>255</blue>
</color>
</brush>
</colorrole>
</disabled> </disabled>
</palette> </palette>
</property> </property>
@ -815,6 +835,24 @@
<pointsize>10</pointsize> <pointsize>10</pointsize>
</font> </font>
</property> </property>
<property name="mouseTracking">
<bool>true</bool>
</property>
<property name="editTriggers">
<set>QAbstractItemView::NoEditTriggers</set>
</property>
<property name="alternatingRowColors">
<bool>true</bool>
</property>
<property name="selectionMode">
<enum>QAbstractItemView::ExtendedSelection</enum>
</property>
<property name="selectionBehavior">
<enum>QAbstractItemView::SelectRows</enum>
</property>
<property name="selectionRectVisible">
<bool>false</bool>
</property>
</widget> </widget>
</item> </item>
</layout> </layout>

View File

@ -28,7 +28,6 @@
<verstretch>0</verstretch> <verstretch>0</verstretch>
</sizepolicy> </sizepolicy>
</property> </property>
<zorder>frame</zorder>
</widget> </widget>
</item> </item>
<item> <item>