2014-08-17 12:56:05 +00:00
|
|
|
/* SleepLib Journal Implementation
|
|
|
|
*
|
2024-01-13 20:27:48 +00:00
|
|
|
* Copyright (c) 2019-2024 The OSCAR Team
|
2024-03-25 19:48:41 +00:00
|
|
|
* Copyright (C) 2011-2018 Mark Watkins
|
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
|
|
|
|
|
2024-03-25 19:48:41 +00:00
|
|
|
class Session;
|
|
|
|
#include <QString>
|
|
|
|
#include <QDate>
|
|
|
|
#include <QDomDocument>
|
|
|
|
#include "daily.h"
|
2014-08-17 12:56:05 +00:00
|
|
|
|
2024-03-25 19:48:41 +00:00
|
|
|
#include "SleepLib/profiles.h"
|
|
|
|
class Journal {
|
2014-08-17 12:56:05 +00:00
|
|
|
public:
|
2024-03-25 19:48:41 +00:00
|
|
|
enum { JRNL_Zombie = 1 , JRNL_Weight = 2 , JRNL_Notes = 4 , JRNL_Bookmarks = 8 };
|
|
|
|
static bool BackupJournal(QString filename);
|
|
|
|
static bool RestoreJournal(QString filename);
|
|
|
|
private:
|
|
|
|
constexpr static double zeroD = 0.0001;
|
|
|
|
static void getJournal(Daily*& daily,QDate& date,Session* & journal);
|
|
|
|
static bool RestoreDay (QDomElement& dayElement,QDate& date,QString& filename) ;
|
2014-08-17 12:56:05 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif // JOURNAL_H
|