mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
Show Units ToolTips hovering over graph title area
This commit is contained in:
parent
4bb339eec8
commit
e340809ca8
@ -13,6 +13,7 @@
|
|||||||
#include <QDir>
|
#include <QDir>
|
||||||
#include "mainwindow.h"
|
#include "mainwindow.h"
|
||||||
|
|
||||||
|
#include "Graphs/gYAxis.h"
|
||||||
|
|
||||||
extern MainWindow *mainwin;
|
extern MainWindow *mainwin;
|
||||||
|
|
||||||
@ -589,17 +590,25 @@ gToolTip::~gToolTip()
|
|||||||
disconnect(timer,SLOT(timerDone()));
|
disconnect(timer,SLOT(timerDone()));
|
||||||
delete timer;
|
delete timer;
|
||||||
}
|
}
|
||||||
|
void gToolTip::calcSize(QString text,int &w, int &h)
|
||||||
|
{
|
||||||
|
/*GetTextExtent(text,w,h);
|
||||||
|
w+=m_spacer*2;
|
||||||
|
h+=m_spacer*2; */
|
||||||
|
}
|
||||||
|
|
||||||
void gToolTip::display(QString text, int x, int y, int timeout)
|
void gToolTip::display(QString text, int x, int y, int timeout)
|
||||||
{
|
{
|
||||||
m_text=text;
|
m_text=text;
|
||||||
m_pos.setX(x);
|
|
||||||
m_pos.setY(y);
|
|
||||||
m_visible=true;
|
m_visible=true;
|
||||||
// TODO: split multiline here
|
// TODO: split multiline here
|
||||||
GetTextExtent(m_text,tw,th);
|
//calcSize(m_text,tw,th);
|
||||||
tw+=m_spacer*2;
|
|
||||||
th+=m_spacer*2;
|
m_pos.setX(x);
|
||||||
|
m_pos.setY(y);
|
||||||
|
|
||||||
|
//tw+=m_spacer*2;
|
||||||
|
//th+=m_spacer*2;
|
||||||
//th*=2;
|
//th*=2;
|
||||||
if (timer->isActive()) {
|
if (timer->isActive()) {
|
||||||
timer->stop();
|
timer->stop();
|
||||||
@ -640,9 +649,13 @@ void gToolTip::paint() //actually paints it.
|
|||||||
QRect rect(x,y,0,0);
|
QRect rect(x,y,0,0);
|
||||||
painter.setFont(*defaultfont);
|
painter.setFont(*defaultfont);
|
||||||
rect=painter.boundingRect(rect,Qt::AlignCenter,m_text);
|
rect=painter.boundingRect(rect,Qt::AlignCenter,m_text);
|
||||||
rect.setLeft(rect.x()-m_spacer);
|
int w=rect.width()+m_spacer*2;
|
||||||
|
int xx=rect.x()-m_spacer;
|
||||||
|
if (xx<0) xx=0;
|
||||||
|
rect.setLeft(xx);
|
||||||
rect.setTop(rect.y()-rect.height()/2);
|
rect.setTop(rect.y()-rect.height()/2);
|
||||||
rect.setWidth(rect.width()+m_spacer*2);
|
rect.setWidth(w);
|
||||||
|
|
||||||
//rect.setHeight(rect.height());
|
//rect.setHeight(rect.height());
|
||||||
QBrush brush(QColor(255,255,128,200));
|
QBrush brush(QColor(255,255,128,200));
|
||||||
painter.setBrush(brush);
|
painter.setBrush(brush);
|
||||||
@ -875,9 +888,10 @@ void gThread::run()
|
|||||||
}
|
}
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
gGraph::gGraph(gGraphView *graphview,QString title,int height,short group) :
|
gGraph::gGraph(gGraphView *graphview,QString title,QString units, int height,short group) :
|
||||||
m_graphview(graphview),
|
m_graphview(graphview),
|
||||||
m_title(title),
|
m_title(title),
|
||||||
|
m_units(units),
|
||||||
m_height(height),
|
m_height(height),
|
||||||
m_visible(true)
|
m_visible(true)
|
||||||
{
|
{
|
||||||
@ -2273,7 +2287,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
|||||||
|
|
||||||
if (m_button_down || ((py + h + graphSpacer) >= 0)) {
|
if (m_button_down || ((py + h + graphSpacer) >= 0)) {
|
||||||
if (m_button_down || ((y >= py) && (y < py + h))) {
|
if (m_button_down || ((y >= py) && (y < py + h))) {
|
||||||
if (m_button_down || (x >= titleWidth+(20))) {
|
if (m_button_down || (x >= titleWidth+(gYAxis::Margin-20))) {
|
||||||
this->setCursor(Qt::ArrowCursor);
|
this->setCursor(Qt::ArrowCursor);
|
||||||
m_horiz_travel+=qAbs(x-m_lastxpos)+qAbs(y-m_lastypos);
|
m_horiz_travel+=qAbs(x-m_lastxpos)+qAbs(y-m_lastypos);
|
||||||
m_lastxpos=x;
|
m_lastxpos=x;
|
||||||
@ -2284,8 +2298,13 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
|||||||
m_graphs[i]->mouseMoveEvent(&e);
|
m_graphs[i]->mouseMoveEvent(&e);
|
||||||
} else {
|
} else {
|
||||||
//qDebug() << "Hovering over" << m_graphs[i]->title();
|
//qDebug() << "Hovering over" << m_graphs[i]->title();
|
||||||
|
if (!m_graphs[i]->units().isEmpty()) {
|
||||||
|
m_tooltip->display(m_graphs[i]->units(),x,y-20,800);
|
||||||
|
updateGL();
|
||||||
|
}
|
||||||
this->setCursor(Qt::OpenHandCursor);
|
this->setCursor(Qt::OpenHandCursor);
|
||||||
}
|
}
|
||||||
|
|
||||||
} else if ((y >= py + h) && (y <= py + h + graphSpacer + 1)) {
|
} else if ((y >= py + h) && (y <= py + h + graphSpacer + 1)) {
|
||||||
this->setCursor(Qt::SplitVCursor);
|
this->setCursor(Qt::SplitVCursor);
|
||||||
}
|
}
|
||||||
|
@ -244,6 +244,7 @@ class gToolTip: public QObject
|
|||||||
public:
|
public:
|
||||||
gToolTip(gGraphView * graphview);
|
gToolTip(gGraphView * graphview);
|
||||||
virtual ~gToolTip();
|
virtual ~gToolTip();
|
||||||
|
void calcSize(QString text, int & w, int & h);
|
||||||
virtual void display(QString text, int x, int y, int timeout=2000);
|
virtual void display(QString text, int x, int y, int timeout=2000);
|
||||||
virtual void paint(); //actually paints it.
|
virtual void paint(); //actually paints it.
|
||||||
void cancel();
|
void cancel();
|
||||||
@ -266,7 +267,7 @@ public:
|
|||||||
friend class gGraphView;
|
friend class gGraphView;
|
||||||
|
|
||||||
//gGraph();
|
//gGraph();
|
||||||
gGraph(gGraphView * graphview=NULL, QString title="",int height=100,short group=0);
|
gGraph(gGraphView * graphview=NULL, QString title="", QString units="", int height=100,short group=0);
|
||||||
virtual ~gGraph();
|
virtual ~gGraph();
|
||||||
void deselect();
|
void deselect();
|
||||||
void Trigger(int ms);
|
void Trigger(int ms);
|
||||||
@ -294,6 +295,9 @@ public:
|
|||||||
|
|
||||||
void drawGLBuf();
|
void drawGLBuf();
|
||||||
QString title() { return m_title; }
|
QString title() { return m_title; }
|
||||||
|
QString units() { return m_units; }
|
||||||
|
void setTitle(const QString title) { m_title=title; }
|
||||||
|
void setUnits(const QString units) { m_units=units; }
|
||||||
|
|
||||||
//virtual void repaint(); // Repaint individual graph..
|
//virtual void repaint(); // Repaint individual graph..
|
||||||
|
|
||||||
@ -369,6 +373,7 @@ protected:
|
|||||||
|
|
||||||
gGraphView * m_graphview;
|
gGraphView * m_graphview;
|
||||||
QString m_title;
|
QString m_title;
|
||||||
|
QString m_units;
|
||||||
QVector<Layer *> m_layers;
|
QVector<Layer *> m_layers;
|
||||||
float m_height,m_width;
|
float m_height,m_width;
|
||||||
|
|
||||||
|
53
daily.cpp
53
daily.cpp
@ -89,34 +89,34 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
|
|||||||
layout->addWidget(scrollbar,0);
|
layout->addWidget(scrollbar,0);
|
||||||
|
|
||||||
int default_height=PROFILE["GraphHeight"].toInt();
|
int default_height=PROFILE["GraphHeight"].toInt();
|
||||||
SF=new gGraph(GraphView,"Event Flags",default_height);
|
SF=new gGraph(GraphView,"Event Flags","Event Flags",default_height);
|
||||||
FRW=new gGraph(GraphView,"Flow Rate",default_height);
|
FRW=new gGraph(GraphView,schema::channel[CPAP_FlowRate].label(),schema::channel[CPAP_FlowRate].description()+"\n("+schema::channel[CPAP_FlowRate].units()+")",default_height);
|
||||||
AHI=new gGraph(GraphView,"AHI",default_height);
|
AHI=new gGraph(GraphView,schema::channel[CPAP_AHI].label(),schema::channel[CPAP_AHI].description()+"\n("+schema::channel[CPAP_AHI].units()+")",default_height);
|
||||||
MP=new gGraph(GraphView,"Mask Pressure",default_height);
|
MP=new gGraph(GraphView,schema::channel[CPAP_MaskPressure].label(),schema::channel[CPAP_MaskPressure].description()+"\n("+schema::channel[CPAP_MaskPressure].units()+")",default_height);
|
||||||
PRD=new gGraph(GraphView,"Pressure",default_height);
|
PRD=new gGraph(GraphView,schema::channel[CPAP_Pressure].label(),schema::channel[CPAP_Pressure].description()+"\n("+schema::channel[CPAP_Pressure].units()+")",default_height);
|
||||||
LEAK=new gGraph(GraphView,"Leak",default_height);
|
LEAK=new gGraph(GraphView,schema::channel[CPAP_Leak].label(),schema::channel[CPAP_Leak].description()+"\n("+schema::channel[CPAP_Leak].units()+")",default_height);
|
||||||
SNORE=new gGraph(GraphView,"Snore",default_height);
|
SNORE=new gGraph(GraphView,schema::channel[CPAP_Snore].label(),schema::channel[CPAP_Snore].description()+"\n("+schema::channel[CPAP_Snore].units()+")",default_height);
|
||||||
RR=new gGraph(GraphView,"Resp. Rate",default_height);
|
RR=new gGraph(GraphView,schema::channel[CPAP_RespRate].label(),schema::channel[CPAP_RespRate].description()+"\n("+schema::channel[CPAP_RespRate].units()+")",default_height);
|
||||||
TV=new gGraph(GraphView,"Tidal Volume",default_height);
|
TV=new gGraph(GraphView,schema::channel[CPAP_TidalVolume].label(),schema::channel[CPAP_TidalVolume].description()+"\n("+schema::channel[CPAP_TidalVolume].units()+")",default_height);
|
||||||
MV=new gGraph(GraphView,"Minute Vent.",default_height);
|
MV=new gGraph(GraphView,schema::channel[CPAP_MinuteVent].label(),schema::channel[CPAP_MinuteVent].description()+"\n("+schema::channel[CPAP_MinuteVent].units()+")",default_height);
|
||||||
FLG=new gGraph(GraphView,"Flow Limit.",default_height);
|
FLG=new gGraph(GraphView,schema::channel[CPAP_FLG].label(),schema::channel[CPAP_FLG].description()+"\n("+schema::channel[CPAP_FLG].units()+")",default_height);
|
||||||
PTB=new gGraph(GraphView,"Patient Tr. Br.",default_height);
|
PTB=new gGraph(GraphView,schema::channel[CPAP_PTB].label(),schema::channel[CPAP_PTB].description()+"\n("+schema::channel[CPAP_PTB].units()+")",default_height);
|
||||||
RE=new gGraph(GraphView,"Resp. Event",default_height);
|
RE=new gGraph(GraphView,schema::channel[CPAP_RespEvent].label(),schema::channel[CPAP_RespEvent].description()+"\n("+schema::channel[CPAP_RespEvent].units()+")",default_height);
|
||||||
IE=new gGraph(GraphView,"I:E",default_height);
|
IE=new gGraph(GraphView,schema::channel[CPAP_IE].label(),schema::channel[CPAP_IE].description()+"\n("+schema::channel[CPAP_IE].units()+")",default_height);
|
||||||
TE=new gGraph(GraphView,"Te",default_height);
|
TE=new gGraph(GraphView,schema::channel[CPAP_Te].label(),schema::channel[CPAP_Te].description()+"\n("+schema::channel[CPAP_Te].units()+")",default_height);
|
||||||
TI=new gGraph(GraphView,"Ti",default_height);
|
TI=new gGraph(GraphView,schema::channel[CPAP_Ti].label(),schema::channel[CPAP_Ti].description()+"\n("+schema::channel[CPAP_Ti].units()+")",default_height);
|
||||||
TgMV=new gGraph(GraphView,"TgMV",default_height);
|
TgMV=new gGraph(GraphView,schema::channel[CPAP_TgMV].label(),schema::channel[CPAP_TgMV].description()+"\n("+schema::channel[CPAP_TgMV].units()+")",default_height);
|
||||||
INTPULSE=new gGraph(GraphView,"R-Pulse",default_height);
|
//INTPULSE=new gGraph(GraphView,"R-Pulse",schema::channel[CPAP_Te].units(),default_height);
|
||||||
INTSPO2=new gGraph(GraphView,"R-SPO2",default_height);
|
//INTSPO2=new gGraph(GraphView,"R-SPO2",default_height);
|
||||||
|
|
||||||
int oxigrp=PROFILE.ExistsAndTrue("SyncOximetry") ? 0 : 1;
|
int oxigrp=PROFILE.ExistsAndTrue("SyncOximetry") ? 0 : 1;
|
||||||
PULSE=new gGraph(GraphView,"Pulse",default_height,oxigrp);
|
PULSE=new gGraph(GraphView,schema::channel[OXI_Pulse].label(),schema::channel[OXI_Pulse].description()+"\n("+schema::channel[OXI_Pulse].units()+")",default_height,oxigrp);
|
||||||
SPO2=new gGraph(GraphView,"SpO2",default_height,oxigrp);
|
SPO2=new gGraph(GraphView,schema::channel[OXI_SPO2].label(),schema::channel[OXI_SPO2].description()+"\n("+schema::channel[OXI_SPO2].units()+")",default_height,oxigrp);
|
||||||
PLETHY=new gGraph(GraphView,"Plethy",default_height,oxigrp);
|
PLETHY=new gGraph(GraphView,schema::channel[OXI_Plethy].label(),schema::channel[OXI_Plethy].description()+"\n("+schema::channel[OXI_Plethy].units()+")",default_height,oxigrp);
|
||||||
|
|
||||||
// Event Pie Chart (for snapshot purposes)
|
// Event Pie Chart (for snapshot purposes)
|
||||||
// TODO: Convert snapGV to generic for snapshotting multiple graphs (like reports does)
|
// TODO: Convert snapGV to generic for snapshotting multiple graphs (like reports does)
|
||||||
GAHI=new gGraph(snapGV,"Breakdown",172);
|
GAHI=new gGraph(snapGV,"Breakdown","events",172);
|
||||||
gSegmentChart * evseg=new gSegmentChart(GST_Pie);
|
gSegmentChart * evseg=new gSegmentChart(GST_Pie);
|
||||||
evseg->AddSlice(CPAP_Hypopnea,QColor(0x40,0x40,0xff,0xff),"H");
|
evseg->AddSlice(CPAP_Hypopnea,QColor(0x40,0x40,0xff,0xff),"H");
|
||||||
evseg->AddSlice(CPAP_Apnea,QColor(0x20,0x80,0x20,0xff),"A");
|
evseg->AddSlice(CPAP_Apnea,QColor(0x20,0x80,0x20,0xff),"A");
|
||||||
@ -178,7 +178,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
|
|||||||
FRW->AddLayer(AddCPAP(los));
|
FRW->AddLayer(AddCPAP(los));
|
||||||
|
|
||||||
|
|
||||||
gGraph *graphs[]={ PRD, LEAK, AHI, SNORE, PTB, MP, RR, MV, TV, FLG, IE, TI, TE, TgMV, SPO2, PLETHY, PULSE, INTPULSE, INTSPO2 };
|
gGraph *graphs[]={ PRD, LEAK, AHI, SNORE, PTB, MP, RR, MV, TV, FLG, IE, TI, TE, TgMV, SPO2, PLETHY, PULSE };
|
||||||
int ng=sizeof(graphs)/sizeof(gGraph*);
|
int ng=sizeof(graphs)/sizeof(gGraph*);
|
||||||
for (int i=0;i<ng;i++){
|
for (int i=0;i<ng;i++){
|
||||||
graphs[i]->AddLayer(new gXGrid());
|
graphs[i]->AddLayer(new gXGrid());
|
||||||
@ -225,8 +225,8 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
|
|||||||
TE->AddLayer(AddCPAP(new gLineChart(CPAP_Te,Qt::darkGreen,square)));
|
TE->AddLayer(AddCPAP(new gLineChart(CPAP_Te,Qt::darkGreen,square)));
|
||||||
TI->AddLayer(AddCPAP(new gLineChart(CPAP_Ti,Qt::darkBlue,square)));
|
TI->AddLayer(AddCPAP(new gLineChart(CPAP_Ti,Qt::darkBlue,square)));
|
||||||
TgMV->AddLayer(AddCPAP(new gLineChart(CPAP_TgMV,Qt::darkCyan,square)));
|
TgMV->AddLayer(AddCPAP(new gLineChart(CPAP_TgMV,Qt::darkCyan,square)));
|
||||||
INTPULSE->AddLayer(AddCPAP(new gLineChart(OXI_Pulse,Qt::red,square)));
|
//INTPULSE->AddLayer(AddCPAP(new gLineChart(OXI_Pulse,Qt::red,square)));
|
||||||
INTSPO2->AddLayer(AddCPAP(new gLineChart(OXI_SPO2,Qt::blue,square)));
|
//INTSPO2->AddLayer(AddCPAP(new gLineChart(OXI_SPO2,Qt::blue,square)));
|
||||||
|
|
||||||
PULSE->AddLayer(AddOXI(new gLineOverlayBar(OXI_PulseChange,QColor("light gray"),"PD",FT_Span)));
|
PULSE->AddLayer(AddOXI(new gLineOverlayBar(OXI_PulseChange,QColor("light gray"),"PD",FT_Span)));
|
||||||
SPO2->AddLayer(AddOXI(new gLineOverlayBar(OXI_SPO2Drop,QColor("light blue"),"O2",FT_Span)));
|
SPO2->AddLayer(AddOXI(new gLineOverlayBar(OXI_SPO2Drop,QColor("light blue"),"O2",FT_Span)));
|
||||||
@ -237,7 +237,6 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
|
|||||||
|
|
||||||
PTB->setForceMaxY(100);
|
PTB->setForceMaxY(100);
|
||||||
SPO2->setForceMaxY(100);
|
SPO2->setForceMaxY(100);
|
||||||
INTSPO2->setForceMaxY(100);
|
|
||||||
//FRW->setRecMinY(-120);
|
//FRW->setRecMinY(-120);
|
||||||
//FRW->setRecMaxY(0);
|
//FRW->setRecMaxY(0);
|
||||||
|
|
||||||
|
2
daily.h
2
daily.h
@ -101,7 +101,7 @@ private:
|
|||||||
void UpdateEventsTree(QTreeWidget * tree,Day *day);
|
void UpdateEventsTree(QTreeWidget * tree,Day *day);
|
||||||
|
|
||||||
gGraph *PRD,*FRW,*GAHI,*TAP,*LEAK,*SF,*TAP_EAP,*TAP_IAP,*PULSE,*SPO2,
|
gGraph *PRD,*FRW,*GAHI,*TAP,*LEAK,*SF,*TAP_EAP,*TAP_IAP,*PULSE,*SPO2,
|
||||||
*SNORE,*RR,*MP,*MV,*TV,*FLG,*PTB,*OF,*INTPULSE,*INTSPO2, *THPR,
|
*SNORE,*RR,*MP,*MV,*TV,*FLG,*PTB,*OF, *THPR,
|
||||||
*PLETHY,*TI,*TE, *RE, *IE, *TgMV, *AHI;
|
*PLETHY,*TI,*TE, *RE, *IE, *TgMV, *AHI;
|
||||||
|
|
||||||
QList<Layer *> OXIData;
|
QList<Layer *> OXIData;
|
||||||
|
@ -31,8 +31,8 @@ One id code per item
|
|||||||
<channel id="0x1101" class="data" name="MaskPressure" details="Mask Pressure" label="Mask Pressure" unit="cmH20" color="blue"/>
|
<channel id="0x1101" class="data" name="MaskPressure" details="Mask Pressure" label="Mask Pressure" unit="cmH20" color="blue"/>
|
||||||
<channel id="0x1102" class="data" name="MaskPressureHi" details="Mask Pressure" label="Mask Pressure (Hi-Res)" unit="cmH20" color="blue" link="0x1101"/>
|
<channel id="0x1102" class="data" name="MaskPressureHi" details="Mask Pressure" label="Mask Pressure (Hi-Res)" unit="cmH20" color="blue" link="0x1101"/>
|
||||||
<channel id="0x1103" class="data" name="TidalVolume" details="Tidal Volume" label="Tidal Volume" unit="ml" color="magenta"/>
|
<channel id="0x1103" class="data" name="TidalVolume" details="Tidal Volume" label="Tidal Volume" unit="ml" color="magenta"/>
|
||||||
<channel id="0x1104" class="data" name="Snore" details="Snore" label="Snore" unit="" color="grey"/>
|
<channel id="0x1104" class="data" name="Snore" details="Snore" label="Snore" unit="unknown" color="grey"/>
|
||||||
<channel id="0x1105" class="data" name="MinuteVent" details="Minute Ventilation" label="Minute Vent." unit="" color="dark cyan"/>
|
<channel id="0x1105" class="data" name="MinuteVent" details="Minute Ventilation" label="Minute Vent." unit="L/min" color="dark cyan"/>
|
||||||
<channel id="0x1106" class="data" name="RespRate" details="Respiratory Rate" label="Resp. Rate" unit="breaths/min" color="dark magenta"/>
|
<channel id="0x1106" class="data" name="RespRate" details="Respiratory Rate" label="Resp. Rate" unit="breaths/min" color="dark magenta"/>
|
||||||
<channel id="0x1107" class="data" name="PTB" details="Patient Triggered Breaths" label="Pat. Trig. Breaths" unit="%" color="dark grey"/>
|
<channel id="0x1107" class="data" name="PTB" details="Patient Triggered Breaths" label="Pat. Trig. Breaths" unit="%" color="dark grey"/>
|
||||||
<channel id="0x1108" class="data" name="Leak" details="Leak Rate" label="Leaks" unit="L/min" color="dark green"/>
|
<channel id="0x1108" class="data" name="Leak" details="Leak Rate" label="Leaks" unit="L/min" color="dark green"/>
|
||||||
|
38
overview.cpp
38
overview.cpp
@ -87,31 +87,31 @@ Overview::Overview(QWidget *parent,gGraphView * shared) :
|
|||||||
// TODO: Automate graph creation process
|
// TODO: Automate graph creation process
|
||||||
|
|
||||||
// The following code (to the closing marker) is crap --->
|
// The following code (to the closing marker) is crap --->
|
||||||
AHI=createGraph("AHI");
|
AHI=createGraph("AHI","Apnea\nHypopnea\nIndex");
|
||||||
UC=createGraph("Usage");
|
UC=createGraph("Usage","Usage\n(time)");
|
||||||
|
|
||||||
int default_height=PROFILE["GraphHeight"].toInt();
|
int default_height=PROFILE["GraphHeight"].toInt();
|
||||||
US=new gGraph(GraphView,"Session Usage",default_height,0);
|
US=new gGraph(GraphView,"Session Times","Session Times\n(time)",default_height,0);
|
||||||
US->AddLayer(new gYAxisTime(),LayerLeft,gYAxis::Margin);
|
US->AddLayer(new gYAxisTime(),LayerLeft,gYAxis::Margin);
|
||||||
gXAxis *x=new gXAxis();
|
gXAxis *x=new gXAxis();
|
||||||
x->setUtcFix(true);
|
x->setUtcFix(true);
|
||||||
US->AddLayer(x,LayerBottom,0,gXAxis::Margin);
|
US->AddLayer(x,LayerBottom,0,gXAxis::Margin);
|
||||||
US->AddLayer(new gXGrid());
|
US->AddLayer(new gXGrid());
|
||||||
|
|
||||||
PR=createGraph("Pressure");
|
PR=createGraph("Pressure","Pressure\n(cmH2O)");
|
||||||
SET=createGraph("Settings");
|
SET=createGraph("Settings","Settings");
|
||||||
LK=createGraph("Leaks");
|
LK=createGraph("Leaks","Leak Rate\n(L/min)");
|
||||||
SES=createGraph("Sessions");
|
SES=createGraph("Sessions","Sessions\n(count)");
|
||||||
NPB=createGraph("% in PB");
|
NPB=createGraph("% in PB","Periodic\nBreathing\n(% of night)");
|
||||||
RR=createGraph("Resp. Rate");
|
RR=createGraph("Resp. Rate","Respiratory\nRate\n(breaths/min)");
|
||||||
TV=createGraph("Tidal Volume");
|
TV=createGraph("Tidal Volume","Tidal\nVolume\n(ml)");
|
||||||
MV=createGraph("Minute Vent.");
|
MV=createGraph("Minute Vent.","Minute\nVentilation\n(L/min)");
|
||||||
PTB=createGraph("Pat. Trig. Br.");
|
PTB=createGraph("Pat. Trig. Br.","Patient\nTriggered\nBreaths\n(%)");
|
||||||
PULSE=createGraph("Pulse Rate");
|
PULSE=createGraph("Pulse Rate","Pulse Rate\n(bpm)");
|
||||||
SPO2=createGraph("SpO2");
|
SPO2=createGraph("SpO2","Oxygen Saturation\n(%)");
|
||||||
WEIGHT=createGraph("Weight");
|
WEIGHT=createGraph("Weight","Weight\n(kg)");
|
||||||
BMI=createGraph("BMI");
|
BMI=createGraph("BMI","Body\nMass\nIndex");
|
||||||
ZOMBIE=createGraph("Zombie");
|
ZOMBIE=createGraph("Zombie","How you felt\n(% awesome)");
|
||||||
|
|
||||||
weight=new SummaryChart("Weight",GT_LINE);
|
weight=new SummaryChart("Weight",GT_LINE);
|
||||||
weight->setMachineType(MT_JOURNAL);
|
weight->setMachineType(MT_JOURNAL);
|
||||||
@ -234,10 +234,10 @@ Overview::~Overview()
|
|||||||
}
|
}
|
||||||
delete ui;
|
delete ui;
|
||||||
}
|
}
|
||||||
gGraph * Overview::createGraph(QString name)
|
gGraph * Overview::createGraph(QString name,QString units)
|
||||||
{
|
{
|
||||||
int default_height=PROFILE["GraphHeight"].toInt();
|
int default_height=PROFILE["GraphHeight"].toInt();
|
||||||
gGraph *g=new gGraph(GraphView,name,default_height,0);
|
gGraph *g=new gGraph(GraphView,name,units,default_height,0);
|
||||||
g->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
g->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
||||||
gXAxis *x=new gXAxis();
|
gXAxis *x=new gXAxis();
|
||||||
x->setUtcFix(true);
|
x->setUtcFix(true);
|
||||||
|
@ -33,7 +33,7 @@ public:
|
|||||||
void ReloadGraphs();
|
void ReloadGraphs();
|
||||||
void ResetGraphLayout();
|
void ResetGraphLayout();
|
||||||
void RedrawGraphs();
|
void RedrawGraphs();
|
||||||
gGraph * createGraph(QString name);
|
gGraph * createGraph(QString name,QString units="");
|
||||||
|
|
||||||
void PrintReport();
|
void PrintReport();
|
||||||
|
|
||||||
|
@ -725,10 +725,10 @@ Oximetry::Oximetry(QWidget *parent,gGraphView * shared) :
|
|||||||
|
|
||||||
layout->layout();
|
layout->layout();
|
||||||
|
|
||||||
PLETHY=new gGraph(GraphView,tr("Plethy"),120);
|
PLETHY=new gGraph(GraphView,schema::channel[OXI_Plethy].label(),schema::channel[OXI_Plethy].units(),120);
|
||||||
CONTROL=new gGraph(GraphView,tr("Control"),75);
|
CONTROL=new gGraph(GraphView,tr("Control"),"",75);
|
||||||
PULSE=new gGraph(GraphView,tr("Pulse Rate"),120);
|
PULSE=new gGraph(GraphView,schema::channel[OXI_Pulse].label(),schema::channel[OXI_Pulse].units(),120);
|
||||||
SPO2=new gGraph(GraphView,tr("SPO2"),120);
|
SPO2=new gGraph(GraphView,schema::channel[OXI_SPO2].label(),schema::channel[OXI_SPO2].units(),120);
|
||||||
foobar=new gShadowArea();
|
foobar=new gShadowArea();
|
||||||
CONTROL->AddLayer(foobar);
|
CONTROL->AddLayer(foobar);
|
||||||
Layer *cl=new gLineChart(OXI_Plethy);
|
Layer *cl=new gLineChart(OXI_Plethy);
|
||||||
|
14
report.cpp
14
report.cpp
@ -35,25 +35,25 @@ Report::Report(QWidget *parent, gGraphView * shared, Overview * overview) :
|
|||||||
// Reusing the layer data from overview screen,
|
// Reusing the layer data from overview screen,
|
||||||
// (Can't reuse the graphs objects without breaking things)
|
// (Can't reuse the graphs objects without breaking things)
|
||||||
|
|
||||||
graphs["Usage"]=UC=new gGraph(GraphView,"Usage",graph_print_height,0);
|
graphs["Usage"]=UC=new gGraph(GraphView,"Usage","",graph_print_height,0);
|
||||||
UC->AddLayer(m_overview->uc);
|
UC->AddLayer(m_overview->uc);
|
||||||
|
|
||||||
graphs["AHI"]=AHI=new gGraph(GraphView,"AHI",graph_print_height,0);
|
graphs["AHI"]=AHI=new gGraph(GraphView,"AHI","",graph_print_height,0);
|
||||||
AHI->AddLayer(m_overview->bc);
|
AHI->AddLayer(m_overview->bc);
|
||||||
|
|
||||||
graphs["Pressure"]=PR=new gGraph(GraphView,"Pressure",graph_print_height,0);
|
graphs["Pressure"]=PR=new gGraph(GraphView,"Pressure","",graph_print_height,0);
|
||||||
PR->AddLayer(m_overview->pr);
|
PR->AddLayer(m_overview->pr);
|
||||||
|
|
||||||
graphs["Leaks"]=LK=new gGraph(GraphView,"Leaks",graph_print_height,0);
|
graphs["Leaks"]=LK=new gGraph(GraphView,"Leaks","",graph_print_height,0);
|
||||||
LK->AddLayer(m_overview->lk);
|
LK->AddLayer(m_overview->lk);
|
||||||
|
|
||||||
graphs["%PB"]=NPB=new gGraph(GraphView,"% in PB",graph_print_height,0);
|
graphs["%PB"]=NPB=new gGraph(GraphView,"% in PB","",graph_print_height,0);
|
||||||
NPB->AddLayer(m_overview->npb);
|
NPB->AddLayer(m_overview->npb);
|
||||||
|
|
||||||
graphs["Settings"]=SET=new gGraph(GraphView,"Settings",graph_print_height,0);
|
graphs["Settings"]=SET=new gGraph(GraphView,"Settings","",graph_print_height,0);
|
||||||
SET->AddLayer(m_overview->set);
|
SET->AddLayer(m_overview->set);
|
||||||
|
|
||||||
graphs["Sessions"]=SES=new gGraph(GraphView,"Sessions",graph_print_height,0);
|
graphs["Sessions"]=SES=new gGraph(GraphView,"Sessions","",graph_print_height,0);
|
||||||
SES->AddLayer(m_overview->ses);
|
SES->AddLayer(m_overview->ses);
|
||||||
|
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user