2014-08-17 12:56:05 +00:00
|
|
|
/* SleepLib Journal Implementation
|
|
|
|
*
|
2021-11-02 20:34:12 +00:00
|
|
|
* Copyright (c) 2019-2022 The OSCAR Team
|
2018-03-28 07:10:52 +00:00
|
|
|
* Copyright (C) 2011-2018 Mark Watkins <mark@jedimark.net>
|
2014-08-17 12:56:05 +00:00
|
|
|
*
|
|
|
|
* This file is subject to the terms and conditions of the GNU General Public
|
2018-06-04 20:48:38 +00:00
|
|
|
* License. See the file COPYING in the main directory of the source code
|
|
|
|
* for more details. */
|
2014-08-17 12:56:05 +00:00
|
|
|
|
|
|
|
|
|
|
|
#ifndef JOURNAL_H
|
|
|
|
#define JOURNAL_H
|
|
|
|
|
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
|
|
|
|
void BackupJournal(QString filename);
|
|
|
|
|
|
|
|
class Bookmark {
|
|
|
|
public:
|
|
|
|
Bookmark() {
|
|
|
|
start = end = 0;
|
|
|
|
}
|
|
|
|
Bookmark(const Bookmark & copy) {
|
|
|
|
start = copy.start;
|
|
|
|
end = copy.end;
|
|
|
|
notes = copy.notes;
|
|
|
|
}
|
|
|
|
Bookmark(qint64 start, qint64 end, QString notes):
|
|
|
|
start(start), end(end), notes(notes) {}
|
|
|
|
|
|
|
|
qint64 start;
|
|
|
|
qint64 end;
|
|
|
|
QString notes;
|
|
|
|
};
|
|
|
|
|
|
|
|
class JournalEntry
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
JournalEntry(QDate date);
|
|
|
|
~JournalEntry();
|
|
|
|
bool Save();
|
|
|
|
|
|
|
|
QString notes();
|
|
|
|
void setNotes(QString notes);
|
|
|
|
|
|
|
|
EventDataType weight();
|
|
|
|
void setWeight(EventDataType weight);
|
|
|
|
int zombie();
|
|
|
|
void setZombie(int zombie);
|
|
|
|
|
|
|
|
QList<Bookmark> & getBookmarks();
|
|
|
|
void addBookmark(qint64 start, qint64 end, QString note);
|
|
|
|
void delBookmark(qint64 start, qint64 end);
|
|
|
|
|
|
|
|
|
|
|
|
protected:
|
|
|
|
QDate m_date;
|
|
|
|
QList<Bookmark> bookmarks;
|
|
|
|
Day * day;
|
|
|
|
Session * session;
|
|
|
|
bool newsession;
|
|
|
|
};
|
|
|
|
|
2014-08-17 17:03:50 +00:00
|
|
|
void BackupJournal(QString filename);
|
|
|
|
|
|
|
|
|
2014-08-17 12:56:05 +00:00
|
|
|
class DayController
|
|
|
|
{
|
|
|
|
DayController();
|
|
|
|
~DayController();
|
|
|
|
|
|
|
|
void setDate(QDate date);
|
|
|
|
|
|
|
|
QDate m_date;
|
|
|
|
JournalEntry * journal;
|
|
|
|
Day * cpap;
|
|
|
|
Day * oximeter;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif // JOURNAL_H
|