2011-06-26 08:30:44 +00:00
|
|
|
/*
|
|
|
|
|
|
|
|
SleepLib Profiles Header
|
|
|
|
|
|
|
|
Author: Mark Watkins <jedimark64@users.sourceforge.net>
|
|
|
|
License: GPL
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PROFILES_H
|
|
|
|
#define PROFILES_H
|
|
|
|
|
|
|
|
#include <QString>
|
|
|
|
#include <map>
|
|
|
|
#include "machine.h"
|
|
|
|
#include "machine_loader.h"
|
|
|
|
#include "preferences.h"
|
|
|
|
|
|
|
|
class Machine;
|
|
|
|
/**
|
|
|
|
* @class Profile
|
|
|
|
* @author Mark Watkins
|
|
|
|
* @date 28/04/11
|
|
|
|
* @file profiles.h
|
|
|
|
* @brief User profile system
|
|
|
|
*/
|
|
|
|
class Profile:public Preferences
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
Profile(QString name);
|
|
|
|
Profile();
|
|
|
|
virtual ~Profile();
|
|
|
|
|
|
|
|
bool is_first_day;
|
2011-07-31 20:24:43 +00:00
|
|
|
QHash<MachineID,Machine *> machlist;
|
2011-06-26 08:30:44 +00:00
|
|
|
void AddMachine(Machine *m);
|
|
|
|
void DelMachine(Machine *m);
|
|
|
|
void LoadMachineData();
|
2011-07-29 22:55:24 +00:00
|
|
|
void DataFormatError(Machine *m);
|
2011-07-15 13:30:41 +00:00
|
|
|
int Import(QString path);
|
2011-12-06 14:39:14 +00:00
|
|
|
void RemoveSession(Session * sess);
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
void AddDay(QDate date,Day *day,MachineType mt);
|
|
|
|
Day * GetDay(QDate date,MachineType type=MT_UNKNOWN);
|
|
|
|
|
2011-07-31 20:24:43 +00:00
|
|
|
QVector<Machine *> GetMachines(MachineType t);
|
2011-06-26 08:30:44 +00:00
|
|
|
Machine * GetMachine(MachineType t,QDate date);
|
|
|
|
Machine * GetMachine(MachineType t);
|
|
|
|
|
2011-07-24 16:34:53 +00:00
|
|
|
virtual void ExtraLoad(QDomElement & root);
|
|
|
|
virtual QDomElement ExtraSave(QDomDocument & doc);
|
|
|
|
|
2011-07-31 20:24:43 +00:00
|
|
|
QMap<QDate,QVector<Day *> > daylist;
|
2011-07-15 13:30:41 +00:00
|
|
|
const QDate & FirstDay() { return m_first; }
|
|
|
|
const QDate & LastDay() { return m_last; }
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
protected:
|
|
|
|
QDate m_first,m_last;
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
class MachineLoader;
|
|
|
|
extern MachineLoader * GetLoader(QString name);
|
|
|
|
|
|
|
|
extern Preferences *p_pref;
|
|
|
|
extern Preferences *p_layout;
|
2011-10-05 07:41:56 +00:00
|
|
|
extern Profile * p_profile;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
// these are bad and must change
|
2011-10-05 07:41:56 +00:00
|
|
|
#define PREF (*p_pref)
|
|
|
|
#define LAYOUT (*p_layout)
|
|
|
|
#define PROFILE (*p_profile)
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
namespace Profiles
|
|
|
|
{
|
|
|
|
|
2011-07-31 20:24:43 +00:00
|
|
|
extern QHash<QString,Profile *> profiles;
|
2011-06-26 08:30:44 +00:00
|
|
|
void Scan(); // Initialize and load Profile
|
|
|
|
void Done(); // Save all Profile objects and clear list
|
|
|
|
|
2011-10-01 12:54:20 +00:00
|
|
|
Profile *Create(QString name);
|
2011-06-26 08:30:44 +00:00
|
|
|
Profile *Get(QString name);
|
|
|
|
Profile *Get();
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
#endif //PROFILES_H
|
|
|
|
|