mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 18:50:44 +00:00
88 lines
1.8 KiB
C++
88 lines
1.8 KiB
C++
/*
|
|
|
|
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;
|
|
QHash<MachineID,Machine *> machlist;
|
|
void AddMachine(Machine *m);
|
|
void DelMachine(Machine *m);
|
|
void LoadMachineData();
|
|
void DataFormatError(Machine *m);
|
|
int Import(QString path);
|
|
|
|
void AddDay(QDate date,Day *day,MachineType mt);
|
|
Day * GetDay(QDate date,MachineType type=MT_UNKNOWN);
|
|
|
|
QVector<Machine *> GetMachines(MachineType t);
|
|
Machine * GetMachine(MachineType t,QDate date);
|
|
Machine * GetMachine(MachineType t);
|
|
|
|
virtual void ExtraLoad(QDomElement & root);
|
|
virtual QDomElement ExtraSave(QDomDocument & doc);
|
|
|
|
QMap<QDate,QVector<Day *> > daylist;
|
|
const QDate & FirstDay() { return m_first; }
|
|
const QDate & LastDay() { return m_last; }
|
|
|
|
protected:
|
|
QDate m_first,m_last;
|
|
|
|
};
|
|
|
|
class MachineLoader;
|
|
extern MachineLoader * GetLoader(QString name);
|
|
|
|
extern Preferences *p_pref;
|
|
extern Preferences *p_layout;
|
|
extern Profile * p_profile;
|
|
|
|
// these are bad and must change
|
|
#define PREF (*p_pref)
|
|
#define LAYOUT (*p_layout)
|
|
#define PROFILE (*p_profile)
|
|
|
|
namespace Profiles
|
|
{
|
|
|
|
extern QHash<QString,Profile *> profiles;
|
|
void Scan(); // Initialize and load Profile
|
|
void Done(); // Save all Profile objects and clear list
|
|
|
|
Profile *Create(QString name);
|
|
Profile *Get(QString name);
|
|
Profile *Get();
|
|
|
|
};
|
|
|
|
#endif //PROFILES_H
|
|
|