diff --git a/daily.cpp b/daily.cpp
index f2a9d8de..580e082b 100644
--- a/daily.cpp
+++ b/daily.cpp
@@ -448,17 +448,24 @@ void Daily::UpdateCalendarDay(QDate date)
QTextCharFormat cpapcol;
QTextCharFormat normal;
QTextCharFormat oxiday;
+ QTextCharFormat jourday;
+ bold.setForeground(QBrush(QColor("dark blue"), Qt::SolidPattern));
bold.setFontWeight(QFont::Bold);
cpapcol.setForeground(QBrush(Qt::blue, Qt::SolidPattern));
cpapcol.setFontWeight(QFont::Bold);
oxiday.setForeground(QBrush(Qt::red, Qt::SolidPattern));
oxiday.setFontWeight(QFont::Bold);
+ jourday.setForeground(QBrush(QColor("black"), Qt::SolidPattern));
+ jourday.setFontWeight(QFont::Bold);
+
bool hascpap=PROFILE.GetDay(date,MT_CPAP)!=NULL;
bool hasoxi=PROFILE.GetDay(date,MT_OXIMETER)!=NULL;
-
+ bool hasjournal=PROFILE.GetDay(date,MT_JOURNAL)!=NULL;
if (hascpap) {
if (hasoxi) {
ui->calendar->setDateTextFormat(date,oxiday);
+ } else if (hasjournal) {
+ ui->calendar->setDateTextFormat(date,jourday);
} else {
ui->calendar->setDateTextFormat(date,cpapcol);
}
@@ -827,6 +834,7 @@ void Daily::Load(QDate date)
ui->weightSpinBox->setValue(0);
ui->ouncesSpinBox->setValue(0);
ui->ZombieMeter->setValue(50);
+ BookmarksChanged=false;
Session *journal=GetJournalSession(date);
if (journal) {
bool ok;
@@ -938,7 +946,7 @@ void Daily::Unload(QDate date)
journal->SetChanged(true);
}
bool ok;
- if (ui->bookmarkTable->rowCount()>0) {
+ if (BookmarksChanged) {
QVariantList start;
QVariantList end;
QStringList notes;
@@ -975,7 +983,7 @@ void Daily::Unload(QDate date)
journal->settings["Weight"]=kg;
journal->SetChanged(true);
}
- if (ui->bookmarkTable->rowCount()>0) {
+ if (BookmarksChanged) {
QVariantList start;
QVariantList end;
QStringList notes;
@@ -1326,6 +1334,7 @@ void Daily::on_addBookmarkButton_clicked()
tw->setData(Qt::UserRole,st);
tw->setData(Qt::UserRole+1,et);
+ BookmarksChanged=true;
//ui->bookmarkTable->setItem(row,2,new QTableWidgetItem(QString::number(st)));
//ui->bookmarkTable->setItem(row,3,new QTableWidgetItem(QString::number(et)));
}
@@ -1335,6 +1344,7 @@ void Daily::on_removeBookmarkButton_clicked()
int row=ui->bookmarkTable->currentRow();
if (row>=0) {
ui->bookmarkTable->removeRow(row);
+ BookmarksChanged=true;
}
}
@@ -1354,3 +1364,8 @@ void Daily::on_ZombieMeter_actionTriggered(int action)
//s->summary[JOURNAL_Energy]=position;
//s->SetChanged(true);
//}
+void Daily::on_bookmarkTable_itemChanged(QTableWidgetItem *item)
+{
+ Q_UNUSED(item);
+ BookmarksChanged=true;
+}
diff --git a/daily.h b/daily.h
index 4f401c65..f1e4cb1f 100644
--- a/daily.h
+++ b/daily.h
@@ -86,6 +86,8 @@ private slots:
void on_bookmarkTable_itemClicked(QTableWidgetItem *item);
+ void on_bookmarkTable_itemChanged(QTableWidgetItem *item);
+
protected:
private:
@@ -122,9 +124,7 @@ private:
MyScrollBar *scrollbar;
QHBoxLayout *layout;
bool ZombieMeterMoved;
+ bool BookmarksChanged;
};
#endif // DAILY_H
-
-
-
diff --git a/daily.ui b/daily.ui
index 27760d36..228f6f01 100644
--- a/daily.ui
+++ b/daily.ui
@@ -248,7 +248,7 @@
- 2
+ 3
true
diff --git a/overview.cpp b/overview.cpp
index 9ff79b06..54f5f342 100644
--- a/overview.cpp
+++ b/overview.cpp
@@ -112,14 +112,14 @@ Overview::Overview(QWidget *parent,gGraphView * shared) :
WEIGHT=createGraph("Weight");
ZOMBIE=createGraph("Zombie");
- weight=new SummaryChart("Pulse Rate",GT_LINE);
+ weight=new SummaryChart("Weight",GT_LINE);
weight->setMachineType(MT_JOURNAL);
weight->addSlice("Weight",QColor("black"),ST_SETAVG);
WEIGHT->AddLayer(weight);
zombie=new SummaryChart("Zombie Meter",GT_LINE);
zombie->setMachineType(MT_JOURNAL);
- zombie->addSlice("ZombieMeter",QColor("dark gray"),ST_SETAVG);
+ zombie->addSlice("ZombieMeter",QColor("dark red"),ST_SETAVG);
ZOMBIE->AddLayer(zombie);
pulse=new SummaryChart("Pulse Rate",GT_LINE);