mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-06 11:10:44 +00:00
Ported Oximetry to new graphing system
This commit is contained in:
parent
2a4b2d6544
commit
7f0699d426
@ -718,16 +718,18 @@ void gGraph::ResetBounds()
|
|||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
gGraphView::gGraphView(QWidget *parent) :
|
gGraphView::gGraphView(QWidget *parent, gGraphView * shared) :
|
||||||
QGLWidget(parent),
|
QGLWidget(parent,shared),
|
||||||
m_offsetY(0),m_offsetX(0),m_scaleY(1.0),m_scrollbar(NULL)
|
m_offsetY(0),m_offsetX(0),m_scaleY(1.0),m_scrollbar(NULL)
|
||||||
{
|
{
|
||||||
|
m_shared=shared;
|
||||||
m_sizer_index=m_graph_index=0;
|
m_sizer_index=m_graph_index=0;
|
||||||
m_textque_items=0;
|
m_textque_items=0;
|
||||||
m_button_down=m_graph_dragging=m_sizer_dragging=false;
|
m_button_down=m_graph_dragging=m_sizer_dragging=false;
|
||||||
m_lastypos=m_lastxpos=0;
|
m_lastypos=m_lastxpos=0;
|
||||||
m_horiz_travel=0;
|
m_horiz_travel=0;
|
||||||
this->setMouseTracking(true);
|
this->setMouseTracking(true);
|
||||||
|
m_emptytext=QObject::tr("No Data");
|
||||||
InitGraphs();
|
InitGraphs();
|
||||||
}
|
}
|
||||||
gGraphView::~gGraphView()
|
gGraphView::~gGraphView()
|
||||||
@ -802,7 +804,7 @@ float gGraphView::totalHeight()
|
|||||||
{
|
{
|
||||||
float th=0;
|
float th=0;
|
||||||
for (int i=0;i<m_graphs.size();i++) {
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
if (m_graphs[i]->isEmpty()) continue;
|
if (m_graphs[i]->isEmpty() || (!m_graphs[i]->visible())) continue;
|
||||||
th += m_graphs[i]->height() + graphSpacer;
|
th += m_graphs[i]->height() + graphSpacer;
|
||||||
}
|
}
|
||||||
return ceil(th);
|
return ceil(th);
|
||||||
@ -812,7 +814,7 @@ float gGraphView::findTop(gGraph * graph)
|
|||||||
float th=-m_offsetY;
|
float th=-m_offsetY;
|
||||||
for (int i=0;i<m_graphs.size();i++) {
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
if (m_graphs[i]==graph) break;
|
if (m_graphs[i]==graph) break;
|
||||||
if (m_graphs[i]->isEmpty()) continue;
|
if (m_graphs[i]->isEmpty() || (!m_graphs[i]->visible())) continue;
|
||||||
th += m_graphs[i]->height()*m_scaleY + graphSpacer;
|
th += m_graphs[i]->height()*m_scaleY + graphSpacer;
|
||||||
}
|
}
|
||||||
//th-=m_offsetY;
|
//th-=m_offsetY;
|
||||||
@ -822,7 +824,7 @@ float gGraphView::scaleHeight()
|
|||||||
{
|
{
|
||||||
float th=0;
|
float th=0;
|
||||||
for (int i=0;i<m_graphs.size();i++) {
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
if (m_graphs[i]->isEmpty()) continue;
|
if (m_graphs[i]->isEmpty() || (!m_graphs[i]->visible())) continue;
|
||||||
th += m_graphs[i]->height() * m_scaleY + graphSpacer;
|
th += m_graphs[i]->height() * m_scaleY + graphSpacer;
|
||||||
}
|
}
|
||||||
return ceil(th);
|
return ceil(th);
|
||||||
@ -884,7 +886,7 @@ void gGraphView::updateScrollBar()
|
|||||||
float h=height(); // height of main widget
|
float h=height(); // height of main widget
|
||||||
|
|
||||||
float vis=0;
|
float vis=0;
|
||||||
for (int i=0;i<m_graphs.size();i++) vis+=m_graphs[i]->isEmpty() ? 0 : 1;
|
for (int i=0;i<m_graphs.size();i++) vis+=m_graphs[i]->isEmpty() || (!m_graphs[i]->visible()) ? 0 : 1;
|
||||||
|
|
||||||
if (th<h) { // less graphs than fits on screen
|
if (th<h) { // less graphs than fits on screen
|
||||||
|
|
||||||
@ -954,16 +956,13 @@ void gGraphView::paintGL()
|
|||||||
|
|
||||||
float px=titleWidth-m_offsetX;
|
float px=titleWidth-m_offsetX;
|
||||||
float py=-m_offsetY;
|
float py=-m_offsetY;
|
||||||
int numgraphs=m_graphs.size();
|
int numgraphs=0;
|
||||||
float h,w;
|
float h,w;
|
||||||
//ax=px;//-m_offsetX;
|
//ax=px;//-m_offsetX;
|
||||||
if (!numgraphs) {
|
|
||||||
QString ts="No Data";
|
|
||||||
|
|
||||||
} else
|
|
||||||
for (int i=0;i<numgraphs;i++) {
|
|
||||||
if (m_graphs[i]->isEmpty()) continue;
|
|
||||||
|
|
||||||
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
|
if (m_graphs[i]->isEmpty() || !m_graphs[i]->visible()) continue;
|
||||||
|
numgraphs++;
|
||||||
h=m_graphs[i]->height() * m_scaleY;
|
h=m_graphs[i]->height() * m_scaleY;
|
||||||
|
|
||||||
// set clipping?
|
// set clipping?
|
||||||
@ -997,7 +996,12 @@ void gGraphView::paintGL()
|
|||||||
py+=graphSpacer;
|
py+=graphSpacer;
|
||||||
py=ceil(py);
|
py=ceil(py);
|
||||||
}
|
}
|
||||||
|
if (!numgraphs) {
|
||||||
|
QColor col=Qt::black;
|
||||||
|
float x,y;
|
||||||
|
GetTextExtent(m_emptytext,x,y,bigfont);
|
||||||
|
AddTextQue(m_emptytext,(width()/2)-x/2,(height()/2)+y/2,0.0,col,bigfont);
|
||||||
|
}
|
||||||
DrawTextQue();
|
DrawTextQue();
|
||||||
//glDisable(GL_TEXTURE_2D);
|
//glDisable(GL_TEXTURE_2D);
|
||||||
//glDisable(GL_DEPTH_TEST);
|
//glDisable(GL_DEPTH_TEST);
|
||||||
@ -1050,7 +1054,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
|||||||
if (y < yy) {
|
if (y < yy) {
|
||||||
|
|
||||||
for (int i=m_graph_index-1;i>=0;i--) {
|
for (int i=m_graph_index-1;i>=0;i--) {
|
||||||
empty=m_graphs[i]->isEmpty();
|
empty=m_graphs[i]->isEmpty() || (!m_graphs[i]->visible());
|
||||||
// swapping upwards.
|
// swapping upwards.
|
||||||
int yy2=yy-graphSpacer-m_graphs[i]->height()*m_scaleY;
|
int yy2=yy-graphSpacer-m_graphs[i]->height()*m_scaleY;
|
||||||
yy2+=m_graphs[m_graph_index]->height()*m_scaleY;
|
yy2+=m_graphs[m_graph_index]->height()*m_scaleY;
|
||||||
@ -1072,7 +1076,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
|||||||
// swapping downwards
|
// swapping downwards
|
||||||
//qDebug() << "Graph Reorder" << m_graph_index;
|
//qDebug() << "Graph Reorder" << m_graph_index;
|
||||||
for (int i=m_graph_index+1;i<m_graphs.size();i++) {
|
for (int i=m_graph_index+1;i<m_graphs.size();i++) {
|
||||||
empty=m_graphs[i]->isEmpty();
|
empty=m_graphs[i]->isEmpty() || (!m_graphs[i]->visible());
|
||||||
p=m_graphs[m_graph_index];
|
p=m_graphs[m_graph_index];
|
||||||
m_graphs[m_graph_index]=m_graphs[i];
|
m_graphs[m_graph_index]=m_graphs[i];
|
||||||
m_graphs[i]=p;
|
m_graphs[i]=p;
|
||||||
@ -1092,7 +1096,7 @@ void gGraphView::mouseMoveEvent(QMouseEvent * event)
|
|||||||
|
|
||||||
for (int i=0; i < m_graphs.size(); i++) {
|
for (int i=0; i < m_graphs.size(); i++) {
|
||||||
|
|
||||||
if (m_graphs[i]->isEmpty()) continue;
|
if (m_graphs[i]->isEmpty() || (!m_graphs[i]->visible())) continue;
|
||||||
|
|
||||||
h=m_graphs[i]->height() * m_scaleY;
|
h=m_graphs[i]->height() * m_scaleY;
|
||||||
if (py > height())
|
if (py > height())
|
||||||
@ -1133,7 +1137,7 @@ void gGraphView::mousePressEvent(QMouseEvent * event)
|
|||||||
|
|
||||||
for (int i=0;i<m_graphs.size();i++) {
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
|
|
||||||
if (m_graphs[i]->isEmpty()) continue;
|
if (m_graphs[i]->isEmpty() || (!m_graphs[i]->visible())) continue;
|
||||||
|
|
||||||
h=m_graphs[i]->height()*m_scaleY;
|
h=m_graphs[i]->height()*m_scaleY;
|
||||||
if (py>height())
|
if (py>height())
|
||||||
@ -1250,7 +1254,7 @@ void gGraphView::wheelEvent(QWheelEvent * event)
|
|||||||
|
|
||||||
for (int i=0;i<m_graphs.size();i++) {
|
for (int i=0;i<m_graphs.size();i++) {
|
||||||
|
|
||||||
if (m_graphs[i]->isEmpty()) continue;
|
if (m_graphs[i]->isEmpty() || (!m_graphs[i]->visible())) continue;
|
||||||
|
|
||||||
h=m_graphs[i]->height()*m_scaleY;
|
h=m_graphs[i]->height()*m_scaleY;
|
||||||
if (py>height())
|
if (py>height())
|
||||||
|
@ -201,7 +201,7 @@ class gGraphView : public QGLWidget
|
|||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
explicit gGraphView(QWidget *parent = 0);
|
explicit gGraphView(QWidget *parent = 0,gGraphView * shared=0);
|
||||||
virtual ~gGraphView();
|
virtual ~gGraphView();
|
||||||
void AddGraph(gGraph *g,short group=0);
|
void AddGraph(gGraph *g,short group=0);
|
||||||
|
|
||||||
@ -229,6 +229,13 @@ public:
|
|||||||
void AddTextQue(QString & text, short x, short y, float angle, QColor & color, QFont * font);
|
void AddTextQue(QString & text, short x, short y, float angle, QColor & color, QFont * font);
|
||||||
int horizTravel() { return m_horiz_travel; }
|
int horizTravel() { return m_horiz_travel; }
|
||||||
void DrawTextQue();
|
void DrawTextQue();
|
||||||
|
|
||||||
|
int size() { return m_graphs.size(); }
|
||||||
|
gGraph * operator[](int i) { return m_graphs[i]; }
|
||||||
|
|
||||||
|
void updateScrollBar();
|
||||||
|
void updateScale(); // update scale & Scrollbar
|
||||||
|
void setEmptyText(QString s) { m_emptytext=s; }
|
||||||
protected:
|
protected:
|
||||||
|
|
||||||
|
|
||||||
@ -251,9 +258,8 @@ protected:
|
|||||||
virtual void wheelEvent(QWheelEvent * event);
|
virtual void wheelEvent(QWheelEvent * event);
|
||||||
virtual void keyPressEvent(QKeyEvent * event);
|
virtual void keyPressEvent(QKeyEvent * event);
|
||||||
|
|
||||||
void updateScrollBar();
|
|
||||||
void updateScale(); // update scale & Scrollbar
|
|
||||||
|
|
||||||
|
gGraphView *m_shared; // convenient link to daily's graphs.
|
||||||
QVector<gGraph *> m_graphs;
|
QVector<gGraph *> m_graphs;
|
||||||
int m_offsetY,m_offsetX; // Scroll Offsets
|
int m_offsetY,m_offsetX; // Scroll Offsets
|
||||||
float m_scaleY;
|
float m_scaleY;
|
||||||
@ -275,6 +281,8 @@ protected:
|
|||||||
TextQue m_textque[textque_max];
|
TextQue m_textque[textque_max];
|
||||||
int m_textque_items;
|
int m_textque_items;
|
||||||
int m_lastxpos,m_lastypos;
|
int m_lastxpos,m_lastypos;
|
||||||
|
|
||||||
|
QString m_emptytext;
|
||||||
signals:
|
signals:
|
||||||
|
|
||||||
|
|
||||||
|
@ -35,6 +35,8 @@ void gXGrid::paint(gGraph & w,int left,int top, int width, int height)
|
|||||||
}
|
}
|
||||||
double dy=maxy-miny;
|
double dy=maxy-miny;
|
||||||
if (dy<=0) {
|
if (dy<=0) {
|
||||||
|
if ((maxy==0) && (miny==0))
|
||||||
|
return;
|
||||||
//miny=miny;
|
//miny=miny;
|
||||||
maxy++;
|
maxy++;
|
||||||
dy=1;
|
dy=1;
|
||||||
@ -137,8 +139,11 @@ void gXGrid::paint(gGraph & w,int left,int top, int width, int height)
|
|||||||
minorvertarray[minorvertcnt++]=left+width;
|
minorvertarray[minorvertcnt++]=left+width;
|
||||||
minorvertarray[minorvertcnt++]=g;
|
minorvertarray[minorvertcnt++]=g;
|
||||||
}
|
}
|
||||||
|
if (minorvertcnt>=maxverts) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
if (vertcnt>=maxverts) {
|
if ((majorvertcnt>=maxverts)||(minorvertcnt>=maxverts)) {
|
||||||
qWarning() << "vertarray bounds exceeded in gYAxis for " << w.title() << "graph" << "MinY =" <<miny << "MaxY =" << maxy << "min_ytick=" <<min_ytick;
|
qWarning() << "vertarray bounds exceeded in gYAxis for " << w.title() << "graph" << "MinY =" <<miny << "MaxY =" << maxy << "min_ytick=" <<min_ytick;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
@ -192,6 +197,8 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height)
|
|||||||
}
|
}
|
||||||
double dy=maxy-miny;
|
double dy=maxy-miny;
|
||||||
if (dy<=0) {
|
if (dy<=0) {
|
||||||
|
if ((maxy==0) && (miny==0))
|
||||||
|
return;
|
||||||
//miny=miny;
|
//miny=miny;
|
||||||
maxy++;
|
maxy++;
|
||||||
dy=1;
|
dy=1;
|
||||||
|
@ -27,11 +27,12 @@ void InitGraphs()
|
|||||||
{
|
{
|
||||||
if (!_graph_init) {
|
if (!_graph_init) {
|
||||||
defaultfont=new QFont("Sans Serif",10);
|
defaultfont=new QFont("Sans Serif",10);
|
||||||
bigfont=new QFont("Sans Serif",35);
|
|
||||||
mediumfont=new QFont("Sans Serif",11);
|
mediumfont=new QFont("Sans Serif",11);
|
||||||
|
bigfont=new QFont("Serif",35);
|
||||||
|
|
||||||
defaultfont->setStyleHint(QFont::SansSerif,QFont::OpenGLCompatible);
|
defaultfont->setStyleHint(QFont::SansSerif,QFont::OpenGLCompatible);
|
||||||
mediumfont->setStyleHint(QFont::SansSerif,QFont::OpenGLCompatible);
|
mediumfont->setStyleHint(QFont::SansSerif,QFont::OpenGLCompatible);
|
||||||
bigfont->setStyleHint(QFont::SansSerif,QFont::OpenGLCompatible);
|
bigfont->setStyleHint(QFont::Serif ,QFont::OpenGLCompatible);
|
||||||
|
|
||||||
for (int i=0;i<num_vert_arrays;i++) {
|
for (int i=0;i<num_vert_arrays;i++) {
|
||||||
// The extra 8 vertexes are important..
|
// The extra 8 vertexes are important..
|
||||||
|
@ -26,7 +26,12 @@ public:
|
|||||||
void AddWaveform(qint64 start, unsigned char * data, int recs, qint64 duration);
|
void AddWaveform(qint64 start, unsigned char * data, int recs, qint64 duration);
|
||||||
void AddWaveform(qint64 start, char * data, int recs, qint64 duration);
|
void AddWaveform(qint64 start, char * data, int recs, qint64 duration);
|
||||||
|
|
||||||
inline const int & count() { return m_count; }
|
inline const int & count() {
|
||||||
|
if (m_count>m_data.size()) {
|
||||||
|
int i=0;
|
||||||
|
}
|
||||||
|
return m_count;
|
||||||
|
}
|
||||||
void setCount(int count) { m_count=count; }
|
void setCount(int count) { m_count=count; }
|
||||||
|
|
||||||
inline EventStoreType raw(int i) { return m_data[i]; }
|
inline EventStoreType raw(int i) { return m_data[i]; }
|
||||||
|
@ -785,8 +785,11 @@ bool ResmedLoader::LoadPLD(Session *sess,EDFParser &edf)
|
|||||||
a=NULL;
|
a=NULL;
|
||||||
}
|
}
|
||||||
if (a) {
|
if (a) {
|
||||||
sess->setMin(code,a->min());
|
double min=floor(a->min()), max=ceil(a->max());
|
||||||
sess->setMax(code,a->max());
|
if (min==max) max+=1;
|
||||||
|
|
||||||
|
sess->setMin(code,min);
|
||||||
|
sess->setMax(code,max);
|
||||||
a->setDimension(es.physical_dimension);
|
a->setDimension(es.physical_dimension);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
17
daily.cpp
17
daily.cpp
@ -31,7 +31,7 @@
|
|||||||
const int min_height=150;
|
const int min_height=150;
|
||||||
const int default_height=150;
|
const int default_height=150;
|
||||||
|
|
||||||
Daily::Daily(QWidget *parent,QGLWidget * shared, MainWindow *mw)
|
Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw)
|
||||||
:QWidget(parent),mainwin(mw), ui(new Ui::Daily)
|
:QWidget(parent),mainwin(mw), ui(new Ui::Daily)
|
||||||
{
|
{
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
@ -197,10 +197,10 @@ Daily::Daily(QWidget *parent,QGLWidget * shared, MainWindow *mw)
|
|||||||
|
|
||||||
NoData=new QLabel(tr("No data"),ui->graphMainArea);
|
NoData=new QLabel(tr("No data"),ui->graphMainArea);
|
||||||
NoData->setAlignment(Qt::AlignCenter);
|
NoData->setAlignment(Qt::AlignCenter);
|
||||||
QFont font("FreeSans",20); //NoData->font();
|
QFont font("Sans Serif",20); //NoData->font();
|
||||||
//font.setBold(true);
|
//font.setBold(true);
|
||||||
NoData->setFont(font);
|
NoData->setFont(font);
|
||||||
layout->addWidget(NoData,1);
|
layout->addWidget(NoData,0);
|
||||||
NoData->hide();
|
NoData->hide();
|
||||||
|
|
||||||
layout->layout();
|
layout->layout();
|
||||||
@ -781,18 +781,17 @@ void Daily::Load(QDate date)
|
|||||||
GraphView->ResetBounds();
|
GraphView->ResetBounds();
|
||||||
//GraphView->ResetBounds(1);
|
//GraphView->ResetBounds(1);
|
||||||
|
|
||||||
GraphView->updateGL();
|
//GraphView->setEmptyText(tr("No Data")); //tr("No data for ")+date.toString(Qt::SystemLocaleLongDate));
|
||||||
if (!cpap && !oxi) {
|
if (!cpap && !oxi) {
|
||||||
//splitter->setMinimumHeight(0);
|
//splitter->setMinimumHeight(0);
|
||||||
scrollbar->hide();
|
scrollbar->hide();
|
||||||
GraphView->hide();
|
// GraphView->hide();
|
||||||
NoData->setText(tr("No data for ")+date.toString(Qt::SystemLocaleLongDate));
|
|
||||||
NoData->show();
|
|
||||||
} else {
|
} else {
|
||||||
NoData->hide();
|
//NoData->hide();
|
||||||
GraphView->show();
|
// GraphView->show();
|
||||||
scrollbar->show();
|
scrollbar->show();
|
||||||
}
|
}
|
||||||
|
GraphView->updateGL();
|
||||||
|
|
||||||
//RedrawGraphs();
|
//RedrawGraphs();
|
||||||
|
|
||||||
|
4
daily.h
4
daily.h
@ -36,11 +36,11 @@ class Daily : public QWidget
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit Daily(QWidget *parent,QGLWidget *shared,MainWindow *mw);
|
explicit Daily(QWidget *parent,gGraphView *shared,MainWindow *mw);
|
||||||
~Daily();
|
~Daily();
|
||||||
void ReloadGraphs();
|
void ReloadGraphs();
|
||||||
void ResetGraphLayout();
|
void ResetGraphLayout();
|
||||||
QGLWidget *SharedWidget() { return GraphView; }
|
gGraphView *SharedWidget() { return GraphView; }
|
||||||
void RedrawGraphs();
|
void RedrawGraphs();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
|
2
daily.ui
2
daily.ui
@ -6,7 +6,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>1036</width>
|
<width>840</width>
|
||||||
<height>622</height>
|
<height>622</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
|
@ -123,10 +123,10 @@ MainWindow::MainWindow(QWidget *parent) :
|
|||||||
|
|
||||||
//overview=new Overview(ui->tabWidget,daily->SharedWidget());
|
//overview=new Overview(ui->tabWidget,daily->SharedWidget());
|
||||||
//ui->tabWidget->insertTab(2,overview,tr("Overview"));
|
//ui->tabWidget->insertTab(2,overview,tr("Overview"));
|
||||||
oximetry=NULL;
|
//oximetry=NULL;
|
||||||
//overview=NULL;
|
//overview=NULL;
|
||||||
// oximetry=new Oximetry(ui->tabWidget,daily->SharedWidget());
|
oximetry=new Oximetry(ui->tabWidget,daily->SharedWidget());
|
||||||
//ui->tabWidget->insertTab(3,oximetry,tr("Oximetry"));
|
ui->tabWidget->insertTab(3,oximetry,tr("Oximetry"));
|
||||||
|
|
||||||
ui->tabWidget->setCurrentWidget(ui->welcome);
|
ui->tabWidget->setCurrentWidget(ui->welcome);
|
||||||
|
|
||||||
|
@ -6,7 +6,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>930</width>
|
<width>668</width>
|
||||||
<height>540</height>
|
<height>540</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -565,8 +565,8 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>930</width>
|
<width>668</width>
|
||||||
<height>24</height>
|
<height>25</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
<property name="sizePolicy">
|
<property name="sizePolicy">
|
||||||
|
139
oximetry.cpp
139
oximetry.cpp
@ -12,14 +12,14 @@
|
|||||||
#include "Graphs/gBarChart.h"
|
#include "Graphs/gBarChart.h"
|
||||||
#include "Graphs/gLineChart.h"
|
#include "Graphs/gLineChart.h"
|
||||||
#include "Graphs/gYAxis.h"
|
#include "Graphs/gYAxis.h"
|
||||||
#include "Graphs/gFooBar.h"
|
|
||||||
|
|
||||||
Oximetry::Oximetry(QWidget *parent,QGLWidget * shared) :
|
Oximetry::Oximetry(QWidget *parent,gGraphView * shared) :
|
||||||
QWidget(parent),
|
QWidget(parent),
|
||||||
ui(new Ui::Oximetry)
|
ui(new Ui::Oximetry)
|
||||||
{
|
{
|
||||||
|
m_shared=shared;
|
||||||
ui->setupUi(this);
|
ui->setupUi(this);
|
||||||
/* port=NULL;
|
port=NULL;
|
||||||
portname="";
|
portname="";
|
||||||
QString prof=pref["Profile"].toString();
|
QString prof=pref["Profile"].toString();
|
||||||
profile=Profiles::Get(prof);
|
profile=Profiles::Get(prof);
|
||||||
@ -41,11 +41,44 @@ Oximetry::Oximetry(QWidget *parent,QGLWidget * shared) :
|
|||||||
session=new Session(mach,0);
|
session=new Session(mach,0);
|
||||||
day->AddSession(session);
|
day->AddSession(session);
|
||||||
|
|
||||||
splitter=ui->graphLayout;
|
layout=new QHBoxLayout(ui->graphArea);
|
||||||
//splitter=new QSplitter(Qt::Vertical,ui->scrollArea);
|
layout->setSpacing(0);
|
||||||
//gSplitter->setStyleSheet("QSplitter::handle { background-color: 'dark grey'; }");
|
layout->setMargin(0);
|
||||||
//gSplitter->setHandleWidth(2);
|
layout->setContentsMargins(0,0,0,0);
|
||||||
//ui->graphLayout->addWidget(splitter);
|
ui->graphArea->setLayout(layout);
|
||||||
|
ui->graphArea->setAutoFillBackground(false);
|
||||||
|
|
||||||
|
GraphView=new gGraphView(ui->graphArea,m_shared);
|
||||||
|
GraphView->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding);
|
||||||
|
|
||||||
|
scrollbar=new MyScrollBar(ui->graphArea);
|
||||||
|
scrollbar->setOrientation(Qt::Vertical);
|
||||||
|
scrollbar->setSizePolicy(QSizePolicy::Maximum,QSizePolicy::Expanding);
|
||||||
|
scrollbar->setMaximumWidth(20);
|
||||||
|
|
||||||
|
GraphView->setScrollBar(scrollbar);
|
||||||
|
layout->addWidget(GraphView,1);
|
||||||
|
layout->addWidget(scrollbar,0);
|
||||||
|
|
||||||
|
layout->layout();
|
||||||
|
|
||||||
|
PLETHY=new gGraph(GraphView,tr("Plethy"),120);
|
||||||
|
CONTROL=new gGraph(GraphView,tr("Control"),75);
|
||||||
|
PULSE=new gGraph(GraphView,tr("Pulse Rate"),120);
|
||||||
|
SPO2=new gGraph(GraphView,tr("SPO2"),120);
|
||||||
|
foobar=new gShadowArea();
|
||||||
|
CONTROL->AddLayer(foobar);
|
||||||
|
Layer *cl=new gLineChart(OXI_Plethysomogram);
|
||||||
|
CONTROL->AddLayer(cl);
|
||||||
|
cl->SetDay(day);
|
||||||
|
CONTROL->setBlockZoom(true);
|
||||||
|
|
||||||
|
for (int i=0;i<GraphView->size();i++) {
|
||||||
|
gGraph *g=(*GraphView)[i];
|
||||||
|
g->AddLayer(new gXAxis(),LayerBottom,0,gXAxis::Margin);
|
||||||
|
g->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin);
|
||||||
|
g->AddLayer(new gXGrid());
|
||||||
|
}
|
||||||
|
|
||||||
// Create the Event Lists to store / import data
|
// Create the Event Lists to store / import data
|
||||||
ev_plethy=new EventList(OXI_Plethysomogram,EVL_Waveform,1,0,0,0,1000.0/50.0);
|
ev_plethy=new EventList(OXI_Plethysomogram,EVL_Waveform,1,0,0,0,1000.0/50.0);
|
||||||
@ -57,41 +90,27 @@ Oximetry::Oximetry(QWidget *parent,QGLWidget * shared) :
|
|||||||
ev_spo2=new EventList(OXI_SPO2,EVL_Event,1);
|
ev_spo2=new EventList(OXI_SPO2,EVL_Event,1);
|
||||||
session->eventlist[OXI_SPO2].push_back(ev_spo2);
|
session->eventlist[OXI_SPO2].push_back(ev_spo2);
|
||||||
|
|
||||||
QWidget * parental=ui->scrollArea;
|
|
||||||
plethy=new gLineChart(OXI_Plethysomogram,Qt::black,false,true);
|
plethy=new gLineChart(OXI_Plethysomogram,Qt::black,false,true);
|
||||||
AddGraph(PLETHY=new gGraphWindow(parental,tr("Plethysomogram"),shared));
|
|
||||||
plethy->SetDay(day);
|
plethy->SetDay(day);
|
||||||
|
|
||||||
|
CONTROL->AddLayer(plethy); //new gLineChart(OXI_Plethysomogram));
|
||||||
|
|
||||||
|
|
||||||
pulse=new gLineChart(OXI_Pulse,Qt::red,true);
|
pulse=new gLineChart(OXI_Pulse,Qt::red,true);
|
||||||
AddGraph(PULSE=new gGraphWindow(parental,tr("Pulse Rate"),shared));
|
|
||||||
pulse->SetDay(day);
|
pulse->SetDay(day);
|
||||||
|
|
||||||
spo2=new gLineChart(OXI_SPO2,Qt::blue,true);
|
spo2=new gLineChart(OXI_SPO2,Qt::blue,true);
|
||||||
AddGraph(SPO2=new gGraphWindow(parental,tr("SPO2"),shared));
|
|
||||||
spo2->SetDay(day);
|
spo2->SetDay(day);
|
||||||
|
|
||||||
for (int i=0;i<Graphs.size();i++) {
|
|
||||||
for (int j=0;j<Graphs.size();j++) {
|
|
||||||
if (Graphs[i]!=Graphs[j])
|
|
||||||
Graphs[i]->LinkZoom(Graphs[j]);
|
|
||||||
}
|
|
||||||
Graphs[i]->AddLayer(new gYAxis());
|
|
||||||
Graphs[i]->AddLayer(new gXAxis());
|
|
||||||
//Graphs[i]->AddLayer(new gFooBar());
|
|
||||||
|
|
||||||
splitter->addWidget(Graphs[i]);
|
|
||||||
}
|
|
||||||
PLETHY->AddLayer(plethy);
|
PLETHY->AddLayer(plethy);
|
||||||
PLETHY->AddLayer(new gFooBar());
|
|
||||||
PULSE->AddLayer(pulse);
|
PULSE->AddLayer(pulse);
|
||||||
SPO2->AddLayer(spo2);
|
SPO2->AddLayer(spo2);
|
||||||
|
|
||||||
for (int i=0;i<Graphs.size();i++) {
|
GraphView->updateGL();
|
||||||
Graphs[i]->setMinimumHeight(150);
|
|
||||||
Graphs[i]->SetSplitter(splitter);
|
on_RefreshPortsButton_clicked();
|
||||||
}
|
|
||||||
|
|
||||||
on_RefreshPortsButton_clicked(); */
|
|
||||||
}
|
}
|
||||||
|
|
||||||
Oximetry::~Oximetry()
|
Oximetry::~Oximetry()
|
||||||
@ -148,9 +167,7 @@ void Oximetry::on_RefreshPortsButton_clicked()
|
|||||||
}
|
}
|
||||||
void Oximetry::RedrawGraphs()
|
void Oximetry::RedrawGraphs()
|
||||||
{
|
{
|
||||||
for (QVector<gGraphWindow *>::iterator g=Graphs.begin();g!=Graphs.end();g++) {
|
GraphView->updateGL();
|
||||||
(*g)->updateGL();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
void Oximetry::on_RunButton_toggled(bool checked)
|
void Oximetry::on_RunButton_toggled(bool checked)
|
||||||
@ -209,14 +226,16 @@ void Oximetry::on_RunButton_toggled(bool checked)
|
|||||||
connect(port, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
|
connect(port, SIGNAL(readyRead()), this, SLOT(onReadyRead()));
|
||||||
connect(port, SIGNAL(dsrChanged(bool)), this, SLOT(onDsrChanged(bool)));
|
connect(port, SIGNAL(dsrChanged(bool)), this, SLOT(onDsrChanged(bool)));
|
||||||
if (!(port->lineStatus() & LS_DSR))
|
if (!(port->lineStatus() & LS_DSR))
|
||||||
qDebug() << "warning: device is not turned on";
|
qDebug() << "check device is turned on";
|
||||||
qDebug() << "listening for data on" << port->portName();
|
qDebug() << "listening for data on" << port->portName();
|
||||||
} else {
|
} else {
|
||||||
qDebug() << "device failed to open:" << port->errorString();
|
qDebug() << "device failed to open:" << port->errorString();
|
||||||
}
|
}
|
||||||
portmode=PM_LIVE;
|
portmode=PM_LIVE;
|
||||||
|
//foobar->setVisible(false);
|
||||||
|
CONTROL->setVisible(false);
|
||||||
} else {
|
} else {
|
||||||
|
//foobar->setVisible(true);
|
||||||
ui->RunButton->setText("&Start");
|
ui->RunButton->setText("&Start");
|
||||||
ui->SerialPortsCombo->setEnabled(true);
|
ui->SerialPortsCombo->setEnabled(true);
|
||||||
delete port;
|
delete port;
|
||||||
@ -243,21 +262,26 @@ void Oximetry::on_RunButton_toggled(bool checked)
|
|||||||
PULSE->MaxX();
|
PULSE->MaxX();
|
||||||
PLETHY->MinX();
|
PLETHY->MinX();
|
||||||
PLETHY->MaxX();
|
PLETHY->MaxX();
|
||||||
|
//GraphView->ResetBounds();
|
||||||
PLETHY->updateGL();
|
CONTROL->SetMinX(ev_plethy->first());
|
||||||
SPO2->updateGL();
|
CONTROL->SetMaxX(lasttime);
|
||||||
PULSE->updateGL();
|
CONTROL->ResetBounds();
|
||||||
|
|
||||||
qint64 d=session->length();
|
qint64 d=session->length();
|
||||||
// if (d<=30000)
|
// if (d<=30000)
|
||||||
// return;
|
// return;
|
||||||
|
if (ev_pulse->count()>1 && (ev_spo2->count()>1))
|
||||||
if (QMessageBox::question(this,"Keep This Recording?","Would you like to keep this oximeter recording?",QMessageBox::Yes|QMessageBox::No)==QMessageBox::Yes) {
|
if (QMessageBox::question(this,"Keep This Recording?","Would you like to keep this oximeter recording?",QMessageBox::Yes|QMessageBox::No)==QMessageBox::Yes) {
|
||||||
qDebug() << "Saving oximeter session data";
|
qDebug() << "Saving oximeter session data";
|
||||||
|
|
||||||
|
session->eventlist.clear();
|
||||||
|
|
||||||
Session *sess=new Session(mach,starttime/1000L);
|
Session *sess=new Session(mach,starttime/1000L);
|
||||||
|
|
||||||
/*ev_spo2->setCode(CPAP_SPO2);
|
/*ev_spo2->setCode(CPAP_SPO2);
|
||||||
ev_pulse->setCode(CPAP_Pulse);
|
ev_pulse->setCode(CPAP_Pulse);
|
||||||
ev_plethy->setCode(CPAP_Plethy); */
|
ev_plethy->setCode(CPAP_Plethy); */
|
||||||
|
|
||||||
sess->eventlist[OXI_SPO2].push_back(ev_spo2);
|
sess->eventlist[OXI_SPO2].push_back(ev_spo2);
|
||||||
sess->eventlist[OXI_Pulse].push_back(ev_pulse);
|
sess->eventlist[OXI_Pulse].push_back(ev_pulse);
|
||||||
sess->eventlist[OXI_Plethysomogram].push_back(ev_plethy);
|
sess->eventlist[OXI_Plethysomogram].push_back(ev_plethy);
|
||||||
@ -271,8 +295,6 @@ void Oximetry::on_RunButton_toggled(bool checked)
|
|||||||
sess->avg(OXI_Pulse);
|
sess->avg(OXI_Pulse);
|
||||||
sess->wavg(OXI_Pulse);
|
sess->wavg(OXI_Pulse);
|
||||||
sess->p90(OXI_Pulse);
|
sess->p90(OXI_Pulse);
|
||||||
//sess->min(OXI_Pulse);
|
|
||||||
//sess->max(OXI_Pulse);
|
|
||||||
|
|
||||||
sess->setMin(OXI_SPO2,ev_spo2->min());
|
sess->setMin(OXI_SPO2,ev_spo2->min());
|
||||||
sess->setMax(OXI_SPO2,ev_spo2->max());
|
sess->setMax(OXI_SPO2,ev_spo2->max());
|
||||||
@ -281,16 +303,13 @@ void Oximetry::on_RunButton_toggled(bool checked)
|
|||||||
sess->avg(OXI_SPO2);
|
sess->avg(OXI_SPO2);
|
||||||
sess->wavg(OXI_SPO2);
|
sess->wavg(OXI_SPO2);
|
||||||
sess->p90(OXI_SPO2);
|
sess->p90(OXI_SPO2);
|
||||||
//sess->min(OXI_SPO2);
|
|
||||||
//sess->max(OXI_SPO2);
|
|
||||||
|
|
||||||
//sess->min(OXI_Plethysomogram);
|
|
||||||
//sess->max(OXI_Plethysomogram);
|
|
||||||
sess->avg(OXI_Plethysomogram);
|
sess->avg(OXI_Plethysomogram);
|
||||||
sess->wavg(OXI_Plethysomogram);
|
sess->wavg(OXI_Plethysomogram);
|
||||||
sess->p90(OXI_Plethysomogram);
|
sess->p90(OXI_Plethysomogram);
|
||||||
sess->setMin(OXI_Plethysomogram,ev_plethy->min());
|
sess->setMin(OXI_Plethysomogram,ev_plethy->min());
|
||||||
sess->setMax(OXI_Plethysomogram,ev_plethy->max());
|
sess->setMax(OXI_Plethysomogram,ev_plethy->max());
|
||||||
|
|
||||||
sess->setFirst(OXI_Plethysomogram,ev_plethy->first());
|
sess->setFirst(OXI_Plethysomogram,ev_plethy->first());
|
||||||
sess->setLast(OXI_Plethysomogram,ev_plethy->last());
|
sess->setLast(OXI_Plethysomogram,ev_plethy->last());
|
||||||
|
|
||||||
@ -305,8 +324,6 @@ void Oximetry::on_RunButton_toggled(bool checked)
|
|||||||
mach->AddSession(sess,profile);
|
mach->AddSession(sess,profile);
|
||||||
mach->Save();
|
mach->Save();
|
||||||
|
|
||||||
|
|
||||||
session->eventlist.clear();
|
|
||||||
ev_plethy=new EventList(OXI_Plethysomogram,EVL_Waveform,1,0,0,0,1000.0/50.0);
|
ev_plethy=new EventList(OXI_Plethysomogram,EVL_Waveform,1,0,0,0,1000.0/50.0);
|
||||||
session->eventlist[OXI_Plethysomogram].push_back(ev_plethy);
|
session->eventlist[OXI_Plethysomogram].push_back(ev_plethy);
|
||||||
|
|
||||||
@ -315,8 +332,21 @@ void Oximetry::on_RunButton_toggled(bool checked)
|
|||||||
|
|
||||||
ev_spo2=new EventList(OXI_SPO2,EVL_Event,1);
|
ev_spo2=new EventList(OXI_SPO2,EVL_Event,1);
|
||||||
session->eventlist[OXI_SPO2].push_back(ev_spo2);
|
session->eventlist[OXI_SPO2].push_back(ev_spo2);
|
||||||
|
|
||||||
|
session->setCount(OXI_Plethysomogram,0);
|
||||||
|
session->setCount(OXI_Pulse,0);
|
||||||
|
session->setCount(OXI_SPO2,0);
|
||||||
|
|
||||||
|
//m_shared->ResetBounds();
|
||||||
|
//m_shared->updateScale();
|
||||||
|
//m_shared->updateGL();
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
|
CONTROL->setVisible(true);
|
||||||
|
GraphView->updateScale();
|
||||||
|
//CONTROL->ResetBounds();
|
||||||
|
GraphView->updateGL();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -329,10 +359,11 @@ void Oximetry::UpdatePlethy(qint8 d)
|
|||||||
ev_plethy->getData().push_back(d);
|
ev_plethy->getData().push_back(d);
|
||||||
if (d<ev_plethy->min()) ev_plethy->setMin(d);
|
if (d<ev_plethy->min()) ev_plethy->setMin(d);
|
||||||
if (d>ev_plethy->max()) ev_plethy->setMax(d);
|
if (d>ev_plethy->max()) ev_plethy->setMax(d);
|
||||||
ev_plethy->setCount(ev_plethy->count()+1);
|
int i=ev_plethy->count()+1;
|
||||||
|
ev_plethy->setCount(i);
|
||||||
|
session->setCount(OXI_Plethysomogram,i); // update the cache
|
||||||
//ev_plethy->AddEvent(lasttime,d);
|
//ev_plethy->AddEvent(lasttime,d);
|
||||||
lasttime+=20; // 50 samples per second
|
lasttime+=20; // 50 samples per second
|
||||||
|
|
||||||
PLETHY->SetMinY(ev_plethy->min());
|
PLETHY->SetMinY(ev_plethy->min());
|
||||||
PLETHY->SetMaxY(ev_plethy->max());
|
PLETHY->SetMaxY(ev_plethy->max());
|
||||||
PULSE->SetMinY(ev_pulse->min());
|
PULSE->SetMinY(ev_pulse->min());
|
||||||
@ -360,6 +391,8 @@ bool Oximetry::UpdatePulse(qint8 pul)
|
|||||||
if (lastpulse!=pul)
|
if (lastpulse!=pul)
|
||||||
{
|
{
|
||||||
ev_pulse->AddEvent(lasttime,pul);
|
ev_pulse->AddEvent(lasttime,pul);
|
||||||
|
session->setCount(OXI_Pulse,ev_pulse->count()); // update the cache
|
||||||
|
|
||||||
ret=true;
|
ret=true;
|
||||||
//qDebug() << "Pulse=" << int(bytes[0]);
|
//qDebug() << "Pulse=" << int(bytes[0]);
|
||||||
}
|
}
|
||||||
@ -373,6 +406,7 @@ bool Oximetry::UpdateSPO2(qint8 sp)
|
|||||||
if (lastspo2!=sp)
|
if (lastspo2!=sp)
|
||||||
{
|
{
|
||||||
ev_spo2->AddEvent(lasttime,sp);
|
ev_spo2->AddEvent(lasttime,sp);
|
||||||
|
session->setCount(OXI_SPO2,ev_spo2->count()); // update the cache
|
||||||
ret=true;
|
ret=true;
|
||||||
//qDebug() << "SpO2=" << int(bytes[1]);
|
//qDebug() << "SpO2=" << int(bytes[1]);
|
||||||
}
|
}
|
||||||
@ -403,11 +437,16 @@ void Oximetry::onReadyRead()
|
|||||||
i+=2;
|
i+=2;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
PLETHY->updateGL();
|
|
||||||
|
if ((ev_plethy->count()==1) || (ev_pulse->count()==1) || (ev_spo2->count()==1)) {
|
||||||
|
GraphView->updateScale();
|
||||||
|
}
|
||||||
|
GraphView->updateGL(); // damn...
|
||||||
|
/*PLETHY->updateGL();
|
||||||
if (redraw_pulse)
|
if (redraw_pulse)
|
||||||
PULSE->updateGL();
|
PULSE->updateGL();
|
||||||
if (redraw_spo2)
|
if (redraw_spo2)
|
||||||
SPO2->updateGL();
|
SPO2->updateGL(); */
|
||||||
|
|
||||||
}
|
}
|
||||||
void Oximetry::onDsrChanged(bool status) // Doesn't work for CMS50's
|
void Oximetry::onDsrChanged(bool status) // Doesn't work for CMS50's
|
||||||
|
19
oximetry.h
19
oximetry.h
@ -17,8 +17,9 @@
|
|||||||
#include "SleepLib/day.h"
|
#include "SleepLib/day.h"
|
||||||
#include "SleepLib/session.h"
|
#include "SleepLib/session.h"
|
||||||
|
|
||||||
#include "Graphs/graphwindow.h"
|
//#include "Graphs/graphwindow.h"
|
||||||
#include "Graphs/gLineChart.h"
|
#include "Graphs/gLineChart.h"
|
||||||
|
#include "Graphs/gFooBar.h"
|
||||||
|
|
||||||
namespace Ui {
|
namespace Ui {
|
||||||
class Oximetry;
|
class Oximetry;
|
||||||
@ -32,10 +33,9 @@ class Oximetry : public QWidget
|
|||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
|
|
||||||
public:
|
public:
|
||||||
explicit Oximetry(QWidget *parent,QGLWidget * shared=NULL);
|
explicit Oximetry(QWidget *parent,gGraphView * shared=NULL);
|
||||||
~Oximetry();
|
~Oximetry();
|
||||||
|
|
||||||
void AddGraph(gGraphWindow *w) { Graphs.push_back(w); }
|
|
||||||
void RedrawGraphs();
|
void RedrawGraphs();
|
||||||
|
|
||||||
private slots:
|
private slots:
|
||||||
@ -55,11 +55,14 @@ private:
|
|||||||
|
|
||||||
Ui::Oximetry *ui;
|
Ui::Oximetry *ui;
|
||||||
Profile *profile;
|
Profile *profile;
|
||||||
QVBoxLayout *splitter;
|
|
||||||
gLineChart *pulse,*spo2,*plethy;
|
|
||||||
gGraphWindow *PULSE,*SPO2,*PLETHY;
|
|
||||||
|
|
||||||
QVector<gGraphWindow *> Graphs;
|
gGraphView *GraphView;
|
||||||
|
MyScrollBar *scrollbar;
|
||||||
|
QHBoxLayout *layout;
|
||||||
|
|
||||||
|
gLineChart *pulse,*spo2,*plethy;
|
||||||
|
gGraph *PULSE,*SPO2,*PLETHY,*CONTROL;
|
||||||
|
|
||||||
QVector<gLineChart *> Data;
|
QVector<gLineChart *> Data;
|
||||||
|
|
||||||
QextSerialPort *port;
|
QextSerialPort *port;
|
||||||
@ -74,6 +77,8 @@ private:
|
|||||||
EventList * ev_pulse;
|
EventList * ev_pulse;
|
||||||
EventList * ev_spo2;
|
EventList * ev_spo2;
|
||||||
EventList * ev_plethy;
|
EventList * ev_plethy;
|
||||||
|
Layer * foobar;
|
||||||
|
gGraphView * m_shared;
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // OXIMETRY_H
|
#endif // OXIMETRY_H
|
||||||
|
193
oximetry.ui
193
oximetry.ui
@ -6,7 +6,7 @@
|
|||||||
<rect>
|
<rect>
|
||||||
<x>0</x>
|
<x>0</x>
|
||||||
<y>0</y>
|
<y>0</y>
|
||||||
<width>512</width>
|
<width>554</width>
|
||||||
<height>361</height>
|
<height>361</height>
|
||||||
</rect>
|
</rect>
|
||||||
</property>
|
</property>
|
||||||
@ -21,113 +21,96 @@
|
|||||||
<number>0</number>
|
<number>0</number>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
<item>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_4">
|
<widget class="QWidget" name="graphArea" native="true">
|
||||||
<property name="spacing">
|
<property name="sizePolicy">
|
||||||
<number>2</number>
|
<sizepolicy hsizetype="Expanding" vsizetype="Expanding">
|
||||||
|
<horstretch>0</horstretch>
|
||||||
|
<verstretch>0</verstretch>
|
||||||
|
</sizepolicy>
|
||||||
</property>
|
</property>
|
||||||
<item>
|
</widget>
|
||||||
<widget class="QScrollArea" name="scrollArea">
|
</item>
|
||||||
<property name="widgetResizable">
|
<item>
|
||||||
<bool>true</bool>
|
<widget class="QFrame" name="frame">
|
||||||
</property>
|
<property name="minimumSize">
|
||||||
<widget class="QWidget" name="scrollAreaWidgetContents">
|
<size>
|
||||||
<property name="geometry">
|
<width>0</width>
|
||||||
<rect>
|
<height>45</height>
|
||||||
<x>0</x>
|
</size>
|
||||||
<y>0</y>
|
</property>
|
||||||
<width>508</width>
|
<property name="maximumSize">
|
||||||
<height>303</height>
|
<size>
|
||||||
</rect>
|
<width>16777215</width>
|
||||||
|
<height>45</height>
|
||||||
|
</size>
|
||||||
|
</property>
|
||||||
|
<property name="frameShape">
|
||||||
|
<enum>QFrame::StyledPanel</enum>
|
||||||
|
</property>
|
||||||
|
<property name="frameShadow">
|
||||||
|
<enum>QFrame::Raised</enum>
|
||||||
|
</property>
|
||||||
|
<layout class="QHBoxLayout" name="horizontalLayout">
|
||||||
|
<item>
|
||||||
|
<widget class="QLabel" name="label">
|
||||||
|
<property name="text">
|
||||||
|
<string>Serial Port</string>
|
||||||
</property>
|
</property>
|
||||||
<layout class="QVBoxLayout" name="verticalLayout_3">
|
|
||||||
<property name="spacing">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<property name="margin">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
<item>
|
|
||||||
<layout class="QVBoxLayout" name="graphLayout">
|
|
||||||
<property name="spacing">
|
|
||||||
<number>0</number>
|
|
||||||
</property>
|
|
||||||
</layout>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
</widget>
|
||||||
</widget>
|
</item>
|
||||||
</item>
|
<item>
|
||||||
<item>
|
<widget class="QComboBox" name="SerialPortsCombo">
|
||||||
<widget class="QFrame" name="frame">
|
<property name="minimumSize">
|
||||||
<property name="frameShape">
|
<size>
|
||||||
<enum>QFrame::StyledPanel</enum>
|
<width>120</width>
|
||||||
</property>
|
<height>0</height>
|
||||||
<property name="frameShadow">
|
</size>
|
||||||
<enum>QFrame::Raised</enum>
|
</property>
|
||||||
</property>
|
</widget>
|
||||||
<layout class="QHBoxLayout" name="horizontalLayout">
|
</item>
|
||||||
<item>
|
<item>
|
||||||
<widget class="QLabel" name="label">
|
<widget class="QToolButton" name="RefreshPortsButton">
|
||||||
<property name="text">
|
<property name="text">
|
||||||
<string>Serial Port</string>
|
<string/>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
<property name="icon">
|
||||||
</item>
|
<iconset resource="Resources.qrc">
|
||||||
<item>
|
<normaloff>:/icons/refresh.png</normaloff>:/icons/refresh.png</iconset>
|
||||||
<widget class="QComboBox" name="SerialPortsCombo">
|
</property>
|
||||||
<property name="minimumSize">
|
</widget>
|
||||||
<size>
|
</item>
|
||||||
<width>120</width>
|
<item>
|
||||||
<height>0</height>
|
<widget class="QPushButton" name="RunButton">
|
||||||
</size>
|
<property name="text">
|
||||||
</property>
|
<string>&Start</string>
|
||||||
</widget>
|
</property>
|
||||||
</item>
|
<property name="checkable">
|
||||||
<item>
|
<bool>true</bool>
|
||||||
<widget class="QToolButton" name="RefreshPortsButton">
|
</property>
|
||||||
<property name="text">
|
</widget>
|
||||||
<string/>
|
</item>
|
||||||
</property>
|
<item>
|
||||||
<property name="icon">
|
<spacer name="horizontalSpacer">
|
||||||
<iconset resource="Resources.qrc">
|
<property name="orientation">
|
||||||
<normaloff>:/icons/refresh.png</normaloff>:/icons/refresh.png</iconset>
|
<enum>Qt::Horizontal</enum>
|
||||||
</property>
|
</property>
|
||||||
</widget>
|
<property name="sizeHint" stdset="0">
|
||||||
</item>
|
<size>
|
||||||
<item>
|
<width>59</width>
|
||||||
<widget class="QPushButton" name="RunButton">
|
<height>20</height>
|
||||||
<property name="text">
|
</size>
|
||||||
<string>&Start</string>
|
</property>
|
||||||
</property>
|
</spacer>
|
||||||
<property name="checkable">
|
</item>
|
||||||
<bool>true</bool>
|
<item>
|
||||||
</property>
|
<widget class="QPushButton" name="ImportButton">
|
||||||
</widget>
|
<property name="text">
|
||||||
</item>
|
<string>&Import from Device</string>
|
||||||
<item>
|
</property>
|
||||||
<spacer name="horizontalSpacer">
|
</widget>
|
||||||
<property name="orientation">
|
</item>
|
||||||
<enum>Qt::Horizontal</enum>
|
</layout>
|
||||||
</property>
|
</widget>
|
||||||
<property name="sizeHint" stdset="0">
|
|
||||||
<size>
|
|
||||||
<width>40</width>
|
|
||||||
<height>20</height>
|
|
||||||
</size>
|
|
||||||
</property>
|
|
||||||
</spacer>
|
|
||||||
</item>
|
|
||||||
<item>
|
|
||||||
<widget class="QPushButton" name="ImportButton">
|
|
||||||
<property name="text">
|
|
||||||
<string>&Import from Device</string>
|
|
||||||
</property>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</widget>
|
|
||||||
</item>
|
|
||||||
</layout>
|
|
||||||
</item>
|
</item>
|
||||||
</layout>
|
</layout>
|
||||||
</widget>
|
</widget>
|
||||||
|
Loading…
Reference in New Issue
Block a user