From 263530746f12e971ccd1430c3a593a4f01dabc60 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 28 Nov 2011 02:07:28 +1000 Subject: [PATCH] Make Graph preferences, heights and orders persistant --- Graphs/gGraphView.cpp | 146 ++++++++++++++++++++++++++++++++++------ Graphs/gGraphView.h | 24 ++++--- daily.cpp | 25 ++++--- docs/channels.xml | 2 +- docs/release_notes.html | 4 +- overview.cpp | 11 +-- oximetry.cpp | 26 +++---- preferencesdialog.cpp | 8 +-- 8 files changed, 185 insertions(+), 61 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index cbf6bb34..d25ebbac 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -10,6 +10,7 @@ #include "SleepLib/profiles.h" #include #include +#include #ifdef Q_WS_MAC #define USE_RENDERTEXT @@ -896,10 +897,8 @@ gGraph::gGraph(gGraphView *graphview,QString title,int height,short group) : m_quad=new GLShortBuffer(64,GL_QUADS); m_quad->forceAntiAlias(true); f_miny=f_maxy=0; - m_forceMinY=m_forceMaxY=false; + m_enforceMinY=m_enforceMaxY=false; rec_miny=rec_maxy=0; - m_recMinY=true; - m_recMaxY=false; } gGraph::~gGraph() { @@ -1507,7 +1506,7 @@ EventDataType gGraph::MinY() { bool first=true; EventDataType val=0,tmp; - if (m_forceMinY) return rmin_y=f_miny; + if (m_enforceMinY) return rmin_y=f_miny; for (QVector::iterator l=m_layers.begin();l!=m_layers.end();l++) { if ((*l)->isEmpty()) continue; tmp=(*l)->Miny(); @@ -1526,7 +1525,7 @@ EventDataType gGraph::MaxY() { bool first=true; EventDataType val=0,tmp; - if (m_forceMaxY) return rmax_y=f_maxy; + if (m_enforceMaxY) return rmax_y=f_maxy; for (QVector::iterator l=m_layers.begin();l!=m_layers.end();l++) { if ((*l)->isEmpty()) continue; tmp=(*l)->Maxy(); @@ -1599,17 +1598,24 @@ void gGraph::ToolTip(QString text, int x, int y, int timeout) void gGraph::roundY(EventDataType &miny, EventDataType &maxy) { - int m; - if (m_recMinY) { - if (miny>rec_miny) - miny=rec_miny; - } - if (m_recMaxY) { - if (maxy500) { m=ceil(maxy/100.0); maxy=m*100; @@ -1633,10 +1639,13 @@ void gGraph::roundY(EventDataType &miny, EventDataType &maxy) //if(m<0) m--; //miny=m*10; } else if (maxy>=5) { + if (maxy==miny) { + int i=maxy; + } m=ceil(maxy/5.0)+1; maxy=m*5; - //m=floor(miny/5.0); - //miny=m*5; + m=floor(miny/5.0); + miny=m*5; } else { if (maxy==miny && maxy==0) { maxy=0.5; @@ -1649,10 +1658,9 @@ void gGraph::roundY(EventDataType &miny, EventDataType &maxy) miny/=4.0; } } - //if (m_forceMinY && minyf_maxy) maxy=f_maxy; - if (m_forceMinY) miny=f_miny; - if (m_forceMaxY) maxy=f_maxy; + + if (m_enforceMinY) { miny=f_miny; } + if (m_enforceMaxY) { maxy=f_maxy; } } gGraphView::gGraphView(QWidget *parent, gGraphView * shared) : @@ -1801,7 +1809,11 @@ void gGraphView::addGraph(gGraph *g,short group) if (!m_graphs.contains(g)) { g->setGroup(group); m_graphs.push_back(g); - + if (!m_graphsbytitle.contains(g->title())) { + m_graphsbytitle[g->title()]=g; + } else { + qDebug() << "Can't have to graphs with the same title in one GraphView!!"; + } // updateScrollBar(); } } @@ -2482,3 +2494,93 @@ void MyScrollBar::SendWheelEvent(QWheelEvent * e) { wheelEvent(e); } + +const quint32 gvmagic=0x41756728; +const quint16 gvversion=0; + +void gGraphView::SaveSettings(QString title) +{ + QString filename=PROFILE.Get("{DataFolder}")+QDir::separator()+title.toLower()+".shg"; + QFile f(filename); + f.open(QFile::WriteOnly); + QDataStream out(&f); + out.setVersion(QDataStream::Qt_4_6); + out.setByteOrder(QDataStream::LittleEndian); + + out << (quint32)gvmagic; + out << (quint16)gvversion; + + out << (qint16)size(); + for (qint16 i=0;ititle(); + out << m_graphs[i]->height(); + out << m_graphs[i]->visible(); + out << m_graphs[i]->RecMinY(); + out << m_graphs[i]->RecMaxY(); + } + + f.close(); +} + +bool gGraphView::LoadSettings(QString title) +{ + QString filename=PROFILE.Get("{DataFolder}")+QDir::separator()+title.toLower()+".shg"; + QFile f(filename); + if (!f.exists()) return false; + + f.open(QFile::ReadOnly); + QDataStream in(&f); + in.setVersion(QDataStream::Qt_4_6); + in.setByteOrder(QDataStream::LittleEndian); + + quint32 t1; + quint16 t2; + + in >> t1; + if (t1!=gvmagic) { + qDebug() << "gGraphView" << title << "settings magic doesn't match" << t1 << gvmagic; + return false; + } + in >> t2; + if (t2!=gvversion) { + qDebug() << "gGraphView" << title << "version doesn't match"; + return false; + } + + qint16 siz; + in >> siz; + QString name; + float hght; + bool vis; + EventDataType recminy,recmaxy; + + QVector neworder; + QHash::iterator gi; + + for (int i=0;i> name; + in >> hght; + in >> vis; + in >> recminy; + in >> recmaxy; + gi=m_graphsbytitle.find(name); + if (gi==m_graphsbytitle.end()) { + qDebug() << "Graph" << name << "has been renamed or removed"; + } else { + gGraph *g=gi.value(); + neworder.push_back(g); + g->setHeight(hght); + g->setVisible(vis); + g->setRecMinY(recminy); + g->setRecMaxY(recmaxy); + } + } + + if (neworder.size()==m_graphs.size()) { + m_graphs=neworder; + } + + f.close(); + return true; +} + diff --git a/Graphs/gGraphView.h b/Graphs/gGraphView.h index 2863f7fa..6b00b477 100644 --- a/Graphs/gGraphView.h +++ b/Graphs/gGraphView.h @@ -307,17 +307,21 @@ public: virtual void SetMaxX(qint64 v); virtual void SetMinY(EventDataType v); virtual void SetMaxY(EventDataType v); - virtual void forceMinY(EventDataType v) { f_miny=v; m_forceMinY=true; } - virtual void forceMaxY(EventDataType v) { f_maxy=v; m_forceMaxY=true; } - virtual void recMinY(EventDataType v) { rec_miny=v; m_recMinY=true; } - virtual void recMaxY(EventDataType v) { rec_maxy=v; m_recMaxY=true; } + virtual void setForceMinY(EventDataType v) { f_miny=v; m_enforceMinY=true; } + virtual void setForceMaxY(EventDataType v) { f_maxy=v; m_enforceMaxY=true; } + virtual EventDataType forceMinY() { return rec_miny; } + virtual EventDataType forceMaxY() { return rec_maxy; } + virtual void setRecMinY(EventDataType v) { rec_miny=v; } + virtual void setRecMaxY(EventDataType v) { rec_maxy=v; } + virtual EventDataType RecMinY() { return rec_miny; } + virtual EventDataType RecMaxY() { return rec_maxy; } void resize(int width, int height); // margin recalcs.. qint64 max_x,min_x,rmax_x,rmin_x; EventDataType max_y,min_y,rmax_y,rmin_y, f_miny, f_maxy, rec_miny, rec_maxy; - void unforceMinY() { m_forceMinY=false; } - void unforceMaxY() { m_forceMaxY=false; } + void setEnforceMinY(bool b) { m_enforceMinY=b; } + void setEnforceMaxY(bool b) { m_enforceMaxY=b; } bool blockZoom() { return m_blockzoom; } void setBlockZoom(bool b) { m_blockzoom=b; } int flipY(int y); // flip GL coordinates @@ -373,8 +377,7 @@ protected: short m_lastx23; Day * m_day; GLBuffer * m_quad; - bool m_forceMinY,m_forceMaxY; - bool m_recMinY,m_recMaxY; + bool m_enforceMinY,m_enforceMaxY; signals: protected slots: @@ -398,6 +401,10 @@ public: void ResetBounds(bool refresh=true); //short group=0); void SetXBounds(qint64 minx, qint64 maxx, short group=0,bool refresh=true); + void SaveSettings(QString title); + bool LoadSettings(QString title); + + int findGraph(QString name); //bool hasGraphs() { return m_graphs.size()>0; } @@ -468,6 +475,7 @@ protected: gGraphView *m_shared; // convenient link to daily's graphs. QVector m_graphs; + QHash m_graphsbytitle; int m_offsetY,m_offsetX; // Scroll Offsets float m_scaleY; diff --git a/daily.cpp b/daily.cpp index a95aede1..8877b615 100644 --- a/daily.cpp +++ b/daily.cpp @@ -89,8 +89,8 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw) TE=new gGraph(GraphView,"Te",default_height); TI=new gGraph(GraphView,"Ti",default_height); TgMV=new gGraph(GraphView,"TgMV",default_height); - INTPULSE=new gGraph(GraphView,"Pulse",default_height,1); - INTSPO2=new gGraph(GraphView,"SPO2",default_height,1); + INTPULSE=new gGraph(GraphView,"R-Pulse",default_height,1); + INTSPO2=new gGraph(GraphView,"R-SPO2",default_height,1); PULSE=new gGraph(GraphView,"Pulse",default_height,1); SPO2=new gGraph(GraphView,"SPO2",default_height,1); PLETHY=new gGraph(GraphView,"Plethy",default_height,1); @@ -204,14 +204,17 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw) SPO2->AddLayer(AddOXI(new gLineChart(OXI_SPO2,Qt::blue,square))); PLETHY->AddLayer(AddOXI(new gLineChart(OXI_Plethy,Qt::darkBlue,false))); - SPO2->forceMaxY(100); - SPO2->forceMinY(75); - PULSE->forceMinY(40); + //FRW->setRecMinY(-120); + //FRW->setRecMaxY(0); - LEAK->recMinY(0); - LEAK->recMaxY(80); - PRD->recMinY(4.0); - PRD->recMaxY(15.0); + /*SPO2->setRecMaxY(100); + SPO2->setRecMinY(75); + PULSE->setRecMinY(40); + + LEAK->setRecMinY(0); + LEAK->setRecMaxY(80); + PRD->setRecMinY(4.0); + PRD->setRecMaxY(15.0); */ for (int i=0;iAddLayer(new gYAxis(),LayerLeft,gYAxis::Margin); graphs[i]->AddLayer(new gXAxis(),LayerBottom,0,20); @@ -240,12 +243,16 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw) ui->evViewSlider->setValue(ews); ui->evViewLCD->display(ews); + GraphView->LoadSettings("Daily"); + // TODO: Add preference to hide do this for Widget Haters.. //ui->calNavWidget->hide(); } Daily::~Daily() { + GraphView->SaveSettings("Daily"); + disconnect(ui->webView,SIGNAL(linkClicked(QUrl)),this,SLOT(on_Link_clicked(QUrl))); // Save any last minute changes.. if (previous_date.isValid()) diff --git a/docs/channels.xml b/docs/channels.xml index b8ce6693..b15be40d 100644 --- a/docs/channels.xml +++ b/docs/channels.xml @@ -48,7 +48,7 @@ One id code per item - + diff --git a/docs/release_notes.html b/docs/release_notes.html index 7ab29579..626293c1 100644 --- a/docs/release_notes.html +++ b/docs/release_notes.html @@ -13,8 +13,10 @@
  • Complete rewrite of Oximetery Tab, it's now (hopefully) working much better
  • Sync problems with Live serial CMS50 recording fixed.
  • Preference option to Skip Login Window
  • -
  • Can change how much data is shown around events selected in the Event List.
  • +
  • Can now change how much data is shown around events selected in the Event List.
  • Import now remembers your locations.. There is a preferences tab to edit common locations
  • +
  • New Respiratory Rate graph for PRS1 users
  • +
  • New Graph tab in Preferences for changing individual graph settings
  • Quite a few other little bugfixes I've forgotten about.

  • What's still missing/broken?
    diff --git a/overview.cpp b/overview.cpp index fcf64255..359f7ba0 100644 --- a/overview.cpp +++ b/overview.cpp @@ -108,13 +108,13 @@ Overview::Overview(QWidget *parent,gGraphView * shared) : set->addSlice("HumidSet",QColor("blue"),ST_SETWAVG); set->addSlice("FlexSet",QColor("red"),ST_SETWAVG); //set->addSlice("PAPMode",QColor("red"),ST_SETAVG); - SET->forceMinY(0); - SET->forceMaxY(5); + SET->setRecMinY(0); + SET->setRecMaxY(5); SET->AddLayer(set); pr=new SummaryChart("cmH2O",GT_LINE); - PR->forceMinY(4.0); - //PR->forceMaxY(12.0); + //PR->setRecMinY(4.0); + //PR->setRecMaxY(12.0); pr->addSlice(CPAP_Pressure,QColor("dark green"),ST_WAVG); pr->addSlice(CPAP_Pressure,QColor("orange"),ST_MIN); pr->addSlice(CPAP_Pressure,QColor("red"),ST_MAX); @@ -135,9 +135,12 @@ Overview::Overview(QWidget *parent,gGraphView * shared) : // <--- The code to the previous marker is crap report=NULL; + + GraphView->LoadSettings("Overview"); } Overview::~Overview() { + GraphView->SaveSettings("Overview"); disconnect(this,SLOT(dateStart_currentPageChanged(int,int))); disconnect(this,SLOT(dateEnd_currentPageChanged(int,int))); if (report) { diff --git a/oximetry.cpp b/oximetry.cpp index e1fc321d..15e10403 100644 --- a/oximetry.cpp +++ b/oximetry.cpp @@ -628,10 +628,12 @@ Oximetry::Oximetry(QWidget *parent,gGraphView * shared) : ui->RunButton->setChecked(false); ui->saveButton->setEnabled(false); + GraphView->LoadSettings("Oximetry"); } Oximetry::~Oximetry() { + GraphView->SaveSettings("Oximetry"); delete ui; } @@ -741,12 +743,12 @@ void Oximetry::on_RunButton_toggled(bool checked) PULSE->SetMinX(f); SPO2->SetMinX(f); - PLETHY->forceMinY(0); - PLETHY->forceMaxY(128); - PULSE->forceMinY(30); - PULSE->forceMaxY(180); - SPO2->forceMinY(50); - SPO2->forceMaxY(100); + PLETHY->setForceMinY(0); + PLETHY->setForceMaxY(128); + PULSE->setForceMinY(30); + PULSE->setForceMaxY(180); + SPO2->setForceMinY(50); + SPO2->setForceMaxY(100); connect(oximeter,SIGNAL(dataChanged()),this,SLOT(onDataChanged())); connect(oximeter,SIGNAL(updatePulse(float)),this,SLOT(onPulseChanged(float))); @@ -899,12 +901,12 @@ void Oximetry::on_import_complete(Session * session) PULSE->SetMaxX(l); SPO2->SetMaxX(l); - PLETHY->forceMinY(0); - PLETHY->forceMaxY(128); - PULSE->forceMinY(30); - PULSE->forceMaxY(180); - SPO2->forceMinY(50); - SPO2->forceMaxY(100); + PLETHY->setForceMinY(0); + PLETHY->setForceMaxY(128); + PULSE->setForceMinY(30); + PULSE->setForceMaxY(180); + SPO2->setForceMinY(50); + SPO2->setForceMaxY(100); PULSE->setDay(day); SPO2->setDay(day); diff --git a/preferencesdialog.cpp b/preferencesdialog.cpp index bdc1bb7d..033433b2 100644 --- a/preferencesdialog.cpp +++ b/preferencesdialog.cpp @@ -474,7 +474,7 @@ void PreferencesDialog::on_graphModel_changed(QStandardItem * item) ui->graphView->update(); } else { if ((val < graph->rec_maxy) || (val==0)) { - graph->recMinY(val); + graph->setRecMinY(val); } else { graphModel->setData(index,QString::number(graph->rec_miny,'f',1)); ui->graphView->update(); @@ -487,7 +487,7 @@ void PreferencesDialog::on_graphModel_changed(QStandardItem * item) ui->graphView->update(); } else { if ((val > graph->rec_miny) || (val==0)) { - graph->recMaxY(val); + graph->setRecMaxY(val); } else { graphModel->setData(index,QString::number(graph->rec_maxy,'f',1)); ui->graphView->update(); @@ -617,8 +617,8 @@ void PreferencesDialog::on_resetGraphButton_clicked() if (gv[j]!=NULL) { for (int i=0;isize();i++) { gGraph *g=(*(gv[j]))[i]; - g->recMaxY(0); - g->recMinY(0); + g->setRecMaxY(0); + g->setRecMinY(0); g->setVisible(true); } }