mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 03:00:43 +00:00
Minor Zoom Cleverizement
This commit is contained in:
parent
afb239abce
commit
2c3600ab09
@ -344,9 +344,9 @@ void FlagData::Reload(Day *day)
|
|||||||
////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
SessionTimes::SessionTimes(Profile * _profile)
|
SessionTimes::SessionTimes(Profile * _profile)
|
||||||
:gPointData(2048),profile(_profile)
|
:HistoryData(_profile,2048)
|
||||||
{
|
{
|
||||||
AddSegment(max_points);
|
/*AddSegment(max_points);
|
||||||
if (profile->LastDay().isValid()) {
|
if (profile->LastDay().isValid()) {
|
||||||
QDateTime tmp;
|
QDateTime tmp;
|
||||||
tmp.setDate(profile->FirstDay());
|
tmp.setDate(profile->FirstDay());
|
||||||
@ -354,12 +354,12 @@ SessionTimes::SessionTimes(Profile * _profile)
|
|||||||
tmp.setDate(profile->LastDay());
|
tmp.setDate(profile->LastDay());
|
||||||
real_max_x=(tmp.toMSecsSinceEpoch()/86400000.0)+1;
|
real_max_x=(tmp.toMSecsSinceEpoch()/86400000.0)+1;
|
||||||
}
|
}
|
||||||
real_min_y=real_max_y=0;
|
real_min_y=real_max_y=0; */
|
||||||
}
|
}
|
||||||
SessionTimes::~SessionTimes()
|
SessionTimes::~SessionTimes()
|
||||||
{
|
{
|
||||||
}
|
}
|
||||||
void SessionTimes::ResetDateRange()
|
/*void SessionTimes::ResetDateRange()
|
||||||
{
|
{
|
||||||
if (profile->LastDay().isValid()) {
|
if (profile->LastDay().isValid()) {
|
||||||
QDateTime tmp;
|
QDateTime tmp;
|
||||||
@ -395,7 +395,7 @@ void SessionTimes::SetDateRange(QDate start,QDate end)
|
|||||||
(*i)->DataChanged(this);
|
(*i)->DataChanged(this);
|
||||||
} // Do nothing else.. Callers responsibility to Refresh window.
|
} // Do nothing else.. Callers responsibility to Refresh window.
|
||||||
}
|
}
|
||||||
|
*/
|
||||||
|
|
||||||
void SessionTimes::Reload(Day *day)
|
void SessionTimes::Reload(Day *day)
|
||||||
{
|
{
|
||||||
@ -454,8 +454,8 @@ void SessionTimes::Reload(Day *day)
|
|||||||
// HistoryData Implementation
|
// HistoryData Implementation
|
||||||
////////////////////////////////////////////////////////////////////////////////////////////
|
////////////////////////////////////////////////////////////////////////////////////////////
|
||||||
|
|
||||||
HistoryData::HistoryData(Profile * _profile)
|
HistoryData::HistoryData(Profile * _profile,int mpts)
|
||||||
:gPointData(1024),profile(_profile)
|
:gPointData(mpts),profile(_profile)
|
||||||
{
|
{
|
||||||
AddSegment(max_points);
|
AddSegment(max_points);
|
||||||
if (profile->LastDay().isValid()) {
|
if (profile->LastDay().isValid()) {
|
||||||
|
@ -70,27 +70,10 @@ public:
|
|||||||
virtual void Reload(Day *day=NULL);
|
virtual void Reload(Day *day=NULL);
|
||||||
};
|
};
|
||||||
|
|
||||||
class SessionTimes:public gPointData
|
|
||||||
{
|
|
||||||
public:
|
|
||||||
SessionTimes(Profile * _profile);
|
|
||||||
virtual ~SessionTimes();
|
|
||||||
|
|
||||||
void SetProfile(Profile *_profile) { profile=_profile; Reload(); }
|
|
||||||
Profile * GetProfile() { return profile; }
|
|
||||||
double GetAverage(); // length??
|
|
||||||
virtual void Reload(Day *day=NULL);
|
|
||||||
virtual void ResetDateRange();
|
|
||||||
virtual void SetDateRange(QDate start,QDate end);
|
|
||||||
|
|
||||||
protected:
|
|
||||||
Profile * profile;
|
|
||||||
};
|
|
||||||
|
|
||||||
class HistoryData:public gPointData
|
class HistoryData:public gPointData
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
HistoryData(Profile * _profile);
|
HistoryData(Profile * _profile,int mpts=2048);
|
||||||
virtual ~HistoryData();
|
virtual ~HistoryData();
|
||||||
|
|
||||||
void SetProfile(Profile *_profile) { profile=_profile; Reload(); }
|
void SetProfile(Profile *_profile) { profile=_profile; Reload(); }
|
||||||
@ -106,6 +89,23 @@ protected:
|
|||||||
Profile * profile;
|
Profile * profile;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
class SessionTimes:public HistoryData
|
||||||
|
{
|
||||||
|
public:
|
||||||
|
SessionTimes(Profile * _profile);
|
||||||
|
virtual ~SessionTimes();
|
||||||
|
|
||||||
|
//void SetProfile(Profile *_profile) { profile=_profile; Reload(); }
|
||||||
|
//Profile * GetProfile() { return profile; }
|
||||||
|
//virtual double GetAverage(); // length??
|
||||||
|
virtual void Reload(Day *day=NULL);
|
||||||
|
//virtual void ResetDateRange();
|
||||||
|
//virtual void SetDateRange(QDate start,QDate end);
|
||||||
|
|
||||||
|
protected:
|
||||||
|
// Profile * profile;
|
||||||
|
};
|
||||||
|
|
||||||
class HistoryCodeData:public HistoryData
|
class HistoryCodeData:public HistoryData
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
@ -211,18 +211,28 @@ void gGraphWindow::ZoomX(double mult,int origin_px)
|
|||||||
if (origin_px<0) origin_px=0;
|
if (origin_px<0) origin_px=0;
|
||||||
if (origin_px>Width()) origin_px=Width();
|
if (origin_px>Width()) origin_px=Width();
|
||||||
|
|
||||||
|
|
||||||
|
// Okay, I want it to zoom in centered on the mouse click area..
|
||||||
|
// Find X graph position of mouse click
|
||||||
|
// find current zoom width
|
||||||
|
// apply zoom
|
||||||
|
// center on point found in step 1.
|
||||||
|
|
||||||
double min=min_x;
|
double min=min_x;
|
||||||
double max=max_x;
|
double max=max_x;
|
||||||
|
|
||||||
double hardspan=rmax_x-rmin_x;
|
double hardspan=rmax_x-rmin_x;
|
||||||
double span=max-min;
|
double span=max-min;
|
||||||
double origin=double(origin_px) / Width() * span;
|
double ww=double(origin_px) / double(Width());
|
||||||
|
double origin=ww * span;
|
||||||
|
//double center=0.5*span;
|
||||||
|
//double dist=(origin-center);
|
||||||
|
|
||||||
double q=span*mult;
|
double q=span*mult;
|
||||||
if (q>hardspan) q=hardspan;
|
if (q>hardspan) q=hardspan;
|
||||||
if (q<hardspan/400) q=hardspan/400;
|
if (q<hardspan/400) q=hardspan/400;
|
||||||
|
|
||||||
min=min+(origin-(q/2.0));
|
min=min+origin-(q*ww);
|
||||||
max=min+q;
|
max=min+q;
|
||||||
|
|
||||||
if (min<rmin_x) {
|
if (min<rmin_x) {
|
||||||
@ -506,7 +516,7 @@ void gGraphWindow::OnMouseRightRelease(QMouseEvent * event)
|
|||||||
double zoom_fact=2;
|
double zoom_fact=2;
|
||||||
if (event->modifiers() & Qt::ControlModifier) zoom_fact=5;
|
if (event->modifiers() & Qt::ControlModifier) zoom_fact=5;
|
||||||
//if (!m_block_zoom) {
|
//if (!m_block_zoom) {
|
||||||
ZoomX(zoom_fact,0);
|
ZoomX(zoom_fact,x);
|
||||||
did_draw=true;
|
did_draw=true;
|
||||||
//}
|
//}
|
||||||
m_foobar_moved=0;
|
m_foobar_moved=0;
|
||||||
@ -540,7 +550,7 @@ void gGraphWindow::OnMouseRightRelease(QMouseEvent * event)
|
|||||||
//(*g)->ZoomX(zoom_fact,0);
|
//(*g)->ZoomX(zoom_fact,0);
|
||||||
//}
|
//}
|
||||||
//if (!m_block_zoom) {
|
//if (!m_block_zoom) {
|
||||||
ZoomX(zoom_fact,0); //event.GetX()); // adds origin to zoom out.. Doesn't look that cool.
|
ZoomX(zoom_fact,x); //event.GetX()); // adds origin to zoom out.. Doesn't look that cool.
|
||||||
|
|
||||||
if (pref["LinkGraphMovement"].toBool()) {
|
if (pref["LinkGraphMovement"].toBool()) {
|
||||||
double min=MinX();
|
double min=MinX();
|
||||||
|
@ -350,15 +350,17 @@ void Scan()
|
|||||||
QFileInfoList list=dir.entryInfoList();
|
QFileInfoList list=dir.entryInfoList();
|
||||||
|
|
||||||
QString username=getUserName();
|
QString username=getUserName();
|
||||||
if (list.size()==0) {
|
if (list.size()==0) { // No profiles.. Create one.
|
||||||
Create(username,username,"");
|
Create(username,username,"");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Iterate through subdirectories and load profiles..
|
||||||
for (int i=0;i<list.size();i++) {
|
for (int i=0;i<list.size();i++) {
|
||||||
QFileInfo fi=list.at(i);
|
QFileInfo fi=list.at(i);
|
||||||
QString npath=fi.canonicalFilePath();
|
QString npath=fi.canonicalFilePath();
|
||||||
Profile *prof=new Profile(npath);
|
Profile *prof=new Profile(npath);
|
||||||
prof->Open();
|
prof->Open(); // Read it's XML file..
|
||||||
profiles[fi.fileName()]=prof;
|
profiles[fi.fileName()]=prof;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -262,7 +262,7 @@ Daily::Daily(QWidget *parent,QGLContext *context) :
|
|||||||
G_AHI->SetGradientBackground(false);
|
G_AHI->SetGradientBackground(false);
|
||||||
//G_AHI->setMaximumSize(2000,30);
|
//G_AHI->setMaximumSize(2000,30);
|
||||||
//TAP->setMaximumSize(2000,30);
|
//TAP->setMaximumSize(2000,30);
|
||||||
NoData=new QLabel(tr("No CPAP Data"),gSplitter);
|
NoData=new QLabel(tr("No data"),gSplitter);
|
||||||
NoData->setAlignment(Qt::AlignCenter);
|
NoData->setAlignment(Qt::AlignCenter);
|
||||||
QFont font("FreeSans",20); //NoData->font();
|
QFont font("FreeSans",20); //NoData->font();
|
||||||
//font.setBold(true);
|
//font.setBold(true);
|
||||||
@ -665,7 +665,7 @@ void Daily::Load(QDate date)
|
|||||||
//SPO2->hide();
|
//SPO2->hide();
|
||||||
}
|
}
|
||||||
if (!cpap && !oxi) {
|
if (!cpap && !oxi) {
|
||||||
NoData->setText(tr("No CPAP Data for ")+date.toString(Qt::SystemLocaleLongDate));
|
NoData->setText(tr("No data for ")+date.toString(Qt::SystemLocaleLongDate));
|
||||||
NoData->show();
|
NoData->show();
|
||||||
} else
|
} else
|
||||||
NoData->hide();
|
NoData->hide();
|
||||||
|
38
overview.cpp
38
overview.cpp
@ -28,22 +28,19 @@ Overview::Overview(QWidget *parent,QGLContext *context) :
|
|||||||
AddData(pressure=new HistoryCodeData(profile,CPAP_PressureAverage));
|
AddData(pressure=new HistoryCodeData(profile,CPAP_PressureAverage));
|
||||||
AddData(pressure_min=new HistoryCodeData(profile,CPAP_PressureMin));
|
AddData(pressure_min=new HistoryCodeData(profile,CPAP_PressureMin));
|
||||||
AddData(pressure_max=new HistoryCodeData(profile,CPAP_PressureMax));
|
AddData(pressure_max=new HistoryCodeData(profile,CPAP_PressureMax));
|
||||||
|
|
||||||
AddData(pressure_eap=new HistoryCodeData(profile,BIPAP_EAPAverage));
|
AddData(pressure_eap=new HistoryCodeData(profile,BIPAP_EAPAverage));
|
||||||
AddData(pressure_iap=new HistoryCodeData(profile,BIPAP_IAPAverage));
|
AddData(pressure_iap=new HistoryCodeData(profile,BIPAP_IAPAverage));
|
||||||
|
|
||||||
session_times=new SessionTimes(profile);
|
|
||||||
|
|
||||||
// pressure->ForceMinY(3);
|
|
||||||
// pressure->ForceMaxY(12);
|
|
||||||
AddData(leak=new HistoryCodeData(profile,CPAP_LeakMedian));
|
AddData(leak=new HistoryCodeData(profile,CPAP_LeakMedian));
|
||||||
AddData(usage=new UsageHistoryData(profile,UHD_Hours));
|
AddData(usage=new UsageHistoryData(profile,UHD_Hours));
|
||||||
AddData(waketime=new UsageHistoryData(profile,UHD_Waketime));
|
AddData(waketime=new UsageHistoryData(profile,UHD_Waketime));
|
||||||
AddData(bedtime=new UsageHistoryData(profile,UHD_Bedtime));
|
AddData(bedtime=new UsageHistoryData(profile,UHD_Bedtime));
|
||||||
|
AddData(session_times=new SessionTimes(profile));
|
||||||
|
|
||||||
|
// pressure->ForceMinY(3);
|
||||||
|
// pressure->ForceMaxY(12);
|
||||||
|
|
||||||
gSplitter=new QSplitter(Qt::Vertical,ui->SummaryGraphWindow);
|
gSplitter=new QSplitter(Qt::Vertical,ui->SummaryGraphWindow);
|
||||||
gSplitter->setStyleSheet("QSplitter::handle { background-color: 'dark grey'; }");
|
gSplitter->setStyleSheet("QSplitter::handle { background-color: 'dark grey'; }");
|
||||||
|
|
||||||
gSplitter->setChildrenCollapsible(true);
|
gSplitter->setChildrenCollapsible(true);
|
||||||
gSplitter->setHandleWidth(3);
|
gSplitter->setHandleWidth(3);
|
||||||
ui->graphLayout->addWidget(gSplitter);
|
ui->graphLayout->addWidget(gSplitter);
|
||||||
@ -70,8 +67,6 @@ Overview::Overview(QWidget *parent,QGLContext *context) :
|
|||||||
PRESSURE->setMinimumHeight(170);
|
PRESSURE->setMinimumHeight(170);
|
||||||
|
|
||||||
AddGraph(LEAK=new gGraphWindow(ui->SummaryGraphWindow,tr("Leak"),AHI));
|
AddGraph(LEAK=new gGraphWindow(ui->SummaryGraphWindow,tr("Leak"),AHI));
|
||||||
//LEAK->SetMargins(10,15,65,80);
|
|
||||||
//LEAK->AddLayer(new gBarChart(leak,wxYELLOW));
|
|
||||||
LEAK->AddLayer(new gXAxis());
|
LEAK->AddLayer(new gXAxis());
|
||||||
LEAK->AddLayer(new gYAxis());
|
LEAK->AddLayer(new gYAxis());
|
||||||
LEAK->AddLayer(new gFooBar(7));
|
LEAK->AddLayer(new gFooBar(7));
|
||||||
@ -80,11 +75,10 @@ Overview::Overview(QWidget *parent,QGLContext *context) :
|
|||||||
LEAK->setMinimumHeight(170);
|
LEAK->setMinimumHeight(170);
|
||||||
|
|
||||||
AddGraph(USAGE=new gGraphWindow(ui->SummaryGraphWindow,tr("Usage (Hours)"),AHI));
|
AddGraph(USAGE=new gGraphWindow(ui->SummaryGraphWindow,tr("Usage (Hours)"),AHI));
|
||||||
//USAGE->SetMargins(10,15,65,80);
|
|
||||||
USAGE->AddLayer(new gFooBar(7));
|
USAGE->AddLayer(new gFooBar(7));
|
||||||
USAGE->AddLayer(new gYAxis());
|
USAGE->AddLayer(new gYAxis());
|
||||||
USAGE->AddLayer(new gBarChart(usage,QColor("green")));
|
USAGE->AddLayer(new gBarChart(usage,QColor("green")));
|
||||||
USAGE->SetBottomMargin(USAGE->GetBottomMargin()+gXAxis::Margin+15);
|
USAGE->SetBottomMargin(USAGE->GetBottomMargin()+gXAxis::Margin+25);
|
||||||
//USAGE->AddLayer(new gXAxis());
|
//USAGE->AddLayer(new gXAxis());
|
||||||
//USAGE->AddLayer(new gLineChart(usage,QColor("green")));
|
//USAGE->AddLayer(new gLineChart(usage,QColor("green")));
|
||||||
USAGE->setMinimumHeight(170);
|
USAGE->setMinimumHeight(170);
|
||||||
@ -98,6 +92,13 @@ Overview::Overview(QWidget *parent,QGLContext *context) :
|
|||||||
//SESSTIMES->AddLayer(new gXAxis());
|
//SESSTIMES->AddLayer(new gXAxis());
|
||||||
SESSTIMES->setMinimumHeight(270);
|
SESSTIMES->setMinimumHeight(270);
|
||||||
|
|
||||||
|
NoData=new QLabel(tr("No data"),gSplitter);
|
||||||
|
NoData->setAlignment(Qt::AlignCenter);
|
||||||
|
QFont font("FreeSans",20); //NoData->font();
|
||||||
|
//font.setBold(true);
|
||||||
|
NoData->setFont(font);
|
||||||
|
NoData->hide();
|
||||||
|
|
||||||
|
|
||||||
gGraphWindow * graphs[]={AHI,PRESSURE,LEAK,USAGE,SESSTIMES};
|
gGraphWindow * graphs[]={AHI,PRESSURE,LEAK,USAGE,SESSTIMES};
|
||||||
int ss=sizeof(graphs)/sizeof(gGraphWindow *);
|
int ss=sizeof(graphs)/sizeof(gGraphWindow *);
|
||||||
@ -132,13 +133,16 @@ void Overview::RedrawGraphs()
|
|||||||
void Overview::ReloadGraphs()
|
void Overview::ReloadGraphs()
|
||||||
{
|
{
|
||||||
for (list<HistoryData *>::iterator h=Data.begin();h!=Data.end();h++) {
|
for (list<HistoryData *>::iterator h=Data.begin();h!=Data.end();h++) {
|
||||||
(*h)->SetProfile(profile);
|
if (HistoryData *hd=dynamic_cast<HistoryData *>(*h)){
|
||||||
(*h)->ResetDateRange();
|
hd->SetProfile(profile);
|
||||||
(*h)->Reload(NULL);
|
hd->ResetDateRange();
|
||||||
|
hd->Reload(NULL);
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
session_times->SetProfile(profile);
|
// session_times->SetProfile(profile);
|
||||||
session_times->ResetDateRange();
|
// session_times->ResetDateRange();
|
||||||
session_times->Reload(NULL);
|
// session_times->Reload(NULL);
|
||||||
on_rbLastWeek_clicked();
|
on_rbLastWeek_clicked();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -10,6 +10,7 @@
|
|||||||
#include <QWidget>
|
#include <QWidget>
|
||||||
#include <QGLContext>
|
#include <QGLContext>
|
||||||
#include <QSplitter>
|
#include <QSplitter>
|
||||||
|
#include <QLabel>
|
||||||
#include <SleepLib/profiles.h>
|
#include <SleepLib/profiles.h>
|
||||||
#include <Graphs/graphdata_custom.h>
|
#include <Graphs/graphdata_custom.h>
|
||||||
|
|
||||||
@ -31,19 +32,12 @@ public:
|
|||||||
|
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
|
||||||
void on_drStart_dateChanged(const QDate &date);
|
void on_drStart_dateChanged(const QDate &date);
|
||||||
|
|
||||||
void on_drEnd_dateChanged(const QDate &date);
|
void on_drEnd_dateChanged(const QDate &date);
|
||||||
|
|
||||||
void on_rbDateRange_toggled(bool checked);
|
void on_rbDateRange_toggled(bool checked);
|
||||||
|
|
||||||
void on_rbLastWeek_clicked();
|
void on_rbLastWeek_clicked();
|
||||||
|
|
||||||
void on_rbLastMonth_clicked();
|
void on_rbLastMonth_clicked();
|
||||||
|
|
||||||
void on_rbEverything_clicked();
|
void on_rbEverything_clicked();
|
||||||
|
|
||||||
void on_rbDateRange_clicked();
|
void on_rbDateRange_clicked();
|
||||||
|
|
||||||
private:
|
private:
|
||||||
@ -66,6 +60,7 @@ private:
|
|||||||
list<gGraphWindow *> Graphs;
|
list<gGraphWindow *> Graphs;
|
||||||
Day *dummyday;
|
Day *dummyday;
|
||||||
QSplitter *gSplitter;
|
QSplitter *gSplitter;
|
||||||
|
QLabel *NoData;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // OVERVIEW_H
|
#endif // OVERVIEW_H
|
||||||
|
Loading…
Reference in New Issue
Block a user