[Refactor Journal Interface] in daily.cpp for Import Journal Feature

This commit is contained in:
LoudSnorer 2024-03-25 15:36:42 -04:00
parent f2686b7487
commit 62e87fe0bd
2 changed files with 177 additions and 160 deletions

View File

@ -503,7 +503,6 @@ Daily::Daily(QWidget *parent,gGraphView * shared)
ui->splitter->setVisible(false); ui->splitter->setVisible(false);
#ifndef REMOVE_FITNESS #ifndef REMOVE_FITNESS
ZombieMeterMoved=false;
#else // REMOVE_FITNESS #else // REMOVE_FITNESS
// hide the parent widget to make the gridlayout invisible // hide the parent widget to make the gridlayout invisible
QWidget *myparent ; QWidget *myparent ;
@ -941,7 +940,6 @@ void Daily::on_ReloadDay()
unload_time=time.restart(); unload_time=time.restart();
//bool fadedir=previous_date < ui->calendar->selectedDate(); //bool fadedir=previous_date < ui->calendar->selectedDate();
#ifndef REMOVE_FITNESS #ifndef REMOVE_FITNESS
ZombieMeterMoved=false;
#endif #endif
Load(ui->calendar->selectedDate()); Load(ui->calendar->selectedDate());
load_time=time.restart(); load_time=time.restart();
@ -952,7 +950,6 @@ void Daily::on_ReloadDay()
ui->calendar->setFocus(Qt::ActiveWindowFocusReason); ui->calendar->setFocus(Qt::ActiveWindowFocusReason);
#ifndef REMOVE_FITNESS #ifndef REMOVE_FITNESS
ZombieMeterMoved=false;
ui->weightSpinBox->setDecimals(1); ui->weightSpinBox->setDecimals(1);
#endif #endif
this->setCursor(Qt::ArrowCursor); this->setCursor(Qt::ArrowCursor);
@ -1609,8 +1606,6 @@ void Daily::htmlLsbSectionHeader (QString&html , const QString& name,LEFT_SIDEBA
if ( (!prev) && on) { if ( (!prev) && on) {
html+="<hr/>"; html+="<hr/>";
} }
// DEBUGFC Q(checkBox) O(prev) O("==>") O(on) O(name) ;
html += QString( html += QString(
"<table cellspacing=0 cellpadding=0 border=0 width='100%'>" "<table cellspacing=0 cellpadding=0 border=0 width='100%'>"
"<tr>" "<tr>"
@ -1935,43 +1930,28 @@ void Daily::Load(QDate date)
QStringList sl; QStringList sl;
ui->bookmarkTable->setHorizontalHeaderLabels(sl); ui->bookmarkTable->setHorizontalHeaderLabels(sl);
#ifndef REMOVE_FITNESS #ifndef REMOVE_FITNESS
ui->ZombieMeter->blockSignals(true);
ui->ZombieMeter->setValue(0);
set_ZombieMeterLabel();
ui->ZombieMeter->blockSignals(false);
set_WeightUI(0);
user_height_cm = p_profile->user->height(); user_height_cm = p_profile->user->height();
set_BmiUI(); set_ZombieUI(0);
set_WeightUI(0);
#endif #endif
BookmarksChanged=false; BookmarksChanged=false;
Session *journal=GetJournalSession(date); Session *journal=GetJournalSession(date);
if (journal) { if (journal) {
if (journal->settings.contains(Journal_Notes)) if (journal->settings.contains(Journal_Notes)) {
ui->JournalNotes->setHtml(journal->settings[Journal_Notes].toString()); set_NotesUI(journal->settings[Journal_Notes].toString());
}
#ifndef REMOVE_FITNESS #ifndef REMOVE_FITNESS
bool ok; bool ok;
if (journal->settings.contains(Journal_Weight)) { if (journal->settings.contains(Journal_Weight)) {
double kg=journal->settings[Journal_Weight].toDouble(&ok); double kg=journal->settings[Journal_Weight].toDouble(&ok);
set_WeightUI(kg); set_WeightUI(kg);
set_BmiUI(journal);
} }
if (journal->settings.contains(Journal_ZombieMeter)) { if (journal->settings.contains(Journal_ZombieMeter)) {
ui->ZombieMeter->blockSignals(true);
int value = journal->settings[Journal_ZombieMeter].toInt(&ok); int value = journal->settings[Journal_ZombieMeter].toInt(&ok);
// value of 0 means there is not an entry for feelings. set_ZombieUI(value);
if (value==0) {
// set minimum to 1 zero means empty value. Should upgrade older systems.
value=1;
journal->settings[Journal_ZombieMeter] = value;
journal->SetChanged(true);
} ;
ui->ZombieMeter->setValue(value);
set_ZombieMeterLabel();
ui->ZombieMeter->blockSignals(false);
} }
#endif #endif
@ -1980,31 +1960,14 @@ void Daily::Load(QDate date)
QVariantList end=journal->settings[Bookmark_End].toList(); QVariantList end=journal->settings[Bookmark_End].toList();
QStringList notes=journal->settings[Bookmark_Notes].toStringList(); QStringList notes=journal->settings[Bookmark_Notes].toStringList();
ui->bookmarkTable->blockSignals(true); if (start.size() > 0) {
// Careful with drift here - apply to the label but not the
// Careful with drift here - apply to the label but not the // stored data (which will be saved if journal changes occur).
// stored data (which will be saved if journal changes occur). qint64 clockdrift=p_profile->cpap->clockDrift()*1000L,drift;
qint64 clockdrift=p_profile->cpap->clockDrift()*1000L,drift; Day * dday=p_profile->GetDay(previous_date,MT_CPAP);
Day * dday=p_profile->GetDay(previous_date,MT_CPAP); drift=(dday!=nullptr) ? clockdrift : 0;
drift=(dday!=nullptr) ? clockdrift : 0; set_BookmarksUI(start ,end , notes, drift);
}
bool ok;
for (int i=0;i<start.size();i++) {
qint64 st=start.at(i).toLongLong(&ok);
qint64 et=end.at(i).toLongLong(&ok);
QDateTime d=QDateTime::fromTime_t((st+drift)/1000L);
//int row=ui->bookmarkTable->rowCount();
ui->bookmarkTable->insertRow(i);
QTableWidgetItem *tw=new QTableWidgetItem(notes.at(i));
QTableWidgetItem *dw=new QTableWidgetItem(d.time().toString("HH:mm:ss"));
dw->setFlags(Qt::ItemIsSelectable|Qt::ItemIsEnabled);
ui->bookmarkTable->setItem(i,0,dw);
ui->bookmarkTable->setItem(i,1,tw);
tw->setData(Qt::UserRole,st);
tw->setData(Qt::UserRole+1,et);
} // for (int i
ui->bookmarkTable->blockSignals(false);
} // if (journal->settings.contains(Bookmark_Start)) } // if (journal->settings.contains(Bookmark_Start))
} // if (journal) } // if (journal)
} }
@ -2012,18 +1975,114 @@ void Daily::Load(QDate date)
void Daily::UnitsChanged() void Daily::UnitsChanged()
{ {
#ifndef REMOVE_FITNESS #ifndef REMOVE_FITNESS
user_height_cm = p_profile->user->height(); // Called from newprofile when height changed or when units changed metric / english
set_WeightUI(user_weight_kg); // just as if weight changed. may make bmi visible.
set_BmiUI(); on_weightSpinBox_editingFinished();
#endif #endif
} }
double Daily::calculateBMI(double weight_kg, double height_cm) {
double height = height_cm/100.0;
double bmi = weight_kg/(height * height);
return bmi;
}
QString Daily::convertHtmlToPlainText( QString html) {
QTextDocument doc;
doc.setHtml(html);
QString plain = doc.toPlainText();
return plain.simplified();
}
void Daily::set_JournalZombie(QDate& date, int value) {
Session *journal=GetJournalSession(date);
if (!journal) {
journal=CreateJournalSession(date);
}
if (value==0) {
// should delete zombie entry here. if null.
auto jit = journal->settings.find(Journal_ZombieMeter);
if (jit != journal->settings.end()) {
journal->settings.erase(jit);
}
} else {
journal->settings[Journal_ZombieMeter]=value;
}
journal->SetChanged(true);
};
void Daily::set_JournalWeightValue(QDate& date, double kg) {
Session *journal=GetJournalSession(date);
if (!journal) {
journal=CreateJournalSession(date);
}
if (journal->settings.contains(Journal_Weight)) {
QVariant old = journal->settings[Journal_Weight];
if (abs(old.toDouble() - kg) < zeroD && kg > zeroD) {
// No change to weight - skip
return ;
}
} else if (kg < zeroD) {
// Still zero - skip
return ;
}
if (kg > zeroD) {
journal->settings[Journal_Weight]=kg;
} else {
// Weight now zero - remove from journal
auto jit = journal->settings.find(Journal_Weight);
if (jit != journal->settings.end()) {
journal->settings.erase(jit);
}
}
journal->SetChanged(true);
return ;
}
void Daily::set_JournalNotesHtml(QDate& date, QString html) {
QString newHtmlPlaintText = convertHtmlToPlainText(html); // have a look as plaintext to see if really empty.
bool newHtmlHasContent = !newHtmlPlaintText.isEmpty(); // have a look as plaintext to see if really empty.
Session* journal = GetJournalSession(date,false);
QString prevHtml;
if (journal) {
auto jit = journal->settings.find(Journal_Notes);
if (jit != journal->settings.end()) {
prevHtml = journal->settings[Journal_Notes].toString();
}
}
if (!newHtmlHasContent) {
if (!journal) {
return ; //no action required
}
// removing previous notes.
auto jit = journal->settings.find(Journal_Notes);
if (jit != journal->settings.end()) {
journal->settings.erase(jit);
journal->SetChanged(true);
}
return;
} else if (html == prevHtml) {
return ; //no action required
}
if (!journal) {
journal = GetJournalSession(date,true);
if (!journal) {
journal = CreateJournalSession(date);
}
}
journal->settings[Journal_Notes] = html;
journal->SetChanged(true);
}
void Daily::clearLastDay() void Daily::clearLastDay()
{ {
lastcpapday=nullptr; lastcpapday=nullptr;
} }
void Daily::Unload(QDate date) void Daily::Unload(QDate date)
{ {
if (!date.isValid()) { if (!date.isValid()) {
@ -2035,37 +2094,9 @@ void Daily::Unload(QDate date)
} }
// Update the journal notes // Update the journal notes
set_JournalNotesHtml(date,ui->JournalNotes->toHtml() ) ;
Session *journal = GetJournalSession(date); Session *journal = GetJournalSession(date);
bool editorHasContent = !ui->JournalNotes->toPlainText().isEmpty(); // have a look as plaintext to see if really empty.
if (!journal && editorHasContent) {
journal = CreateJournalSession(date);
}
if (journal) { if (journal) {
auto jit = journal->settings.find(Journal_Notes);
if (jit != journal->settings.end()) {
// we do have a journal_notes record
if (editorHasContent) {
const QString & html = ui->JournalNotes->toHtml();
if (jit.value() != html) { // has the content of it changed?
jit.value() = html;
journal->SetChanged(true);
}
} else {
// empty, so don't need this notes setting anymore
journal->settings.erase(jit);
journal->SetChanged(true);
}
} else if (editorHasContent) {
// Create the note
journal->settings[Journal_Notes] = ui->JournalNotes->toHtml();
journal->SetChanged(true);
}
if (journal->IsChanged()) { if (journal->IsChanged()) {
journal->settings[LastUpdated] = QDateTime::currentDateTime(); journal->settings[LastUpdated] = QDateTime::currentDateTime();
journal->machine()->SaveSummaryCache(); journal->machine()->SaveSummaryCache();
@ -2183,12 +2214,13 @@ Session * Daily::CreateJournalSession(QDate date)
m->AddSession(sess, true); m->AddSession(sess, true);
return sess; return sess;
} }
Session * Daily::GetJournalSession(QDate date) // Get the first journal session
Session * Daily::GetJournalSession(QDate date , bool create) // Get the first journal session
{ {
Day *day=p_profile->GetDay(date, MT_JOURNAL); Day *day=p_profile->GetDay(date, MT_JOURNAL);
if (day) { if (day) {
Session * session = day->firstSession(MT_JOURNAL); Session * session = day->firstSession(MT_JOURNAL);
if (!session) { if (!session && create) {
session = CreateJournalSession(date); session = CreateJournalSession(date);
} }
return session; return session;
@ -2509,28 +2541,20 @@ void Daily::on_removeBookmarkButton_clicked()
} }
mainwin->updateFavourites(); mainwin->updateFavourites();
} }
#ifndef REMOVE_FITNESS
void Daily::set_BmiUI(Session* journal) { #ifndef REMOVE_FITNESS
if ((user_height_cm>0) && (user_weight_kg>0)) { void Daily::set_NotesUI(QString htmlNote) {
double height = user_height_cm/100.0; ui->JournalNotes->setHtml(htmlNote);
double bmi=user_weight_kg/(height * height); };
void Daily::set_BmiUI(double user_weight_kg) {
if ((user_height_cm>zeroD) && (user_weight_kg>zeroD)) {
double bmi = calculateBMI(user_weight_kg, user_height_cm);
ui->BMI->display(bmi); ui->BMI->display(bmi);
ui->BMI->setVisible(true); ui->BMI->setVisible(true);
ui->BMIlabel->setVisible(true); ui->BMIlabel->setVisible(true);
if (journal) {
journal->settings[Journal_BMI]=bmi;
journal->SetChanged(true);
}
} else { } else {
// BMI now zero - remove it // BMI now zero - remove it
if (journal) {
auto jit = journal->settings.find(Journal_BMI);
if (jit != journal->settings.end()) {
journal->settings.erase(jit);
}
journal->SetChanged(true);
}
// And make it invisible // And make it invisible
ui->BMI->setVisible(false); ui->BMI->setVisible(false);
ui->BMIlabel->setVisible(false); ui->BMIlabel->setVisible(false);
@ -2541,7 +2565,6 @@ void Daily::set_BmiUI(Session* journal) {
void Daily::set_WeightUI(double kg) { void Daily::set_WeightUI(double kg) {
ui->weightSpinBox->blockSignals(true); ui->weightSpinBox->blockSignals(true);
ui->weightSpinBox->setDecimals(1); ui->weightSpinBox->setDecimals(1);
user_weight_kg = kg;
if (p_profile->general->unitSystem()==US_Metric) { if (p_profile->general->unitSystem()==US_Metric) {
ui->weightSpinBox->setSuffix(STR_UNIT_KG); ui->weightSpinBox->setSuffix(STR_UNIT_KG);
} else { } else {
@ -2550,35 +2573,49 @@ void Daily::set_WeightUI(double kg) {
} }
ui->weightSpinBox->setValue(kg); ui->weightSpinBox->setValue(kg);
ui->weightSpinBox->blockSignals(false); ui->weightSpinBox->blockSignals(false);
set_BmiUI(kg);
}; };
void Daily::set_ZombieMeterLabel() void Daily::set_ZombieUI(int value)
{ {
if (ui->ZombieMeter->value()==0 ) { ui->ZombieMeter->blockSignals(true);
if (value==0 ) {
ui->ZombieValue->setText(tr("No Value Selected")); ui->ZombieValue->setText(tr("No Value Selected"));
} else { } else {
ui->ZombieValue->setText(QString("%1:%2").arg(tr("Value")).arg(ui->ZombieMeter->value())); ui->ZombieValue->setText(QString("%1:%2").arg(tr("Value")).arg(value) );
} }
ui->ZombieMeter->setValue(value);
ui->ZombieMeter->blockSignals(false);
}
void Daily::set_BookmarksUI( QVariantList& start , QVariantList& end , QStringList& notes, qint64 drift) {
ui->bookmarkTable->blockSignals(true);
ui->bookmarkTable->setRowCount(0);
// Careful with drift here - apply to the label but not the
// stored data (which will be saved if journal changes occur).
bool ok;
int qty = start.size();
for (int i=0;i<qty;i++) {
qint64 st=start.at(i).toLongLong(&ok);
qint64 et=end.at(i).toLongLong(&ok);
QDateTime d=QDateTime::fromTime_t((st+drift)/1000L);
ui->bookmarkTable->insertRow(i);
QTableWidgetItem *tw=new QTableWidgetItem(notes.at(i));
QTableWidgetItem *dw=new QTableWidgetItem(d.time().toString("HH:mm:ss"));
dw->setFlags(Qt::ItemIsSelectable|Qt::ItemIsEnabled);
ui->bookmarkTable->setItem(i,0,dw);
ui->bookmarkTable->setItem(i,1,tw);
tw->setData(Qt::UserRole,st);
tw->setData(Qt::UserRole+1,et);
} // for (int i
ui->bookmarkTable->blockSignals(false);
} }
void Daily::on_ZombieMeter_valueChanged(int value) void Daily::on_ZombieMeter_valueChanged(int value)
{ {
set_ZombieMeterLabel(); set_ZombieUI(value);
ZombieMeterMoved=true; set_JournalZombie(previous_date,value);
Session *journal=GetJournalSession(previous_date);
if (!journal) {
journal=CreateJournalSession(previous_date);
}
if (value==0) {
// should delete zombie entry here. if null.
auto jit = journal->settings.find(Journal_ZombieMeter);
if (jit != journal->settings.end()) {
journal->settings.erase(jit);
}
} else {
journal->settings[Journal_ZombieMeter]=value;
}
journal->SetChanged(true);
mainwin->updateOverview(); mainwin->updateOverview();
} }
#endif #endif
@ -2592,10 +2629,9 @@ void Daily::on_bookmarkTable_itemChanged(QTableWidgetItem *item)
#ifndef REMOVE_FITNESS #ifndef REMOVE_FITNESS
void Daily::on_weightSpinBox_valueChanged(double ) void Daily::on_weightSpinBox_valueChanged(double )
{ {
this->on_weightSpinBox_editingFinished(); on_weightSpinBox_editingFinished();
} }
const double zeroKg=0.011; //
void Daily::on_weightSpinBox_editingFinished() void Daily::on_weightSpinBox_editingFinished()
{ {
user_height_cm = p_profile->user->height(); user_height_cm = p_profile->user->height();
@ -2603,46 +2639,19 @@ void Daily::on_weightSpinBox_editingFinished()
if (p_profile->general->unitSystem()==US_English) { if (p_profile->general->unitSystem()==US_English) {
kg *= kgs_per_pound; // convert pounds to kg. kg *= kgs_per_pound; // convert pounds to kg.
} }
if (kg < zeroKg) kg = 0.0; if (kg < zeroD) kg = 0.0;
user_weight_kg = kg; set_JournalWeightValue(previous_date,kg) ;
set_BmiUI(kg);
Session *journal=GetJournalSession(previous_date);
if (!journal) {
journal=CreateJournalSession(previous_date);
}
if (journal->settings.contains(Journal_Weight)) {
QVariant old = journal->settings[Journal_Weight];
if (abs(old.toDouble() - kg) < zeroKg && kg > zeroKg) {
// No change to weight - skip
return;
}
} else if (kg < zeroKg) {
// Still zero - skip
return;
}
if (kg > zeroKg) {
journal->settings[Journal_Weight]=kg;
} else {
// Weight now zero - remove from journal
auto jit = journal->settings.find(Journal_Weight);
if (jit != journal->settings.end()) {
journal->settings.erase(jit);
}
}
user_weight_kg=kg;
gGraphView *gv=mainwin->getOverview()->graphView(); gGraphView *gv=mainwin->getOverview()->graphView();
gGraph *g; gGraph *g;
if (gv) { if (gv) {
g=gv->findGraph(STR_GRAPH_Weight); g=gv->findGraph(STR_GRAPH_Weight);
if (g) g->setDay(nullptr); if (g) g->setDay(nullptr);
} }
set_BmiUI(journal);
if (gv) { if (gv) {
g=gv->findGraph(STR_GRAPH_BMI); g=gv->findGraph(STR_GRAPH_BMI);
if (g) g->setDay(nullptr); if (g) g->setDay(nullptr);
} }
journal->SetChanged(true);
mainwin->updateOverview(); mainwin->updateOverview();
} }
#endif #endif

View File

@ -48,6 +48,7 @@ class Daily : public QWidget
{ {
Q_OBJECT Q_OBJECT
friend class Journal;
public: public:
/*! \fn Daily() /*! \fn Daily()
\brief Constructs a Daily object \brief Constructs a Daily object
@ -113,7 +114,7 @@ public:
\param QDate date \param QDate date
\returns Session * containing valid Journal Session object or nullptr if none found. \returns Session * containing valid Journal Session object or nullptr if none found.
*/ */
Session * GetJournalSession(QDate date); Session * GetJournalSession(QDate date, bool create=true);
QString GetDetailsText(); QString GetDetailsText();
/*! \fn eventBreakdownPie() /*! \fn eventBreakdownPie()
@ -150,7 +151,7 @@ public:
QString STR_SHOW_ALL_EVENTS =QString(tr("Show All Events")); QString STR_SHOW_ALL_EVENTS =QString(tr("Show All Events"));
QString STR_HIDE_ALL_GRAPHS =QString(tr("Hide All Graphs")); QString STR_HIDE_ALL_GRAPHS =QString(tr("Hide All Graphs"));
QString STR_SHOW_ALL_GRAPHS =QString(tr("Show All Graphs")); QString STR_SHOW_ALL_GRAPHS =QString(tr("Show All Graphs"));
static QString convertHtmlToPlainText(QString html) ;
public slots: public slots:
void on_LineCursorUpdate(double time); void on_LineCursorUpdate(double time);
void on_RangeUpdate(double minx, double maxx); void on_RangeUpdate(double minx, double maxx);
@ -252,9 +253,11 @@ private slots:
*/ */
void on_ZombieMeter_valueChanged(int value); void on_ZombieMeter_valueChanged(int value);
void set_ZombieMeterLabel(); void set_ZombieUI(int value);
void set_WeightUI(double weight_kg); void set_WeightUI(double weight_kg);
void set_BmiUI(Session *journal = nullptr); void set_BmiUI(double weight_kg); // should be a part of weight.
void set_NotesUI(QString htmlNote);
void set_BookmarksUI( QVariantList& start , QVariantList& end , QStringList& notes, qint64 drift=0);
/*! \fn on_weightSpinBox_editingFinished(); /*! \fn on_weightSpinBox_editingFinished();
\brief Called when weight has changed.. Updates the BMI dislpay and journal objects. \brief Called when weight has changed.. Updates the BMI dislpay and journal objects.
@ -284,6 +287,11 @@ protected:
virtual void showEvent(QShowEvent *); virtual void showEvent(QShowEvent *);
private: private:
double calculateBMI(double weight_kg, double height_cm);
void set_JournalZombie(QDate&, int);
void set_JournalWeightValue(QDate&, double kgs);
void set_JournalNotesHtml(QDate&, QString html);
/*! \fn CreateJournalSession() /*! \fn CreateJournalSession()
\brief Create a new journal session for this date, if one doesn't exist. \brief Create a new journal session for this date, if one doesn't exist.
\param QDate date \param QDate date
@ -369,9 +377,9 @@ private:
const int eventTypeEnd = QTreeWidgetItem::UserType+2; const int eventTypeEnd = QTreeWidgetItem::UserType+2;
#ifndef REMOVE_FITNESS #ifndef REMOVE_FITNESS
bool ZombieMeterMoved;
double user_weight_kg; double user_weight_kg;
double user_height_cm; double user_height_cm;
constexpr static double zeroD = 0.0001 ;
#endif #endif
bool BookmarksChanged; bool BookmarksChanged;