Changed all user preferences to actual per-user profile preferences

This commit is contained in:
Mark Watkins 2011-10-05 17:41:56 +10:00
parent 9404891eb0
commit f5d737bffe
23 changed files with 169 additions and 177 deletions

View File

@ -194,7 +194,7 @@ if (m_cnt<m_max+8) {
void GLShortBuffer::draw() void GLShortBuffer::draw()
{ {
if (m_cnt>0) { if (m_cnt>0) {
bool antialias=m_forceantialias || (pref["UseAntiAliasing"].toBool() && m_antialias); bool antialias=m_forceantialias || (PROFILE["UseAntiAliasing"].toBool() && m_antialias);
float size=m_size; float size=m_size;
if (antialias) { if (antialias) {
glEnable(GL_BLEND); glEnable(GL_BLEND);
@ -415,7 +415,7 @@ void GLFloatBuffer::draw()
{ {
if (m_cnt<=0) return; if (m_cnt<=0) return;
bool antialias=m_forceantialias || (pref["UseAntiAliasing"].toBool() && m_antialias); bool antialias=m_forceantialias || (PROFILE["UseAntiAliasing"].toBool() && m_antialias);
float size=m_size; float size=m_size;
if (antialias) { if (antialias) {
glEnable(GL_BLEND); glEnable(GL_BLEND);
@ -1848,7 +1848,7 @@ void gGraphView::paintGL()
bool threaded; bool threaded;
// Tempory hack using this pref.. // Tempory hack using this pref..
/*if (pref["EnableMultithreading"].toBool()) { // && (m_idealthreads>1)) { /*if ((*profile)["EnableMultithreading"].toBool()) { // && (m_idealthreads>1)) {
threaded=true; threaded=true;
for (int i=0;i<m_idealthreads;i++) { for (int i=0;i<m_idealthreads;i++) {
if (!m_threads[i]->isRunning()) if (!m_threads[i]->isRunning())
@ -1926,7 +1926,7 @@ void gGraphView::paintGL()
quads->draw(); quads->draw();
DrawTextQue(); DrawTextQue();
m_tooltip->paint(); m_tooltip->paint();
if (m_showsplitter && pref["ShowDebug"].toBool()) { if (m_showsplitter && PROFILE["ShowDebug"].toBool()) {
QString ss; QString ss;
ss="PreDraw took "+QString::number(elapsed)+"ms"; ss="PreDraw took "+QString::number(elapsed)+"ms";
AddTextQue(ss,width()-140,10,0,col,defaultfont); AddTextQue(ss,width()-140,10,0,col,defaultfont);

View File

@ -30,8 +30,9 @@ void gLineChart::SetDay(Day *d)
{ {
Layer::SetDay(d); Layer::SetDay(d);
if (m_code==CPAP_Leak) { if (m_code==CPAP_Leak) {
subtract_offset=pref["IntentionalLeak"].toDouble(); subtract_offset=PROFILE["IntentionalLeak"].toDouble();
} else subtract_offset=0; } else subtract_offset=0;

View File

@ -83,7 +83,7 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh
quads->add(x1,start_py,x2,start_py,x2,start_py+height,x1,start_py+height); quads->add(x1,start_py,x2,start_py,x2,start_py+height,x1,start_py+height);
if (quads->full()) { verts_exceeded=true; break; } if (quads->full()) { verts_exceeded=true; break; }
} else if (m_flt==FT_Dot) { } else if (m_flt==FT_Dot) {
if ((pref["AlwaysShowOverlayBars"].toInt()==0) || (xx<3600000)) { if ((PROFILE["AlwaysShowOverlayBars"].toInt()==0) || (xx<3600000)) {
// show the fat dots in the middle // show the fat dots in the middle
points->add(x1,double(height)/double(yy)*double(-20-w.min_y)+topp); points->add(x1,double(height)/double(yy)*double(-20-w.min_y)+topp);
if (points->full()) { verts_exceeded=true; break; } if (points->full()) { verts_exceeded=true; break; }
@ -95,7 +95,7 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh
} }
} else if (m_flt==FT_Bar) { } else if (m_flt==FT_Bar) {
int z=start_py+height; int z=start_py+height;
if ((pref["AlwaysShowOverlayBars"].toInt()==0) || (xx<3600000)) { if ((PROFILE["AlwaysShowOverlayBars"].toInt()==0) || (xx<3600000)) {
z=top; z=top;
points->add(x1,top); points->add(x1,top);

View File

@ -65,7 +65,7 @@ void gSessionTime::paint(gGraph & w,int left, int top, int width, int height)
QColor col2("light grey"); QColor col2("light grey");
QString str; QString str;
bool draw_xticks_instead=false; bool draw_xticks_instead=false;
bool antialias=pref["UseAntiAliasing"].toBool(); bool antialias=(*profile)["UseAntiAliasing"].toBool();
QDateTime d; QDateTime d;
QTime t; QTime t;

View File

@ -11,8 +11,8 @@
#include "gSummaryChart.h" #include "gSummaryChart.h"
extern QLabel * qstatus2; extern QLabel * qstatus2;
SummaryChart::SummaryChart(Profile *p,QString label,GraphType type) SummaryChart::SummaryChart(QString label,GraphType type)
:Layer(""),m_profile(p),m_label(label),m_graphtype(type) :Layer(""),m_label(label),m_graphtype(type)
{ {
QColor color=Qt::black; QColor color=Qt::black;
addGLBuf(quads=new GLShortBuffer(20000,GL_QUADS)); addGLBuf(quads=new GLShortBuffer(20000,GL_QUADS));
@ -29,11 +29,6 @@ SummaryChart::~SummaryChart()
} }
void SummaryChart::SetDay(Day * nullday) void SummaryChart::SetDay(Day * nullday)
{ {
if (!m_profile) {
qWarning() << "Forgot to set profile for gBarChart dummy!";
m_day=NULL;
return;
}
Day * day=nullday; Day * day=nullday;
Layer::SetDay(day); Layer::SetDay(day);
@ -53,7 +48,7 @@ void SummaryChart::SetDay(Day * nullday)
m_empty=true; m_empty=true;
int suboffset; int suboffset;
SummaryType type; SummaryType type;
for (QMap<QDate,QVector<Day *> >::iterator d=m_profile->daylist.begin();d!=m_profile->daylist.end();d++) { for (QMap<QDate,QVector<Day *> >::iterator d=PROFILE.daylist.begin();d!=PROFILE.daylist.end();d++) {
tt=QDateTime(d.key(),QTime(0,0,0),Qt::UTC).toTime_t(); tt=QDateTime(d.key(),QTime(0,0,0),Qt::UTC).toTime_t();
//tt=QDateTime(d.key(),QTime(12,0,0)).toTime_t(); //tt=QDateTime(d.key(),QTime(12,0,0)).toTime_t();
dn=tt/86400; dn=tt/86400;
@ -66,7 +61,7 @@ void SummaryChart::SetDay(Day * nullday)
bool fnd=false; bool fnd=false;
for (int j=0;j<m_codes.size();j++) { for (int j=0;j<m_codes.size();j++) {
code=m_codes[j]; code=m_codes[j];
if (code==CPAP_Leak) suboffset=pref["IntentionalLeak"].toDouble(); else suboffset=0; if (code==CPAP_Leak) suboffset=PROFILE["IntentionalLeak"].toDouble(); else suboffset=0;
type=m_type[j]; type=m_type[j];
for (int i=0;i<d.value().size();i++) { for (int i=0;i<d.value().size();i++) {
day=d.value()[i]; day=d.value()[i];
@ -120,8 +115,8 @@ void SummaryChart::SetDay(Day * nullday)
if (m_graphtype==GT_BAR) { if (m_graphtype==GT_BAR) {
m_miny=0; m_miny=0;
} }
// m_minx=qint64(QDateTime(m_profile->FirstDay(),QTime(0,0,0),Qt::UTC).toTime_t())*1000L; // m_minx=qint64(QDateTime(PROFILE.FirstDay(),QTime(0,0,0),Qt::UTC).toTime_t())*1000L;
m_maxx=qint64(QDateTime(m_profile->LastDay().addDays(1),QTime(0,0,0),Qt::UTC).toTime_t())*1000L; m_maxx=qint64(QDateTime(PROFILE.LastDay().addDays(1),QTime(0,0,0),Qt::UTC).toTime_t())*1000L;
} }

View File

@ -16,10 +16,9 @@ enum GraphType { GT_BAR, GT_LINE };
class SummaryChart:public Layer class SummaryChart:public Layer
{ {
public: public:
SummaryChart(Profile *profile, QString label, GraphType type=GT_BAR); SummaryChart(QString label, GraphType type=GT_BAR);
virtual ~SummaryChart(); virtual ~SummaryChart();
void setProfile(Profile *profile) { m_profile=profile; }
virtual void paint(gGraph & w,int left, int top, int width, int height); virtual void paint(gGraph & w,int left, int top, int width, int height);
virtual void SetDay(Day * day=NULL); virtual void SetDay(Day * day=NULL);
virtual bool isEmpty() { return m_empty; } virtual bool isEmpty() { return m_empty; }
@ -36,7 +35,6 @@ class SummaryChart:public Layer
QHash<int,QHash<short,EventDataType> > m_values; QHash<int,QHash<short,EventDataType> > m_values;
QHash<int,Day *> m_days; QHash<int,Day *> m_days;
Profile * m_profile;
GLShortBuffer *quads,*lines; GLShortBuffer *quads,*lines;
bool m_empty; bool m_empty;
int m_fday; int m_fday;

View File

@ -75,17 +75,17 @@ Day *Machine::AddSession(Session *s,Profile *p)
QTime split_time(12,0,0); QTime split_time(12,0,0);
if (pref.Exists("DaySplitTime")) { if (PROFILE.Exists("DaySplitTime")) {
split_time=pref["DaySplitTime"].toTime(); split_time=PROFILE["DaySplitTime"].toTime();
} }
int combine_sessions; int combine_sessions;
if (pref.Exists("CombineCloserSessions")) { if (PROFILE.Exists("CombineCloserSessions")) {
combine_sessions=pref["CombineCloserSessions"].toInt(); // In Minutes combine_sessions=PROFILE["CombineCloserSessions"].toInt(); // In Minutes
} else combine_sessions=0; } else combine_sessions=0;
int ignore_sessions; int ignore_sessions;
if (pref.Exists("IgnoreShorterSessions")) { if (PROFILE.Exists("IgnoreShorterSessions")) {
ignore_sessions=pref["IgnoreShorterSessions"].toInt(); // In Minutes ignore_sessions=PROFILE["IgnoreShorterSessions"].toInt(); // In Minutes
} else ignore_sessions=0; } else ignore_sessions=0;
int session_length=s->last()-s->first(); int session_length=s->last()-s->first();
@ -357,7 +357,7 @@ bool Machine::Save()
} }
savelistCnt=0; savelistCnt=0;
savelistSize=m_savelist.size(); savelistSize=m_savelist.size();
if (!pref["EnableMultithreading"].toBool()) { if (!PROFILE["EnableMultithreading"].toBool()) {
for (int i=0;i<savelistSize;i++) { for (int i=0;i<savelistSize;i++) {
qprogress->setValue(66.0+(float(savelistCnt)/float(savelistSize)*33.0)); qprogress->setValue(66.0+(float(savelistCnt)/float(savelistSize)*33.0));
QApplication::processEvents(); QApplication::processEvents();

View File

@ -20,12 +20,13 @@ License: GPL
Preferences *p_pref; Preferences *p_pref;
Preferences *p_layout; Preferences *p_layout;
Profile * p_profile;
Profile::Profile() Profile::Profile()
:Preferences(),is_first_day(true) :Preferences(),is_first_day(true)
{ {
p_name="Profile"; p_name="Profile";
p_path=pref.Get("{home}/Profiles"); p_path=PREF.Get("{home}/Profiles");
machlist.clear(); machlist.clear();
//m_first=m_last= //m_first=m_last=
} }
@ -60,7 +61,7 @@ void Profile::DataFormatError(Machine *m)
if (QMessageBox::warning(NULL,"Machine Database Changes",msg,QMessageBox::Yes | QMessageBox::Cancel,QMessageBox::Yes)==QMessageBox::Yes) { if (QMessageBox::warning(NULL,"Machine Database Changes",msg,QMessageBox::Yes | QMessageBox::Cancel,QMessageBox::Yes)==QMessageBox::Yes) {
if (!m->Purge(3478216)) { // Do not copy this line without thinking.. You will be eaten by a Grue if you do if (!m->Purge(3478216)) { // Do not copy this line without thinking.. You will be eaten by a Grue if you do
QMessageBox::critical(NULL,"Purge Failed","Sorry, I could not purge this data, which means this version of SleepyHead can't start.. SleepyHead's Data folder needs to be removed manually\n\nThis folder currently resides at the following location:\n"+pref["DataFolder"].toString(),QMessageBox::Ok); QMessageBox::critical(NULL,"Purge Failed","Sorry, I could not purge this data, which means this version of SleepyHead can't start.. SleepyHead's Data folder needs to be removed manually\n\nThis folder currently resides at the following location:\n"+PREF["DataFolder"].toString(),QMessageBox::Ok);
exit(-1); exit(-1);
} }
} else { } else {
@ -301,8 +302,9 @@ QHash<QString,Profile *> profiles;
void Done() void Done()
{ {
pref.Save(); PREF.Save();
laypref.Save(); LAYOUT.Save();
// Only save the open profile..
for (QHash<QString,Profile *>::iterator i=profiles.begin(); i!=profiles.end(); i++) { for (QHash<QString,Profile *>::iterator i=profiles.begin(); i!=profiles.end(); i++) {
i.value()->Save(); i.value()->Save();
delete i.value(); delete i.value();
@ -321,7 +323,7 @@ Profile *Get(QString name)
} }
Profile *Create(QString name) Profile *Create(QString name)
{ {
QString path=pref.Get("{home}/Profiles/")+name; QString path=PREF.Get("{home}/Profiles/")+name;
QDir dir(path); QDir dir(path);
if (!dir.exists(path)) dir.mkpath(path); if (!dir.exists(path)) dir.mkpath(path);
//path+="/"+name; //path+="/"+name;
@ -362,10 +364,10 @@ void Scan()
p_pref=new Preferences("Preferences"); p_pref=new Preferences("Preferences");
p_layout=new Preferences("Layout"); p_layout=new Preferences("Layout");
pref.Open(); PREF.Open();
laypref.Open(); LAYOUT.Open();
QString path=pref.Get("{home}/Profiles"); QString path=PREF.Get("{home}/Profiles");
QDir dir(path); QDir dir(path);
if (!dir.exists(path)) { if (!dir.exists(path)) {

View File

@ -63,13 +63,12 @@ extern MachineLoader * GetLoader(QString name);
extern Preferences *p_pref; extern Preferences *p_pref;
extern Preferences *p_layout; extern Preferences *p_layout;
extern Profile * p_profile;
// these are bad and must change // these are bad and must change
#define pref (*p_pref) #define PREF (*p_pref)
#define laypref (*p_layout) #define LAYOUT (*p_layout)
#define PROFILE (*p_profile)
extern Profile *profile;
namespace Profiles namespace Profiles
{ {

View File

@ -167,7 +167,7 @@ public:
Graph(QString name,quint32 flags=GraphFlags::XTicker | GraphFlags::YTicker | GraphFlags::XGrid); Graph(QString name,quint32 flags=GraphFlags::XTicker | GraphFlags::YTicker | GraphFlags::XGrid);
Layer *addLayer(Layer *layer) { m_layers.push_back(layer); return layer; } Layer *addLayer(Layer *layer) { m_layers.push_back(layer); return layer; }
int height() { if (m_visible) return m_height; else return 0;} int height() { if (m_visible) return m_height; else return 0;}
int setHeight(int h) { m_height=h; } void setHeight(int h) { m_height=h; }
bool visible() { return m_visible; } bool visible() { return m_visible; }
void setVisible(bool b) { m_visible=b; } void setVisible(bool b) { m_visible=b; }
protected: protected:

View File

@ -18,6 +18,7 @@
#include <QResizeEvent> #include <QResizeEvent>
#include <QScrollBar> #include <QScrollBar>
#include "SleepLib/profiles.h"
#include "SleepLib/session.h" #include "SleepLib/session.h"
#include "Graphs/graphdata_custom.h" #include "Graphs/graphdata_custom.h"
#include "Graphs/gLineOverlay.h" #include "Graphs/gLineOverlay.h"
@ -30,8 +31,8 @@
const int min_height=150; const int min_height=150;
Daily::Daily(QWidget *parent,Profile * _profile,gGraphView * shared, MainWindow *mw) Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
:QWidget(parent),mainwin(mw), ui(new Ui::Daily),profile(_profile) :QWidget(parent),mainwin(mw), ui(new Ui::Daily)
{ {
ui->setupUi(this); ui->setupUi(this);
@ -216,7 +217,7 @@ Daily::~Daily()
void Daily::ReloadGraphs() void Daily::ReloadGraphs()
{ {
QDate d=profile->LastDay(); QDate d=PROFILE.LastDay();
if (!d.isValid()) { if (!d.isValid()) {
d=ui->calendar->selectedDate(); d=ui->calendar->selectedDate();
} }
@ -317,8 +318,8 @@ void Daily::UpdateCalendarDay(QDate date)
cpapcol.setFontWeight(QFont::Bold); cpapcol.setFontWeight(QFont::Bold);
oxiday.setForeground(QBrush(Qt::red, Qt::SolidPattern)); oxiday.setForeground(QBrush(Qt::red, Qt::SolidPattern));
oxiday.setFontWeight(QFont::Bold); oxiday.setFontWeight(QFont::Bold);
bool hascpap=profile->GetDay(date,MT_CPAP)!=NULL; bool hascpap=PROFILE.GetDay(date,MT_CPAP)!=NULL;
bool hasoxi=profile->GetDay(date,MT_OXIMETER)!=NULL; bool hasoxi=PROFILE.GetDay(date,MT_OXIMETER)!=NULL;
if (hascpap) { if (hascpap) {
if (hasoxi) { if (hasoxi) {
@ -326,7 +327,7 @@ void Daily::UpdateCalendarDay(QDate date)
} else { } else {
ui->calendar->setDateTextFormat(date,cpapcol); ui->calendar->setDateTextFormat(date,cpapcol);
} }
} else if (profile->GetDay(date)) { } else if (PROFILE.GetDay(date)) {
ui->calendar->setDateTextFormat(date,bold); ui->calendar->setDateTextFormat(date,bold);
} else { } else {
ui->calendar->setDateTextFormat(date,normal); ui->calendar->setDateTextFormat(date,normal);
@ -375,11 +376,11 @@ void Daily::Load(QDate date)
{ {
static Day * lastcpapday=NULL; static Day * lastcpapday=NULL;
previous_date=date; previous_date=date;
Day *cpap=profile->GetDay(date,MT_CPAP); Day *cpap=PROFILE.GetDay(date,MT_CPAP);
Day *oxi=profile->GetDay(date,MT_OXIMETER); Day *oxi=PROFILE.GetDay(date,MT_OXIMETER);
// Day *sleepstage=profile->GetDay(date,MT_SLEEPSTAGE); // Day *sleepstage=profile->GetDay(date,MT_SLEEPSTAGE);
if (!pref["MemoryHog"].toBool()) { if (!PROFILE["MemoryHog"].toBool()) {
if (lastcpapday && (lastcpapday!=cpap)) { if (lastcpapday && (lastcpapday!=cpap)) {
for (QVector<Session *>::iterator s=lastcpapday->begin();s!=lastcpapday->end();s++) { for (QVector<Session *>::iterator s=lastcpapday->begin();s!=lastcpapday->end();s++) {
(*s)->TrashEvents(); (*s)->TrashEvents();
@ -453,7 +454,7 @@ void Daily::Load(QDate date)
if (cpap->machine->properties.find("SubModel")!=cpap->machine->properties.end()) if (cpap->machine->properties.find("SubModel")!=cpap->machine->properties.end())
submodel=" <br>"+cpap->machine->properties["SubModel"]; submodel=" <br>"+cpap->machine->properties["SubModel"];
html+="<tr><td colspan=4 align=center><b>"+cpap->machine->properties["Brand"]+"</b> <br>"+cpap->machine->properties["Model"]+" "+cpap->machine->properties["ModelNumber"]+submodel+"</td></tr>\n"; html+="<tr><td colspan=4 align=center><b>"+cpap->machine->properties["Brand"]+"</b> <br>"+cpap->machine->properties["Model"]+" "+cpap->machine->properties["ModelNumber"]+submodel+"</td></tr>\n";
if (pref.Exists("ShowSerialNumbers") && pref["ShowSerialNumbers"].toBool()) { if (PROFILE.Exists("ShowSerialNumbers") && PROFILE["ShowSerialNumbers"].toBool()) {
html+="<tr><td colspan=4 align=center>"+cpap->machine->properties["Serial"]+"</td></tr>\n"; html+="<tr><td colspan=4 align=center>"+cpap->machine->properties["Serial"]+"</td></tr>\n";
} }
@ -500,7 +501,7 @@ void Daily::Load(QDate date)
// as it only relates to text drawing, which the Pie chart does not do // as it only relates to text drawing, which the Pie chart does not do
// ^^ Scratch that.. pie now includes text.. // ^^ Scratch that.. pie now includes text..
if (pref["EnableGraphSnapshots"].toBool()) { // AHI Pie Chart if (PROFILE["EnableGraphSnapshots"].toBool()) { // AHI Pie Chart
if (ahi+rei+fli>0) { if (ahi+rei+fli>0) {
html+="</tr>\n"; //<tr><td colspan=4 align=center><i>"+tr("Event Breakdown")+"</i></td></tr>\n"; html+="</tr>\n"; //<tr><td colspan=4 align=center><i>"+tr("Event Breakdown")+"</i></td></tr>\n";
//G_AHI->setFixedSize(gwwidth,120); //G_AHI->setFixedSize(gwwidth,120);
@ -535,7 +536,7 @@ void Daily::Load(QDate date)
ChannelID code=chans[i]; ChannelID code=chans[i];
if (cpap && cpap->channelHasData(code)) { if (cpap && cpap->channelHasData(code)) {
if (code==CPAP_Leak) suboffset=pref["IntentionalLeak"].toDouble(); else suboffset=0; if (code==CPAP_Leak) suboffset=PROFILE["IntentionalLeak"].toDouble(); else suboffset=0;
html+="<tr><td align=left>"+schema::channel[code].label(); html+="<tr><td align=left>"+schema::channel[code].label();
html+="</td><td>"+a.sprintf("%.2f",cpap->min(code)-suboffset); html+="</td><td>"+a.sprintf("%.2f",cpap->min(code)-suboffset);
html+="</td><td>"+a.sprintf("%.2f",cpap->wavg(code)-suboffset); html+="</td><td>"+a.sprintf("%.2f",cpap->wavg(code)-suboffset);
@ -562,7 +563,7 @@ void Daily::Load(QDate date)
html+="<table cellspacing=0 cellpadding=0 border=0 width='100%'>\n"; html+="<table cellspacing=0 cellpadding=0 border=0 width='100%'>\n";
if (cpap) { if (cpap) {
// if (pref["EnableGraphSnapshots"].toBool()) { // if ((*profile)["EnableGraphSnapshots"].toBool()) {
/* if (cpap->channelExists(CPAP_Pressure)) { /* if (cpap->channelExists(CPAP_Pressure)) {
html+=("<tr><td colspan=4 align=center><i>")+tr("Time@Pressure")+("</i></td></tr>\n"); html+=("<tr><td colspan=4 align=center><i>")+tr("Time@Pressure")+("</i></td></tr>\n");
TAP->setFixedSize(gwwidth,30); TAP->setFixedSize(gwwidth,30);
@ -643,7 +644,7 @@ void Daily::Unload(QDate date)
} }
if (journal) { if (journal) {
Machine *jm=profile->GetMachine(MT_JOURNAL); Machine *jm=PROFILE.GetMachine(MT_JOURNAL);
if (jm) jm->SaveSession(journal); if (jm) jm->SaveSession(journal);
} }
UpdateCalendarDay(date); UpdateCalendarDay(date);
@ -726,13 +727,13 @@ void Daily::on_JournalNotesColour_clicked()
} }
Session * Daily::CreateJournalSession(QDate date) Session * Daily::CreateJournalSession(QDate date)
{ {
Machine *m=profile->GetMachine(MT_JOURNAL); Machine *m=PROFILE.GetMachine(MT_JOURNAL);
if (!m) { if (!m) {
m=new Machine(profile,0); m=new Machine(p_profile,0);
m->SetClass("Journal"); m->SetClass("Journal");
m->properties["Brand"]="Virtual"; m->properties["Brand"]="Virtual";
m->SetType(MT_JOURNAL); m->SetType(MT_JOURNAL);
profile->AddMachine(m); PROFILE.AddMachine(m);
} }
Session *sess=new Session(m,0); Session *sess=new Session(m,0);
QDateTime dt(date,QTime(17,0)); QDateTime dt(date,QTime(17,0));
@ -742,12 +743,12 @@ Session * Daily::CreateJournalSession(QDate date)
dt=dt.addSecs(3600); dt=dt.addSecs(3600);
sess->set_last(qint64(dt.toTime_t())*1000L); sess->set_last(qint64(dt.toTime_t())*1000L);
sess->SetChanged(true); sess->SetChanged(true);
m->AddSession(sess,profile); m->AddSession(sess,p_profile);
return sess; return sess;
} }
Session * Daily::GetJournalSession(QDate date) // Get the first journal session Session * Daily::GetJournalSession(QDate date) // Get the first journal session
{ {
Day *journal=profile->GetDay(date,MT_JOURNAL); Day *journal=PROFILE.GetDay(date,MT_JOURNAL);
if (!journal) if (!journal)
return NULL; //CreateJournalSession(date); return NULL; //CreateJournalSession(date);
QVector<Session *>::iterator s; QVector<Session *>::iterator s;

View File

@ -35,7 +35,7 @@ class Daily : public QWidget
Q_OBJECT Q_OBJECT
public: public:
explicit Daily(QWidget *parent, Profile * _profile, gGraphView *shared,MainWindow *mw); explicit Daily(QWidget *parent, gGraphView *shared,MainWindow *mw);
~Daily(); ~Daily();
void ReloadGraphs(); void ReloadGraphs();
void ResetGraphLayout(); void ResetGraphLayout();
@ -85,7 +85,6 @@ private:
MainWindow * mainwin; MainWindow * mainwin;
Ui::Daily *ui; Ui::Daily *ui;
Profile *profile;
QDate previous_date; QDate previous_date;
//QScrollArea *scrollArea; //QScrollArea *scrollArea;
//QVBoxLayout *splitter; //QVBoxLayout *splitter;

View File

@ -22,12 +22,10 @@
#include "SleepLib/loader_plugins/zeo_loader.h" #include "SleepLib/loader_plugins/zeo_loader.h"
#include "SleepLib/loader_plugins/resmed_loader.h" #include "SleepLib/loader_plugins/resmed_loader.h"
#ifdef Q_WS_X11 #ifdef Q_WS_X11
#include <X11/Xlib.h> #include <X11/Xlib.h>
#endif #endif
MainWindow *mainwin=NULL; MainWindow *mainwin=NULL;
void MyOutputHandler(QtMsgType type, const char *msg) { void MyOutputHandler(QtMsgType type, const char *msg) {
@ -74,7 +72,7 @@ int main(int argc, char *argv[])
ZEOLoader::Register(); ZEOLoader::Register();
ResmedLoader::Register(); ResmedLoader::Register();
Profiles::Scan(); Profiles::Scan();
pref["AppName"]="SleepyHead"; PREF["AppName"]="SleepyHead";
QString Version=QString("%1.%2.%3").arg(major_version).arg(minor_version).arg(revision_number); QString Version=QString("%1.%2.%3").arg(major_version).arg(minor_version).arg(revision_number);
@ -86,8 +84,8 @@ int main(int argc, char *argv[])
// Show New User wizard.. // Show New User wizard..
} else { } else {
if (pref.Exists("VersionString")) { if (PREF.Exists("VersionString")) {
QString V=pref["VersionString"].toString(); QString V=PREF["VersionString"].toString();
if (V!=Version) { if (V!=Version) {
QMessageBox::warning(0,"New Version Warning","This is a new version of SleepyHead. If you experience a crash right after clicking Ok, you will need to manually delete the SleepApp folder (it's located in your Documents folder) and reimport your data. After this things should work normally.",QMessageBox::Ok); QMessageBox::warning(0,"New Version Warning","This is a new version of SleepyHead. If you experience a crash right after clicking Ok, you will need to manually delete the SleepApp folder (it's located in your Documents folder) and reimport your data. After this things should work normally.",QMessageBox::Ok);
} }
@ -97,7 +95,8 @@ int main(int argc, char *argv[])
exit(1); exit(1);
} }
} }
pref["VersionString"]=Version; PREF["VersionString"]=Version;
p_profile=Profiles::Get(PREF["Profile"].toString());
//if (!pref.Exists("Profile")) pref["Profile"]=getUserName(); //if (!pref.Exists("Profile")) pref["Profile"]=getUserName();

View File

@ -28,6 +28,8 @@ QLabel *qstatus;
QLabel *qstatus2; QLabel *qstatus2;
QStatusBar *qstatusbar; QStatusBar *qstatusbar;
extern Profile * profile;
void MainWindow::Log(QString s) void MainWindow::Log(QString s)
{ {
@ -56,9 +58,12 @@ MainWindow::MainWindow(QWidget *parent) :
QMainWindow(parent), QMainWindow(parent),
ui(new Ui::MainWindow) ui(new Ui::MainWindow)
{ {
Q_ASSERT(p_profile!=NULL);
logtime.start(); logtime.start();
ui->setupUi(this); ui->setupUi(this);
this->setWindowTitle(tr("SleepyHead")+QString(" v%1.%2.%3 (%4)").arg(major_version).arg(minor_version).arg(revision_number).arg(pref["Profile"].toString())); this->setWindowTitle(tr("SleepyHead")+QString(" v%1.%2.%3 (%4)").arg(major_version).arg(minor_version).arg(revision_number).arg(PREF["Profile"].toString()));
ui->tabWidget->setCurrentIndex(0); ui->tabWidget->setCurrentIndex(0);
//move(0,0); //move(0,0);
overview=NULL; overview=NULL;
@ -94,30 +99,32 @@ MainWindow::MainWindow(QWidget *parent) :
ui->statusbar->addPermanentWidget(qprogress,1); ui->statusbar->addPermanentWidget(qprogress,1);
ui->statusbar->addPermanentWidget(qstatus2,0); ui->statusbar->addPermanentWidget(qstatus2,0);
if (!pref.Exists("ShowDebug")) pref["ShowDebug"]=true; if (!PROFILE.Exists("ShowDebug")) PROFILE["ShowDebug"]=true;
ui->actionDebug->setChecked(pref["ShowDebug"].toBool()); ui->actionDebug->setChecked(PROFILE["ShowDebug"].toBool());
if (!pref["ShowDebug"].toBool()) { if (!PROFILE["ShowDebug"].toBool()) {
ui->logText->hide(); ui->logText->hide();
} }
// This speeds up the second part of importing craploads.. later it will speed up the first part too. // This speeds up the second part of importing craploads.. later it will speed up the first part too.
if (!pref.Exists("EnableMultithreading")) pref["EnableMultithreading"]=QThread::idealThreadCount()>1; if (!PROFILE.Exists("EnableMultithreading")) PROFILE["EnableMultithreading"]=QThread::idealThreadCount()>1;
if (!pref.Exists("MemoryHog")) pref["MemoryHog"]=false; if (!PROFILE.Exists("MemoryHog")) PROFILE["MemoryHog"]=false;
if (!pref.Exists("EnableGraphSnapshots")) pref["EnableGraphSnapshots"]=false; if (!PROFILE.Exists("EnableGraphSnapshots")) PROFILE["EnableGraphSnapshots"]=false;
if (!pref.Exists("AlwaysShowOverlayBars")) pref["AlwaysShowOverlayBars"]=0; if (!PROFILE.Exists("AlwaysShowOverlayBars")) PROFILE["AlwaysShowOverlayBars"]=0;
if (!pref.Exists("UseAntiAliasing")) pref["UseAntiAliasing"]=false; if (!PROFILE.Exists("UseAntiAliasing")) PROFILE["UseAntiAliasing"]=false;
if (!pref.Exists("IntentionalLeak")) pref["IntentionalLeak"]=(double)0.0; if (!PROFILE.Exists("IntentionalLeak")) PROFILE["IntentionalLeak"]=(double)0.0;
if (!pref.Exists("IgnoreShorterSessions")) pref["IgnoreShorterSessions"]=0; if (!PROFILE.Exists("IgnoreShorterSessions")) PROFILE["IgnoreShorterSessions"]=0;
if (!pref.Exists("CombineCloserSessions")) pref["CombineCloserSessions"]=0; if (!PROFILE.Exists("CombineCloserSessions")) PROFILE["CombineCloserSessions"]=0;
if (!pref.Exists("DaySplitTime")) pref["DaySplitTime"]=QTime(12,0,0,0); if (!PROFILE.Exists("DaySplitTime")) PROFILE["DaySplitTime"]=QTime(12,0,0,0);
//DateTime(QDate::currentDate(),QTime(12,0,0,0),Qt::UTC).time(); //DateTime(QDate::currentDate(),QTime(12,0,0,0),Qt::UTC).time();
//ui->actionUse_AntiAliasing->setChecked(pref["UseAntiAliasing"].toBool()); //ui->actionUse_AntiAliasing->setChecked(PROFILE["UseAntiAliasing"].toBool());
first_load=true; first_load=true;
// Using the dirty registry here. :(
QSettings settings("Jedimark", "SleepyHead"); QSettings settings("Jedimark", "SleepyHead");
this->restoreGeometry(settings.value("MainWindow/geometry").toByteArray()); this->restoreGeometry(settings.value("MainWindow/geometry").toByteArray());
@ -157,20 +164,19 @@ MainWindow::~MainWindow()
void MainWindow::Startup() void MainWindow::Startup()
{ {
qDebug() << pref["AppName"].toString().toAscii()+" v"+pref["VersionString"].toString().toAscii() << "built with Qt"<< QT_VERSION_STR << "on" << __DATE__ << __TIME__; qDebug() << PREF["AppName"].toString().toAscii()+" v"+PREF["VersionString"].toString().toAscii() << "built with Qt"<< QT_VERSION_STR << "on" << __DATE__ << __TIME__;
qstatus->setText(tr("Loading Data")); qstatus->setText(tr("Loading Data"));
qprogress->show(); qprogress->show();
//qstatusbar->showMessage(tr("Loading Data"),0); //qstatusbar->showMessage(tr("Loading Data"),0);
profile=Profiles::Get(pref["Profile"].toString()); // profile is a global variable set in main after login
Q_ASSERT(profile!=NULL);
profile->LoadMachineData(); PROFILE.LoadMachineData();
daily=new Daily(ui->tabWidget,profile,NULL,this); daily=new Daily(ui->tabWidget,NULL,this);
ui->tabWidget->insertTab(1,daily,tr("Daily")); ui->tabWidget->insertTab(1,daily,tr("Daily"));
overview=new Overview(ui->tabWidget,profile,daily->SharedWidget()); overview=new Overview(ui->tabWidget,daily->SharedWidget());
ui->tabWidget->insertTab(2,overview,tr("Overview")); ui->tabWidget->insertTab(2,overview,tr("Overview"));
if (daily) daily->ReloadGraphs(); if (daily) daily->ReloadGraphs();
@ -201,7 +207,7 @@ void MainWindow::on_action_Import_Data_triggered()
qprogress->setValue(0); qprogress->setValue(0);
qprogress->show(); qprogress->show();
qstatus->setText(tr("Importing Data")); qstatus->setText(tr("Importing Data"));
int c=profile->Import(dir); int c=PROFILE.Import(dir);
if (!c) { if (!c) {
QMessageBox::warning(this,"Import Problem","Couldn't Find any Machine Data at this location:\n"+dir,QMessageBox::Ok); QMessageBox::warning(this,"Import Problem","Couldn't Find any Machine Data at this location:\n"+dir,QMessageBox::Ok);
} }
@ -216,7 +222,7 @@ void MainWindow::on_action_Import_Data_triggered()
}*/ }*/
qDebug() << "Finished Importing data" << c; qDebug() << "Finished Importing data" << c;
if (c) { if (c) {
profile->Save(); PROFILE.Save();
if (daily) daily->ReloadGraphs(); if (daily) daily->ReloadGraphs();
if (overview) overview->ReloadGraphs(); if (overview) overview->ReloadGraphs();
//qDebug() << "overview->ReloadGraphs();"; //qDebug() << "overview->ReloadGraphs();";
@ -335,7 +341,7 @@ void MainWindow::on_action_About_triggered()
void MainWindow::on_actionDebug_toggled(bool checked) void MainWindow::on_actionDebug_toggled(bool checked)
{ {
pref["ShowDebug"]=checked; PROFILE["ShowDebug"]=checked;
if (checked) { if (checked) {
ui->logText->show(); ui->logText->show();
} else { } else {
@ -351,7 +357,7 @@ void MainWindow::on_action_Reset_Graph_Layout_triggered()
void MainWindow::on_action_Preferences_triggered() void MainWindow::on_action_Preferences_triggered()
{ {
PreferencesDialog pd(this,profile); PreferencesDialog pd(this,p_profile);
if (pd.exec()==PreferencesDialog::Accepted) { if (pd.exec()==PreferencesDialog::Accepted) {
qDebug() << "Preferences Accepted"; qDebug() << "Preferences Accepted";
pd.Save(); pd.Save();
@ -370,11 +376,11 @@ void MainWindow::on_oximetryButton_clicked()
{ {
bool first=false; bool first=false;
if (!oximetry) { if (!oximetry) {
if (!pref.Exists("HaveCMS50") || !pref["HaveCMS50"].toBool()) { if (!PROFILE.Exists("HaveCMS50") || !PROFILE["HaveCMS50"].toBool()) {
if (QMessageBox::question(this,"Question","Do you have a CMS50[x] Oximeter?\nOne is required to use this section.\nNote: This section is not fully completed yet.",QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) return; if (QMessageBox::question(this,"Question","Do you have a CMS50[x] Oximeter?\nOne is required to use this section.\nNote: This section is not fully completed yet.",QMessageBox::Yes,QMessageBox::No)==QMessageBox::No) return;
pref["HaveCMS50"]=true; PROFILE["HaveCMS50"]=true;
} }
oximetry=new Oximetry(ui->tabWidget,profile,daily->SharedWidget()); oximetry=new Oximetry(ui->tabWidget,daily->SharedWidget());
ui->tabWidget->insertTab(3,oximetry,tr("Oximetry")); ui->tabWidget->insertTab(3,oximetry,tr("Oximetry"));
first=true; first=true;
} }
@ -399,12 +405,12 @@ void MainWindow::replyFinished(QNetworkReply * reply)
QByteArray data=reply->readAll(); QByteArray data=reply->readAll();
QString a=data; QString a=data;
a=a.trimmed(); a=a.trimmed();
if (a>pref["VersionString"].toString()) { if (a>PREF["VersionString"].toString()) {
if (QMessageBox::question(this,"New Version","A newer version of SleepyHead is available, v"+a+".\nWould you like to update?",QMessageBox::Yes,QMessageBox::No)==QMessageBox::Yes) { if (QMessageBox::question(this,"New Version","A newer version of SleepyHead is available, v"+a+".\nWould you like to update?",QMessageBox::Yes,QMessageBox::No)==QMessageBox::Yes) {
QMessageBox::information(this,"Laziness Warning","I'd love to do it for you automatically, but it's not implemented yet.. :)",QMessageBox::Ok); QMessageBox::information(this,"Laziness Warning","I'd love to do it for you automatically, but it's not implemented yet.. :)",QMessageBox::Ok);
} }
} else { } else {
QMessageBox::information(this,"SleepyHead v"+pref["VersionString"].toString(),"You're already up to date!\nLatest version on sourceforge is v"+a,QMessageBox::Ok); QMessageBox::information(this,"SleepyHead v"+PREF["VersionString"].toString(),"You're already up to date!\nLatest version on sourceforge is v"+a,QMessageBox::Ok);
} }
} }
} else { } else {
@ -423,7 +429,7 @@ void MainWindow::on_action_Screenshot_triggered()
void MainWindow::DelayedScreenshot() void MainWindow::DelayedScreenshot()
{ {
QPixmap pixmap = QPixmap::grabWindow(this->winId()); QPixmap pixmap = QPixmap::grabWindow(this->winId());
QString a=pref.Get("{home}")+"/Screenshots"; QString a=PREF.Get("{home}")+"/Screenshots";
QDir dir(a); QDir dir(a);
if (!dir.exists()){ if (!dir.exists()){
dir.mkdir(a); dir.mkdir(a);
@ -454,7 +460,7 @@ void MainWindow::on_actionPrint_Report_triggered()
void MainWindow::on_action_Edit_Profile_triggered() void MainWindow::on_action_Edit_Profile_triggered()
{ {
NewProfile newprof(this); NewProfile newprof(this);
newprof.edit(pref["Profile"].toString()); newprof.edit(PREF["Profile"].toString());
newprof.exec(); newprof.exec();
} }

View File

@ -20,6 +20,8 @@ const int major_version=0;
const int minor_version=8; const int minor_version=8;
const int revision_number=6; const int revision_number=6;
extern Profile * profile;
namespace Ui { namespace Ui {
class MainWindow; class MainWindow;
} }
@ -96,7 +98,7 @@ private:
Overview * overview; Overview * overview;
Oximetry * oximetry; Oximetry * oximetry;
bool first_load; bool first_load;
Profile *profile; //Profile *profile;
QNetworkAccessManager *netmanager; QNetworkAccessManager *netmanager;
QMutex loglock,strlock; QMutex loglock,strlock;

View File

@ -11,21 +11,19 @@
#include <QDateTimeEdit> #include <QDateTimeEdit>
#include <QCalendarWidget> #include <QCalendarWidget>
#include <QFileDialog> #include <QFileDialog>
#include "SleepLib/profiles.h"
#include "overview.h" #include "overview.h"
#include "ui_overview.h" #include "ui_overview.h"
#include "Graphs/gXAxis.h" #include "Graphs/gXAxis.h"
#include "Graphs/gLineChart.h" #include "Graphs/gLineChart.h"
#include "Graphs/gYAxis.h" #include "Graphs/gYAxis.h"
Overview::Overview(QWidget *parent,Profile * _profile,gGraphView * shared) : Overview::Overview(QWidget *parent,gGraphView * shared) :
QWidget(parent), QWidget(parent),
ui(new Ui::Overview), ui(new Ui::Overview),
profile(_profile),
m_shared(shared) m_shared(shared)
{ {
ui->setupUi(this); ui->setupUi(this);
Q_ASSERT(profile!=NULL);
// Create dummy day & session for holding eventlists. // Create dummy day & session for holding eventlists.
//day=new Day(mach); //day=new Day(mach);
@ -57,7 +55,7 @@ Overview::Overview(QWidget *parent,Profile * _profile,gGraphView * shared) :
SET=new gGraph(GraphView,"Settings",default_height,0); SET=new gGraph(GraphView,"Settings",default_height,0);
LK=new gGraph(GraphView,"Leaks",default_height,0); LK=new gGraph(GraphView,"Leaks",default_height,0);
uc=new SummaryChart(profile,"Hours",GT_BAR); uc=new SummaryChart("Hours",GT_BAR);
uc->addSlice("",QColor("green"),ST_HOURS); uc->addSlice("",QColor("green"),ST_HOURS);
UC->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin); UC->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
gXAxis *gx=new gXAxis(); gXAxis *gx=new gXAxis();
@ -67,7 +65,7 @@ Overview::Overview(QWidget *parent,Profile * _profile,gGraphView * shared) :
UC->AddLayer(new gXGrid()); UC->AddLayer(new gXGrid());
bc=new SummaryChart(profile,"AHI",GT_BAR); bc=new SummaryChart("AHI",GT_BAR);
bc->addSlice(CPAP_Hypopnea,QColor("blue"),ST_CPH); bc->addSlice(CPAP_Hypopnea,QColor("blue"),ST_CPH);
bc->addSlice(CPAP_Apnea,QColor("dark green"),ST_CPH); bc->addSlice(CPAP_Apnea,QColor("dark green"),ST_CPH);
bc->addSlice(CPAP_Obstructive,QColor("#40c0ff"),ST_CPH); bc->addSlice(CPAP_Obstructive,QColor("#40c0ff"),ST_CPH);
@ -79,7 +77,7 @@ Overview::Overview(QWidget *parent,Profile * _profile,gGraphView * shared) :
AHI->AddLayer(bc); AHI->AddLayer(bc);
AHI->AddLayer(new gXGrid()); AHI->AddLayer(new gXGrid());
set=new SummaryChart(profile,"",GT_LINE); set=new SummaryChart("",GT_LINE);
//set->addSlice("SysOneResistSet",QColor("grey"),ST_SETAVG); //set->addSlice("SysOneResistSet",QColor("grey"),ST_SETAVG);
set->addSlice("HumidSet",QColor("blue"),ST_SETAVG); set->addSlice("HumidSet",QColor("blue"),ST_SETAVG);
set->addSlice("FlexSet",QColor("red"),ST_SETAVG); set->addSlice("FlexSet",QColor("red"),ST_SETAVG);
@ -93,7 +91,7 @@ Overview::Overview(QWidget *parent,Profile * _profile,gGraphView * shared) :
SET->AddLayer(set); SET->AddLayer(set);
SET->AddLayer(new gXGrid()); SET->AddLayer(new gXGrid());
pr=new SummaryChart(profile,"cmH2O",GT_LINE); pr=new SummaryChart("cmH2O",GT_LINE);
PR->forceMinY(4.0); PR->forceMinY(4.0);
//PR->forceMaxY(12.0); //PR->forceMaxY(12.0);
pr->addSlice(CPAP_Pressure,QColor("dark green"),ST_WAVG); pr->addSlice(CPAP_Pressure,QColor("dark green"),ST_WAVG);
@ -110,7 +108,7 @@ Overview::Overview(QWidget *parent,Profile * _profile,gGraphView * shared) :
PR->AddLayer(pr); PR->AddLayer(pr);
PR->AddLayer(new gXGrid()); PR->AddLayer(new gXGrid());
lk=new SummaryChart(profile,"Avg Leak",GT_LINE); lk=new SummaryChart("Avg Leak",GT_LINE);
lk->addSlice(CPAP_Leak,QColor("dark grey"),ST_90P); lk->addSlice(CPAP_Leak,QColor("dark grey"),ST_90P);
lk->addSlice(CPAP_Leak,QColor("dark blue"),ST_WAVG); lk->addSlice(CPAP_Leak,QColor("dark blue"),ST_WAVG);
//lk->addSlice(CPAP_Leak,QColor("dark yellow")); //lk->addSlice(CPAP_Leak,QColor("dark yellow"));
@ -123,7 +121,7 @@ Overview::Overview(QWidget *parent,Profile * _profile,gGraphView * shared) :
LK->AddLayer(new gXGrid()); LK->AddLayer(new gXGrid());
NPB=new gGraph(GraphView,"% in PB",default_height,0); NPB=new gGraph(GraphView,"% in PB",default_height,0);
NPB->AddLayer(npb=new SummaryChart(profile,"% PB",GT_BAR)); NPB->AddLayer(npb=new SummaryChart("% PB",GT_BAR));
npb->addSlice(CPAP_CSR,QColor("light green"),ST_SPH); npb->addSlice(CPAP_CSR,QColor("light green"),ST_SPH);
NPB->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin); NPB->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
gx=new gXAxis(); gx=new gXAxis();
@ -164,8 +162,8 @@ Overview::~Overview()
} }
void Overview::ReloadGraphs() void Overview::ReloadGraphs()
{ {
ui->dateStart->setDate(profile->FirstDay()); ui->dateStart->setDate(p_profile->FirstDay());
ui->dateEnd->setDate(profile->LastDay()); ui->dateEnd->setDate(p_profile->LastDay());
GraphView->setDay(NULL); GraphView->setDay(NULL);
} }
@ -187,8 +185,8 @@ void Overview::UpdateCalendarDay(QDateEdit * dateedit,QDate date)
cpapcol.setFontWeight(QFont::Bold); cpapcol.setFontWeight(QFont::Bold);
oxiday.setForeground(QBrush(Qt::red, Qt::SolidPattern)); oxiday.setForeground(QBrush(Qt::red, Qt::SolidPattern));
oxiday.setFontWeight(QFont::Bold); oxiday.setFontWeight(QFont::Bold);
bool hascpap=profile->GetDay(date,MT_CPAP)!=NULL; bool hascpap=PROFILE.GetDay(date,MT_CPAP)!=NULL;
bool hasoxi=profile->GetDay(date,MT_OXIMETER)!=NULL; bool hasoxi=PROFILE.GetDay(date,MT_OXIMETER)!=NULL;
if (hascpap) { if (hascpap) {
if (hasoxi) { if (hasoxi) {
@ -196,7 +194,7 @@ void Overview::UpdateCalendarDay(QDateEdit * dateedit,QDate date)
} else { } else {
calendar->setDateTextFormat(date,cpapcol); calendar->setDateTextFormat(date,cpapcol);
} }
} else if (profile->GetDay(date)) { } else if (p_profile->GetDay(date)) {
calendar->setDateTextFormat(date,bold); calendar->setDateTextFormat(date,bold);
} else { } else {
calendar->setDateTextFormat(date,normal); calendar->setDateTextFormat(date,normal);
@ -251,7 +249,7 @@ void Overview::on_toolButton_clicked()
QString Overview::GetHTML() QString Overview::GetHTML()
{ {
if (!report) { if (!report) {
report=new Report(this,profile,m_shared,this); report=new Report(this,m_shared,this);
report->hide(); report->hide();
} }
@ -281,7 +279,7 @@ void Overview::on_printButton_clicked()
void Overview::on_htmlButton_clicked() void Overview::on_htmlButton_clicked()
{ {
QString html=GetHTML(); QString html=GetHTML();
QString filename=QFileDialog::getSaveFileName(this,tr("Save HTML Report"),pref.Get("{home}"),tr("HTML Documents (*.html)")); QString filename=QFileDialog::getSaveFileName(this,tr("Save HTML Report"),PREF.Get("{home}"),tr("HTML Documents (*.html)"));
if (!filename.isEmpty()) { if (!filename.isEmpty()) {
QFile file(filename); QFile file(filename);
file.open(QIODevice::WriteOnly); file.open(QIODevice::WriteOnly);

View File

@ -26,7 +26,7 @@ class Overview : public QWidget
Q_OBJECT Q_OBJECT
public: public:
explicit Overview(QWidget *parent,Profile *profile, gGraphView *shared=NULL); explicit Overview(QWidget *parent, gGraphView *shared=NULL);
~Overview(); ~Overview();
void ReloadGraphs(); void ReloadGraphs();
@ -60,7 +60,6 @@ private slots:
private: private:
Ui::Overview *ui; Ui::Overview *ui;
Profile *profile;
gGraphView *GraphView; gGraphView *GraphView;
MyScrollBar *scrollbar; MyScrollBar *scrollbar;
QHBoxLayout *layout; QHBoxLayout *layout;

View File

@ -13,23 +13,21 @@
#include "Graphs/gLineChart.h" #include "Graphs/gLineChart.h"
#include "Graphs/gYAxis.h" #include "Graphs/gYAxis.h"
Oximetry::Oximetry(QWidget *parent,Profile * _profile,gGraphView * shared) : Oximetry::Oximetry(QWidget *parent,gGraphView * shared) :
QWidget(parent), QWidget(parent),
ui(new Ui::Oximetry), ui(new Ui::Oximetry)
profile(_profile)
{ {
m_shared=shared; m_shared=shared;
ui->setupUi(this); ui->setupUi(this);
Q_ASSERT(profile!=NULL);
port=NULL; port=NULL;
portname=""; portname="";
mach=profile->GetMachine(MT_OXIMETER); mach=p_profile->GetMachine(MT_OXIMETER);
if (!mach) { if (!mach) {
CMS50Loader *l=dynamic_cast<CMS50Loader *>(GetLoader("CMS50")); CMS50Loader *l=dynamic_cast<CMS50Loader *>(GetLoader("CMS50"));
if (l) { if (l) {
mach=l->CreateMachine(profile); mach=l->CreateMachine(p_profile);
} }
qDebug() << "Create Oximeter device"; qDebug() << "Create Oximeter device";
} }
@ -324,7 +322,7 @@ void Oximetry::on_RunButton_toggled(bool checked)
sess->updateLast(sess->last(OXI_Plethy)); sess->updateLast(sess->last(OXI_Plethy));
sess->SetChanged(true); sess->SetChanged(true);
mach->AddSession(sess,profile); mach->AddSession(sess,p_profile);
mach->Save(); mach->Save();
ev_plethy=session->AddEventList(OXI_Plethy,EVL_Waveform,1,0,0,0,1000.0/50.0); ev_plethy=session->AddEventList(OXI_Plethy,EVL_Waveform,1,0,0,0,1000.0/50.0);
@ -719,7 +717,7 @@ void Oximetry::on_ImportButton_clicked()
session->wavg(OXI_SPO2); session->wavg(OXI_SPO2);
session->SetChanged(true); session->SetChanged(true);
mach->AddSession(session,profile); mach->AddSession(session,p_profile);
mach->Save(); mach->Save();
// Output Pulse & SPO2 here.. // Output Pulse & SPO2 here..
delete [] buffer; delete [] buffer;

View File

@ -32,7 +32,7 @@ class Oximetry : public QWidget
Q_OBJECT Q_OBJECT
public: public:
explicit Oximetry(QWidget *parent, Profile * _profile,gGraphView * shared=NULL); explicit Oximetry(QWidget *parent, gGraphView * shared=NULL);
~Oximetry(); ~Oximetry();
void RedrawGraphs(); void RedrawGraphs();
@ -53,7 +53,6 @@ private:
void UpdatePlethy(qint8 plethy); void UpdatePlethy(qint8 plethy);
Ui::Oximetry *ui; Ui::Oximetry *ui;
Profile *profile;
gGraphView *GraphView; gGraphView *GraphView;
MyScrollBar *scrollbar; MyScrollBar *scrollbar;

View File

@ -19,30 +19,30 @@ PreferencesDialog::PreferencesDialog(QWidget *parent,Profile * _profile) :
//i=ui->timeZoneCombo->findText((*profile)["TimeZone"].toString()); //i=ui->timeZoneCombo->findText((*profile)["TimeZone"].toString());
//ui->timeZoneCombo->setCurrentIndex(i); //ui->timeZoneCombo->setCurrentIndex(i);
QTime t=pref["DaySplitTime"].toTime(); QTime t=(*profile)["DaySplitTime"].toTime();
ui->timeEdit->setTime(t); ui->timeEdit->setTime(t);
int val; int val;
val=pref["CombineCloserSessions"].toInt(); val=(*profile)["CombineCloserSessions"].toInt();
ui->combineSlider->setValue(val); ui->combineSlider->setValue(val);
if (val>0) { if (val>0) {
ui->combineLCD->display(val); ui->combineLCD->display(val);
} else ui->combineLCD->display(tr("OFF")); } else ui->combineLCD->display(tr("OFF"));
val=pref["IgnoreShorterSessions"].toInt(); val=(*profile)["IgnoreShorterSessions"].toInt();
ui->IgnoreSlider->setValue(val); ui->IgnoreSlider->setValue(val);
if (val>0) { if (val>0) {
ui->IgnoreLCD->display(val); ui->IgnoreLCD->display(val);
} else ui->IgnoreLCD->display(tr("OFF")); } else ui->IgnoreLCD->display(tr("OFF"));
ui->overlayFlagsCombo->setCurrentIndex(pref["AlwaysShowOverlayBars"].toInt()); ui->overlayFlagsCombo->setCurrentIndex((*profile)["AlwaysShowOverlayBars"].toInt());
ui->useAntiAliasing->setChecked(pref["UseAntiAliasing"].toBool()); ui->useAntiAliasing->setChecked((*profile)["UseAntiAliasing"].toBool());
ui->memoryHogCheckbox->setChecked(pref["MemoryHog"].toBool()); ui->memoryHogCheckbox->setChecked((*profile)["MemoryHog"].toBool());
ui->useGraphSnapshots->setChecked(pref["EnableGraphSnapshots"].toBool()); ui->useGraphSnapshots->setChecked((*profile)["EnableGraphSnapshots"].toBool());
ui->intentionalLeakEdit->setValue(pref["IntentionalLeak"].toDouble()); ui->intentionalLeakEdit->setValue((*profile)["IntentionalLeak"].toDouble());
ui->useMultithreading->setChecked(pref["EnableMultithreading"].toBool()); ui->useMultithreading->setChecked((*profile)["EnableMultithreading"].toBool());
ui->eventTable->setColumnWidth(0,40); ui->eventTable->setColumnWidth(0,40);
ui->eventTable->setColumnWidth(1,55); ui->eventTable->setColumnWidth(1,55);
@ -131,18 +131,18 @@ void PreferencesDialog::Save()
(*profile)["UnitSystem"]=ui->unitCombo->currentText(); (*profile)["UnitSystem"]=ui->unitCombo->currentText();
//(*profile)["TimeZone"]=ui->timeZoneCombo->currentText(); //(*profile)["TimeZone"]=ui->timeZoneCombo->currentText();
pref["CombineCloserSessions"]=ui->combineSlider->value(); (*profile)["CombineCloserSessions"]=ui->combineSlider->value();
pref["IgnoreShorterSessions"]=ui->IgnoreSlider->value(); (*profile)["IgnoreShorterSessions"]=ui->IgnoreSlider->value();
pref["MemoryHog"]=ui->memoryHogCheckbox->isChecked(); (*profile)["MemoryHog"]=ui->memoryHogCheckbox->isChecked();
pref["DaySplitTime"]=ui->timeEdit->time(); (*profile)["DaySplitTime"]=ui->timeEdit->time();
pref["AlwaysShowOverlayBars"]=ui->overlayFlagsCombo->currentIndex(); (*profile)["AlwaysShowOverlayBars"]=ui->overlayFlagsCombo->currentIndex();
pref["UseAntiAliasing"]=ui->useAntiAliasing->isChecked(); (*profile)["UseAntiAliasing"]=ui->useAntiAliasing->isChecked();
pref["MemoryHog"]=ui->memoryHogCheckbox->isChecked(); (*profile)["MemoryHog"]=ui->memoryHogCheckbox->isChecked();
pref["EnableGraphSnapshots"]=ui->useGraphSnapshots->isChecked(); (*profile)["EnableGraphSnapshots"]=ui->useGraphSnapshots->isChecked();
pref["IntentionalLeak"]=ui->intentionalLeakEdit->value(); (*profile)["IntentionalLeak"]=ui->intentionalLeakEdit->value();
pref["EnableMultithreading"]=ui->useMultithreading->isChecked(); (*profile)["EnableMultithreading"]=ui->useMultithreading->isChecked();
for (QHash<int,QColor>::iterator i=m_new_colors.begin();i!=m_new_colors.end();i++) { for (QHash<int,QColor>::iterator i=m_new_colors.begin();i!=m_new_colors.end();i++) {
schema::Channel &chan=schema::channel[i.key()]; schema::Channel &chan=schema::channel[i.key()];
@ -154,7 +154,7 @@ void PreferencesDialog::Save()
qDebug() << "TODO: Save channels.xml to update channel data"; qDebug() << "TODO: Save channels.xml to update channel data";
profile->Save(); profile->Save();
pref.Save(); PREF.Save();
} }
void PreferencesDialog::on_combineSlider_valueChanged(int position) void PreferencesDialog::on_combineSlider_valueChanged(int position)

View File

@ -29,12 +29,12 @@ ProfileSelect::ProfileSelect(QWidget *parent) :
QString name; QString name;
for (QHash<QString,Profile *>::iterator p=Profiles::profiles.begin();p!=Profiles::profiles.end();p++) { for (QHash<QString,Profile *>::iterator p=Profiles::profiles.begin();p!=Profiles::profiles.end();p++) {
//str.append(p.key()); //str.append(p.key());
Profile &profile=**p; //Profile &profile=**p;
name=p.key(); name=p.key();
// if (!profile["FirstName"].toString().isEmpty()) // if (!PROFILE["FirstName"].toString().isEmpty())
// name+=" ("+profile["FirstName"].toString()+" "+profile["LastName"].toString()+")"; // name+=" ("+PROFILE["FirstName"].toString()+" "+PROFILE["LastName"].toString()+")";
QStandardItem *item=new QStandardItem(*new QIcon(":/icons/moon.png"),name); QStandardItem *item=new QStandardItem(*new QIcon(":/icons/moon.png"),name);
if (pref.Exists("Profile") && (name==pref["Profile"].toString())) { if (PREF.Exists("Profile") && (name==PREF["Profile"].toString())) {
sel=i; sel=i;
} }
item->setData(p.key()); item->setData(p.key());
@ -49,10 +49,10 @@ ProfileSelect::ProfileSelect(QWidget *parent) :
if (sel>=0) ui->listView->setCurrentIndex(model->item(sel)->index()); if (sel>=0) ui->listView->setCurrentIndex(model->item(sel)->index());
m_tries=0; m_tries=0;
pref["SkipLogin"]=false; PREF["SkipLogin"]=false;
if ((i==1) && pref["SkipLogin"].toBool()) { if ((i==1) && PREF["SkipLogin"].toBool()) {
if (!Profiles::profiles.contains(name)) if (!Profiles::profiles.contains(name))
pref["Profile"]=name; PREF["Profile"]=name;
QTimer::singleShot(0,this,SLOT(earlyExit())); QTimer::singleShot(0,this,SLOT(earlyExit()));
hide(); hide();
} }
@ -189,7 +189,7 @@ void ProfileSelect::on_listView_activated(const QModelIndex &index)
if (!profile) return; if (!profile) return;
if (!profile->Exists("Password")) { if (!profile->Exists("Password")) {
m_selectedProfile=name; m_selectedProfile=name;
pref["Profile"]=name; PREF["Profile"]=name;
accept(); accept();
return; return;
} else { } else {
@ -207,7 +207,7 @@ void ProfileSelect::on_listView_activated(const QModelIndex &index)
QByteArray ba=e->text().toUtf8(); QByteArray ba=e->text().toUtf8();
if (QCryptographicHash::hash(ba,QCryptographicHash::Sha1).toHex()==(*profile)["Password"]) { if (QCryptographicHash::hash(ba,QCryptographicHash::Sha1).toHex()==(*profile)["Password"]) {
m_selectedProfile=name; m_selectedProfile=name;
pref["Profile"]=name; PREF["Profile"]=name;
accept(); accept();
return; return;
} }

View File

@ -11,16 +11,13 @@
#include <QFile> #include <QFile>
#include <QDir> #include <QDir>
Report::Report(QWidget *parent, Profile * _profile, gGraphView * shared, Overview * overview) : Report::Report(QWidget *parent, gGraphView * shared, Overview * overview) :
QWidget(parent), QWidget(parent),
ui(new Ui::Report), ui(new Ui::Report),
profile(_profile),
m_overview(overview) m_overview(overview)
{ {
ui->setupUi(this); ui->setupUi(this);
Q_ASSERT(profile!=NULL);
GraphView=new gGraphView(this,shared); GraphView=new gGraphView(this,shared);
setMaximumSize(graph_print_width,800); setMaximumSize(graph_print_width,800);
setMinimumSize(graph_print_width,800); setMinimumSize(graph_print_width,800);
@ -78,8 +75,8 @@ void Report::ReloadGraphs()
for (QHash<QString,gGraph *>::iterator g=graphs.begin();g!=graphs.end();g++) { for (QHash<QString,gGraph *>::iterator g=graphs.begin();g!=graphs.end();g++) {
g.value()->setDay(NULL); g.value()->setDay(NULL);
} }
startDate=profile->FirstDay(); startDate=PROFILE.FirstDay();
endDate=profile->LastDay(); endDate=PROFILE.LastDay();
for (QHash<QString,gGraph *>::iterator g=graphs.begin();g!=graphs.end();g++) { for (QHash<QString,gGraph *>::iterator g=graphs.begin();g!=graphs.end();g++) {
g.value()->ResetBounds(); g.value()->ResetBounds();
} }
@ -120,9 +117,9 @@ QString Report::ParseTemplate(QString input)
QString key=block.section(".",1,-1); QString key=block.section(".",1,-1);
QHash<QString,QVariant> * pr=NULL; QHash<QString,QVariant> * pr=NULL;
if (code=="profile") { if (code=="profile") {
pr=&profile->p_preferences; pr=&PROFILE.p_preferences;
} else if (code=="pref") { } else if (code=="pref") {
pr=&pref.p_preferences; pr=&PREF.p_preferences;
} else if (code=="local") { } else if (code=="local") {
pr=&locals; pr=&locals;
} }
@ -189,7 +186,7 @@ QString Report::GenerateReport(QString templ,QDate start, QDate end)
startDate=start; startDate=start;
endDate=end; endDate=end;
QString filename=pref.Get("{home}/Reports"); QString filename=PREF.Get("{home}/Reports");
QDir dir(filename); QDir dir(filename);
if (!dir.exists()) { if (!dir.exists()) {
dir.mkdir(filename); dir.mkdir(filename);
@ -221,18 +218,18 @@ QString Report::GenerateReport(QString templ,QDate start, QDate end)
locals["end"]=end; locals["end"]=end;
locals["width"]=graph_print_width-10; locals["width"]=graph_print_width-10;
if ((*profile).Exists("DOB") && !(*profile)["DOB"].toString().isEmpty()) { if (PROFILE.Exists("DOB") && !PROFILE["DOB"].toString().isEmpty()) {
QDate dob=(*profile)["DOB"].toDate(); QDate dob=PROFILE["DOB"].toDate();
QDateTime d1(dob,QTime(0,0,0)); QDateTime d1(dob,QTime(0,0,0));
QDateTime d2(QDate::currentDate(),QTime(0,0,0)); QDateTime d2(QDate::currentDate(),QTime(0,0,0));
int years=d1.daysTo(d2)/365.25; int years=d1.daysTo(d2)/365.25;
locals["Age"]=years; locals["Age"]=years;
} }
if (!(*profile).Exists("UnitSystem")) { if (!PROFILE.Exists("UnitSystem")) {
(*profile)["UnitSystem"]="Metric"; PROFILE["UnitSystem"]="Metric";
} }
if ((*profile).Exists("Height") && !(*profile)["Height"].toString().isEmpty()) { if (PROFILE.Exists("Height") && !PROFILE["Height"].toString().isEmpty()) {
if ((*profile)["UnitSystem"].toString()=="Metric") if (PROFILE["UnitSystem"].toString()=="Metric")
locals["DistanceMeasure"]="cm"; locals["DistanceMeasure"]="cm";
else locals["DistanceMeasure"]=" inches"; else locals["DistanceMeasure"]=" inches";
} }

View File

@ -21,7 +21,7 @@ class Report : public QWidget
Q_OBJECT Q_OBJECT
public: public:
explicit Report(QWidget *parent, Profile * _profile, gGraphView * shared, Overview * overview); explicit Report(QWidget *parent, gGraphView * shared, Overview * overview);
~Report(); ~Report();
QString GenerateReport(QString templ,QDate start, QDate end); QString GenerateReport(QString templ,QDate start, QDate end);
void ReloadGraphs(); void ReloadGraphs();
@ -32,7 +32,6 @@ public:
private: private:
Ui::Report *ui; Ui::Report *ui;
Profile * profile;
Overview * m_overview; Overview * m_overview;
gGraphView * shared; gGraphView * shared;
gGraphView * GraphView; gGraphView * GraphView;