From 2cbe6f49c2395b02adc68a7bbff3a4167baaeac4 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Fri, 26 Aug 2011 01:58:52 +1000 Subject: [PATCH] Fixed PB/CSR Waveform Overlay --- Graphs/gFlagsLine.cpp | 18 +++++++++--------- Graphs/gFooBar.cpp | 6 ++++-- Graphs/gGraphView.cpp | 6 ++++-- Graphs/gLineOverlay.cpp | 18 +++++++++++------- Graphs/gYAxis.cpp | 20 +------------------- daily.cpp | 2 +- 6 files changed, 30 insertions(+), 40 deletions(-) diff --git a/Graphs/gFlagsLine.cpp b/Graphs/gFlagsLine.cpp index 31292cab..4c912cc8 100644 --- a/Graphs/gFlagsLine.cpp +++ b/Graphs/gFlagsLine.cpp @@ -62,8 +62,8 @@ void gFlagsGroup::paint(gGraph &w, int left, int top, int width, int height) //if (evil_intel_graphics_card) qo=1; // Draw the bars with filled quads - w.qglColor(*barcol); glBegin(GL_QUADS); + w.qglColor(*barcol); glVertex2f(left, linetop); glVertex2f(left, linetop+barh); glVertex2f(left+width-1, linetop+barh); @@ -76,13 +76,13 @@ void gFlagsGroup::paint(gGraph &w, int left, int top, int width, int height) } // Draw the outer rectangle outline - glColor3f (0.0F, 0.0F, 0.0F); - glLineWidth (1); - glBegin (GL_LINE_LOOP); - glVertex2f (left-1, top); - glVertex2f (left-1, top+height); - glVertex2f (left+width, top+height); - glVertex2f (left+width, top); + glLineWidth(1); + glBegin(GL_LINE_LOOP); + w.qglColor(Qt::black); + glVertex2f(left-1, top); + glVertex2f(left-1, top+height); + glVertex2f(left+width, top+height); + glVertex2f(left+width, top); glEnd (); } @@ -128,7 +128,7 @@ void gFlagsLine::paint(gGraph & w,int left, int top, int width, int height) // Draw text label float x,y; GetTextExtent(m_label,x,y); - w.qglColor(Qt::black); + //w.qglColor(Qt::black); //w.renderText(start_px-x-10,(scry-line_top)-(line_h/2)+(y/2),m_label); //DrawText(w,m_label); w.renderText(m_label,left-x-10,top+(height/2)+(y/2)); diff --git a/Graphs/gFooBar.cpp b/Graphs/gFooBar.cpp index 4de86fa5..b22199a1 100644 --- a/Graphs/gFooBar.cpp +++ b/Graphs/gFooBar.cpp @@ -31,10 +31,10 @@ void gShadowArea::paint(gGraph & w,int left, int top, int width, int height) double px=((1/rmx)*(w.min_x-w.rmin_x))*width; double py=((1/rmx)*(w.max_x-w.rmin_x))*width; - glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA); glBegin(GL_QUADS); + glEnable(GL_BLEND); w.qglColor(m_shadow_color); glVertex2f(start_px, top); @@ -46,8 +46,10 @@ void gShadowArea::paint(gGraph & w,int left, int top, int width, int height) glVertex2f(start_px+py, top+height); glVertex2f(end_px, top+height); glVertex2f(end_px, top); - glEnd(); glDisable(GL_BLEND); + glEnd(); + + //glFlush(); } gFooBar::gFooBar(int offset,QColor handle_color,QColor line_color) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 8336ab19..a5a6e0c6 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -238,6 +238,8 @@ void gGraph::renderText(QString text, int x,int y, float angle, QColor color, QF painter->translate(-x,-y); } painter->beginNativePainting(); + glDisable(GL_TEXTURE_2D); + glDisable(GL_DEPTH_BUFFER); } @@ -307,17 +309,17 @@ void gGraph::paint(int originX, int originY, int width, int height) } if (m_selection.width()>0 && m_selecting_area) { - glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); glBegin(GL_QUADS); + glEnable(GL_BLEND); glColor4ub(128,128,128,128); glVertex2i(originX+m_selection.x(),originY+top); glVertex2i(originX+m_selection.x()+m_selection.width(),originY+top); glColor4ub(128,128,255,128); glVertex2i(originX+m_selection.x()+m_selection.width(),originY+height-top-bottom); glVertex2i(originX+m_selection.x(),originY+height-top-bottom); - glEnd(); glDisable(GL_BLEND); + glEnd(); } } diff --git a/Graphs/gLineOverlay.cpp b/Graphs/gLineOverlay.cpp index 9d5fc176..19e297a6 100644 --- a/Graphs/gLineOverlay.cpp +++ b/Graphs/gLineOverlay.cpp @@ -57,6 +57,7 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh bool verts_exceeded=false; QHash >::iterator cei; + for (QVector::iterator s=m_day->begin();s!=m_day->end(); s++) { cei=(*s)->eventlist.find(m_code); if (cei==(*s)->eventlist.end()) continue; @@ -80,16 +81,19 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh x1=double(width)/double(xx)*double(X-w.min_x)+left; if (m_flt==FT_Span) { //x2=w.x2p(Y); - x2=double(width)/double(xx)*double(X-w.min_x)+left; + x2=double(width)/double(xx)*double(Y-w.min_x)+left; + if (x2width+left) x1=width+left; //double w1=x2-x1; quadarray[quadcnt++]=x1; quadarray[quadcnt++]=start_py; - quadarray[quadcnt++]=x1; - quadarray[quadcnt++]=start_py+height; - quadarray[quadcnt++]=x2; - quadarray[quadcnt++]=start_py+height; quadarray[quadcnt++]=x2; quadarray[quadcnt++]=start_py; + quadarray[quadcnt++]=x2; + quadarray[quadcnt++]=start_py+height; + quadarray[quadcnt++]=x1; + quadarray[quadcnt++]=start_py+height; + qDebug()<< x1 << x2 << start_py << height; if (quadcnt>=maxverts) { verts_exceeded=true; break; } } else if (m_flt==FT_Dot) { //if (pref["AlwaysShowOverlayBars"].toBool()) { @@ -143,6 +147,7 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh } bool antialias=pref["UseAntiAliasing"].toBool(); + glEnableClientState(GL_VERTEX_ARRAY); if (antialias) { glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); //_MINUS_SRC_ALPHA); @@ -151,7 +156,6 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh glLineWidth (1.5); } else glLineWidth (1); - glEnableClientState(GL_VERTEX_ARRAY); w.qglColor(m_flag_color); if (quadcnt>0) { glVertexPointer(2, GL_SHORT, 0, quadarray); @@ -166,12 +170,12 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh glVertexPointer(2, GL_SHORT, 0, pointarray); glDrawArrays(GL_POINTS, 0, pointcnt>>1); } - glDisableClientState(GL_VERTEX_ARRAY); if (antialias) { glDisable(GL_LINE_SMOOTH); glDisable(GL_BLEND); } + glDisableClientState(GL_VERTEX_ARRAY); //glDisable(GL_SCISSOR_TEST); } diff --git a/Graphs/gYAxis.cpp b/Graphs/gYAxis.cpp index 683675ed..1f97be97 100644 --- a/Graphs/gYAxis.cpp +++ b/Graphs/gYAxis.cpp @@ -302,12 +302,6 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height) vertarray[vertcnt++]=left+width; vertarray[vertcnt++]=h; - /*if (m_show_major_lines && (i > miny)) { - majorvertarray[majorvertcnt++]=start_px; - majorvertarray[majorvertcnt++]=h; - majorvertarray[majorvertcnt++]=start_px+width; - majorvertarray[majorvertcnt++]=h; - } */ double z=(min_ytick/4)*ymult; double g=h; for (int i=0;i<3;i++) { @@ -321,12 +315,6 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height) qWarning() << "vertarray bounds exceeded in gYAxis for " << w.title() << "graph" << "MinY =" <AddLayer(new gXGrid()); FRW->AddLayer(l); FRW->AddLayer(new gYAxis(),LayerLeft,gYAxis::Margin); FRW->AddLayer(new gXAxis(),LayerBottom,0,20); - FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_CSR,QColor("light green"),"CSR",FT_Span))); FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_Hypopnea,QColor("blue"),"H"))); FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_PressurePulse,QColor("red"),"PR",FT_Dot))); //FRW->AddLayer(AddCPAP(new gLineOverlayBar(CPAP_Pressure,QColor("white"),"P",FT_Dot)));