From 076589cb3b9bd15ab9b75725b23eff7c4413eb43 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Wed, 31 Aug 2011 03:22:54 +1000 Subject: [PATCH] Code cleanup - removed old graphing engine files, added new GLbuffer class for multithread prep --- Graphs/gBarChart.cpp | 2 +- Graphs/gBarChart.h | 2 +- Graphs/gFlagsLine.cpp | 43 +- Graphs/gFlagsLine.h | 2 + Graphs/gGraphView.cpp | 157 +++++- Graphs/gGraphView.h | 48 +- Graphs/gLineChart.cpp | 94 +--- Graphs/gLineChart.h | 1 + Graphs/gLineOverlay.cpp | 88 ++-- Graphs/gLineOverlay.h | 2 + Graphs/gSessionTime.cpp | 4 +- Graphs/gSessionTime.h | 6 +- Graphs/gSplitter.cpp | 83 ---- Graphs/gSplitter.h | 30 -- Graphs/gStatsLine.cpp | 32 +- Graphs/gStatsLine.h | 2 +- Graphs/gTitle.cpp | 30 -- Graphs/gTitle.h | 26 - Graphs/gXAxis.cpp | 37 +- Graphs/gXAxis.h | 1 + Graphs/gYAxis.cpp | 89 ++-- Graphs/gYAxis.h | 5 +- Graphs/glcommon.cpp | 150 +----- Graphs/glcommon.h | 21 +- Graphs/graphlayer.cpp | 137 ------ Graphs/graphlayer.h | 68 --- Graphs/graphwindow.cpp | 1010 --------------------------------------- Graphs/graphwindow.h | 171 ------- SleepLib/event.h | 7 +- SleepyHeadQT.pro | 8 - daily.cpp | 15 +- daily.h | 2 +- oximetry.cpp | 15 +- oximetry.h | 2 +- 34 files changed, 362 insertions(+), 2028 deletions(-) delete mode 100644 Graphs/gSplitter.cpp delete mode 100644 Graphs/gSplitter.h delete mode 100644 Graphs/gTitle.cpp delete mode 100644 Graphs/gTitle.h delete mode 100644 Graphs/graphlayer.cpp delete mode 100644 Graphs/graphlayer.h delete mode 100644 Graphs/graphwindow.cpp delete mode 100644 Graphs/graphwindow.h diff --git a/Graphs/gBarChart.cpp b/Graphs/gBarChart.cpp index d0f1d6e1..0bf4e61d 100644 --- a/Graphs/gBarChart.cpp +++ b/Graphs/gBarChart.cpp @@ -21,7 +21,7 @@ gBarChart::~gBarChart() delete Xaxis; } -void gBarChart::paint(gGraphWindow & w,int left, int top, int width, int height) +void gBarChart::paint(gGraph & w,int left, int top, int width, int height) { if (!m_visible) return; // if (!data) return; diff --git a/Graphs/gBarChart.h b/Graphs/gBarChart.h index 762f8dba..6931cfc3 100644 --- a/Graphs/gBarChart.h +++ b/Graphs/gBarChart.h @@ -16,7 +16,7 @@ class gBarChart:public Layer gBarChart(ChannelID code=EmptyChannel,QColor col=QColor("blue"),Qt::Orientation o=Qt::Horizontal); virtual ~gBarChart(); - virtual void paint(gGraphWindow & w,int left, int top, int width, int height); + virtual void paint(gGraph & w,int left, int top, int width, int height); protected: Qt::Orientation m_orientation; diff --git a/Graphs/gFlagsLine.cpp b/Graphs/gFlagsLine.cpp index 1bba67a6..80d43fc9 100644 --- a/Graphs/gFlagsLine.cpp +++ b/Graphs/gFlagsLine.cpp @@ -91,9 +91,15 @@ void gFlagsGroup::paint(gGraph &w, int left, int top, int width, int height) gFlagsLine::gFlagsLine(ChannelID code,QColor flag_color,QString label,bool always_visible,FlagType flt) :Layer(code),m_label(label),m_always_visible(always_visible),m_flt(flt),m_flag_color(flag_color) { + quads=new GLBuffer(flag_color,2048,GL_QUADS); + lines=new GLBuffer(flag_color,2048,GL_LINES); + quads->setAntiAlias(true); + lines->setAntiAlias(true); } gFlagsLine::~gFlagsLine() { + delete lines; + delete quads; } void gFlagsLine::paint(gGraph & w,int left, int top, int width, int height) { @@ -116,21 +122,10 @@ void gFlagsLine::paint(gGraph & w,int left, int top, int width, int height) double xmult=width/xx; - qint32 vertcnt=0; - GLshort * vertarray=vertex_array[0]; - qint32 quadcnt=0; - GLshort * quadarray=vertex_array[1]; - if (!vertarray || !quadarray) { - qWarning() << "vertarray/quadarray==NULL"; - return; - } // Draw text label float x,y; GetTextExtent(m_label,x,y); - //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)); float x1,x2; @@ -150,23 +145,14 @@ void gFlagsLine::paint(gGraph & w,int left, int top, int width, int height) if (X > maxx) break; x1=(X - minx) * xmult + left; if (m_flt==FT_Bar) { - vertarray[vertcnt++]=x1; - vertarray[vertcnt++]=bartop; - vertarray[vertcnt++]=x1; - vertarray[vertcnt++]=bottom; - if (vertcnt>maxverts) { verts_exceeded=true; break; } + lines->add(x1,bartop,x1,bottom); + if (lines->full()) { verts_exceeded=true; break; } } else if (m_flt==FT_Span) { x2=(Y-minx)*xmult+left; //w1=x2-x1; - quadarray[quadcnt++]=x1; - quadarray[quadcnt++]=bartop; - quadarray[quadcnt++]=x1; - quadarray[quadcnt++]=bottom; - quadarray[quadcnt++]=x2; - quadarray[quadcnt++]=bottom; - quadarray[quadcnt++]=x2; - quadarray[quadcnt++]=bartop; - if (quadcnt>maxverts) { verts_exceeded=true; break; } + quads->add(x1,bartop,x1,bottom); + quads->add(x2,bottom,x2,bartop); + if (quads->full()) { verts_exceeded=true; break; } } } } @@ -176,7 +162,10 @@ void gFlagsLine::paint(gGraph & w,int left, int top, int width, int height) // glScissor(left,top,width,height); //glEnable(GL_SCISSOR_TEST); - glEnableClientState(GL_VERTEX_ARRAY); + + quads->draw(); + lines->draw(); + /*glEnableClientState(GL_VERTEX_ARRAY); bool antialias=pref["UseAntiAliasing"].toBool(); if (antialias) { @@ -201,6 +190,6 @@ void gFlagsLine::paint(gGraph & w,int left, int top, int width, int height) glDisable(GL_BLEND); } glDisableClientState(GL_VERTEX_ARRAY); - +*/ //glDisable(GL_SCISSOR_TEST); } diff --git a/Graphs/gFlagsLine.h b/Graphs/gFlagsLine.h index ee414dc4..e5e37c56 100644 --- a/Graphs/gFlagsLine.h +++ b/Graphs/gFlagsLine.h @@ -31,6 +31,8 @@ class gFlagsLine:public Layer int total_lines,line_num; FlagType m_flt; QColor m_flag_color; + GLBuffer *quads, *lines; + }; class gFlagsGroup:public LayerGroup diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 0c7390f4..ee4a0e7c 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -1,5 +1,132 @@ #include +#include #include "gGraphView.h" +#include "SleepLib/profiles.h" + +bool _graph_init=false; + +QFont * defaultfont=NULL; +QFont * mediumfont=NULL; +QFont * bigfont=NULL; + +bool evil_intel_graphics_chip=false; + +// Must be called from a thread inside the application. +void InitGraphs() +{ + if (!_graph_init) { + defaultfont=new QFont("Sans Serif",10); + mediumfont=new QFont("Sans Serif",11); + bigfont=new QFont("Serif",35); + + defaultfont->setStyleHint(QFont::SansSerif,QFont::OpenGLCompatible); + mediumfont->setStyleHint(QFont::SansSerif,QFont::OpenGLCompatible); + bigfont->setStyleHint(QFont::Serif ,QFont::OpenGLCompatible); + + _graph_init=true; + } +} +void DoneGraphs() +{ + if (_graph_init) { + delete defaultfont; + delete bigfont; + delete mediumfont; + _graph_init=false; + } +} + +void GetTextExtent(QString text, float & width, float & height, QFont *font) +{ + QFontMetrics fm(*font); + //QRect r=fm.tightBoundingRect(text); + width=fm.width(text); //fm.width(text); + height=fm.xHeight()+2; //fm.ascent(); +} + +GLBuffer::GLBuffer(QColor color,int max,int type) + :m_color(color), m_max(max), m_type(type) +{ + m_scissor=false; + buffer=new GLshort [max+8]; + m_cnt=0; + m_size=1; +} +GLBuffer::~GLBuffer() +{ + delete [] buffer; +} +void GLBuffer::add(GLshort s) +{ + if (m_cnt0) { + bool antialias=pref["UseAntiAliasing"].toBool() && m_antialias; + float size=m_size; + if (antialias) { + glEnable(GL_BLEND); + glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); + if (m_type==GL_LINES) { + glEnable(GL_LINE_SMOOTH); + glHint(GL_LINE_SMOOTH_HINT, GL_NICEST); + size+=0.5; + } + } + if (m_type==GL_LINES) { + glLineWidth(size); + } else if (m_type==GL_POINTS) { + glPointSize(size); + } + if (m_scissor) { + glScissor(s1,s2,s3,s4); + glEnable(GL_SCISSOR_TEST); + } + glEnableClientState(GL_VERTEX_ARRAY); + glVertexPointer(2, GL_SHORT, 0, buffer); + glColor4ub(m_color.red(),m_color.green(),m_color.blue(),m_color.alpha()); + glDrawArrays(m_type, 0, m_cnt >> 1); + glDisableClientState(GL_VERTEX_ARRAY); + //qDebug() << "I Drawed" << m_cnt << "vertices"; + m_cnt=0; + if (m_scissor) { + glDisable(GL_SCISSOR_TEST); + m_scissor=false; + } + if (antialias) { + if (m_type==GL_LINES) { + glDisable(GL_LINE_SMOOTH); + } + glDisable(GL_BLEND); + } + } +} Layer::Layer(ChannelID code) { @@ -178,7 +305,7 @@ bool gGraph::isEmpty() } return empty; } -void gGraph::invalidate() +/*void gGraph::invalidate() { // this may not be necessary, as scrollbar & resize issues a full redraw.. //m_lastbounds.setWidth(m_graphview->width()); @@ -213,7 +340,7 @@ void gGraph::repaint() m_graphview->updateGL(); } } - +*/ void gGraph::qglColor(QColor col) { m_graphview->qglColor(col); @@ -697,6 +824,10 @@ void gGraph::SetMaxY(EventDataType v) { max_y=v; } +void gGraph::DrawStaticText(QStaticText & text, short x, short y) +{ + m_graphview->DrawStaticText(text,x,y); +} // Sets a new Min & Max X clipping, refreshing the graph and all it's layers. void gGraph::SetXBounds(qint64 minx, qint64 maxx) @@ -781,6 +912,7 @@ void gGraphView::DrawTextQue() void gGraphView::AddTextQue(QString & text, short x, short y, float angle, QColor & color, QFont * font) { + text_mutex.lock(); if (m_textque_items>=textque_max) { DrawTextQue(); } @@ -792,6 +924,14 @@ void gGraphView::AddTextQue(QString & text, short x, short y, float angle, QColo q.color=color; q.font=font; m_textque_items++; + text_mutex.unlock(); +} +void gGraphView::DrawStaticText(QStaticText & text, short x, short y) +{ + // don't use this for multithread + QPainter painter(this); + painter.drawStaticText(x,y,text); + painter.end(); } void gGraphView::AddGraph(gGraph *g,short group) @@ -936,9 +1076,13 @@ void gGraphView::resizeGL(int w, int h) void gGraphView::paintGL() { + if (width()<=0) return; if (height()<=0) return; + QTime time; + time.start(); + glClearColor(255,255,255,255); //glClearDepth(1); glClear(GL_COLOR_BUFFER_BIT);// | GL_DEPTH_BUFFER_BIT); @@ -946,16 +1090,16 @@ void gGraphView::paintGL() //glEnable(GL_BLEND); //glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - glBegin(GL_QUADS); + /*glBegin(GL_QUADS); glColor4f(1.0,1.0,1.0,1.0); // Gradient start glVertex2f(0, height()); glVertex2f(0, 0); - glColor4f(0.7,0.7,1.0,1.0); // Gradient End + //glColor4f(0.9,0.9,0.9,1.0); // Gradient End glVertex2f(width(), 0); glVertex2f(width(), height()); - glEnd(); + glEnd();*/ float px=titleWidth-m_offsetX; float py=-m_offsetY; @@ -978,6 +1122,8 @@ void gGraphView::paintGL() m_graphs[i]->paint(px,py,width()-titleWidth,h); glColor4f(0,0,0,1); //if (i #include #include +#include #include #define MIN(a,b) (((a)<(b)) ? (a) : (b)); #define MAX(a,b) (((a)<(b)) ? (b) : (a)); +enum FlagType { FT_Bar, FT_Dot, FT_Span }; + + +void InitGraphs(); +void DoneGraphs(); + +extern QFont * defaultfont; +extern QFont * mediumfont; +extern QFont * bigfont; + +void GetTextExtent(QString text, float & width, float & height, QFont *font=defaultfont); class gGraphView; class gGraph; const int textque_max=512; +class GLBuffer +{ +public: + GLBuffer(QColor color,int max=2048,int type=GL_LINES); + ~GLBuffer(); + void add(GLshort s); + void add(GLshort x, GLshort y); + void add(GLshort x1, GLshort y1, GLshort x2, GLshort y2); + void scissor(GLshort x1, GLshort y1, GLshort x2, GLshort y2) { s1=x1; s2=y1; s3=x2; s4=y2; m_scissor=true; } + void draw(); + inline GLshort & operator [](int i) { return buffer[i]; } + void reset() { m_cnt=0; } + int max() { return m_max; } + int cnt() { return m_cnt; } + bool full() { return m_cnt>=m_max; } + void setSize(float f) { m_size=f; } + void setAntiAlias(bool b) { m_antialias=b; } +protected: + QColor m_color; + GLshort * buffer; + int m_type; // type (GL_LINES, GL_QUADS, etc) + int m_max; + int m_cnt; // cnt + float m_size; + int s1,s2,s3,s4; + bool m_scissor; + bool m_antialias; +}; struct TextQue { @@ -136,7 +176,7 @@ public: QString title() { return m_title; } - virtual void repaint(); // Repaint individual graph.. + //virtual void repaint(); // Repaint individual graph.. virtual void ResetBounds(); virtual void SetXBounds(qint64 minx, qint64 maxx); @@ -163,10 +203,10 @@ public: short group() { return m_group; } void setGroup(short group) { m_group=group; } void DrawTextQue(); - + void DrawStaticText(QStaticText & text, short x, short y); protected: virtual void paint(int originX, int originY, int width, int height); - void invalidate(); + //void invalidate(); virtual void wheelEvent(QWheelEvent * event); virtual void mouseMoveEvent(QMouseEvent * event); @@ -227,6 +267,7 @@ public: gGraph *m_selected_graph; void AddTextQue(QString & text, short x, short y, float angle, QColor & color, QFont * font); + void DrawStaticText(QStaticText & text, short x, short y); int horizTravel() { return m_horiz_travel; } void DrawTextQue(); @@ -236,6 +277,7 @@ public: void updateScrollBar(); void updateScale(); // update scale & Scrollbar void setEmptyText(QString s) { m_emptytext=s; } + QMutex text_mutex; protected: diff --git a/Graphs/gLineChart.cpp b/Graphs/gLineChart.cpp index 63c204f4..412beffb 100644 --- a/Graphs/gLineChart.cpp +++ b/Graphs/gLineChart.cpp @@ -16,9 +16,13 @@ gLineChart::gLineChart(ChannelID code,QColor col,bool square_plot, bool disable_ { m_line_color=col; m_report_empty=false; + lines=new GLBuffer(col,40000,GL_LINES); + lines->setAntiAlias(true); + } gLineChart::~gLineChart() { + delete lines; } @@ -123,13 +127,6 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height) width--; height-=2; - qint32 vertcnt=0; - GLshort * vertarray=vertex_array[0]; - if (vertarray==NULL){ - qWarning() << "VertArray==NULL"; - return; - } - int num_points=0; int visible_points=0; int total_points=0; @@ -324,12 +321,9 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height) // ay1=(m_drawlist[i-1].y()+m_drawlist[i].y()+m_drawlist[i+1].y())/3.0; ax1=m_drawlist[i].x(); ay1=m_drawlist[i].y(); - vertarray[vertcnt++]=xst+i; - vertarray[vertcnt++]=yst-ax1; - vertarray[vertcnt++]=xst+i; - vertarray[vertcnt++]=yst-ay1; + lines->add(xst+i,yst-ax1,xst+i,yst-ay1); - if (vertcnt>=maxverts) break; + if (lines->full()) break; } } else { // Zoomed in Waveform @@ -356,12 +350,9 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height) firstpx=false; continue; } - vertarray[vertcnt++]=lastpx; - vertarray[vertcnt++]=lastpy; - vertarray[vertcnt++]=px; - vertarray[vertcnt++]=py; + lines->add(lastpx,lastpy,px,py); - if (vertcnt>=maxverts) { + if (lines->full()) { done=true; break; } @@ -402,21 +393,15 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height) firstpx=false; } else { if (square_plot) { - vertarray[vertcnt++]=lastpx; - vertarray[vertcnt++]=lastpy; - vertarray[vertcnt++]=px; - vertarray[vertcnt++]=lastpy; - vertarray[vertcnt++]=px; - vertarray[vertcnt++]=lastpy; + lines->add(lastpx,lastpy,px,lastpy); + lines->add(px,lastpy); } else { - vertarray[vertcnt++]=lastpx; - vertarray[vertcnt++]=lastpy; + lines->add(lastpx,lastpy); } - vertarray[vertcnt++]=px; - vertarray[vertcnt++]=py; + lines->add(px,py); - if (vertcnt>=maxverts) { + if (lines->full()) { done=true; break; } @@ -445,57 +430,8 @@ void gLineChart::paint(gGraph & w,int left, int top, int width, int height) //DrawText(w,msg,left+(width/2.0)-(x/2.0),scry-w.GetBottomMargin()-height/2.0+y/2.0,0,Qt::gray,bigfont); } } else { - - /*QString b; - long j=vertcnt/2; - if (accel) j/=2; - b.sprintf("%i %i %i %li",visible_points,sam,num_points,j); - float x,y; - GetTextExtent(b,x,y); - DrawText(b,scrx-w.GetRightMargin()-x-15,scry-w.GetBottomMargin()-10); */ - - - // Crop to inside the margins. - int h1=top+height; - int h2=height; - if (h1<0) { - h2=h1+height; - h1=0; - } - glScissor(left,w.flipY(top+height+2),width+1,height+1); - glEnable(GL_SCISSOR_TEST); - - /*w.qglColor(Qt::black); - glBegin(GL_QUADS); - glVertex2i(0,0); - glVertex2i(2000,0); - glVertex2i(2000,1200); - glVertex2i(0,1200); - glEnd(); */ - glDisable(GL_DEPTH_TEST); - bool antialias=pref["UseAntiAliasing"].toBool(); - glDisable(GL_TEXTURE_2D); - if (antialias) { - glEnable(GL_BLEND); - glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); //SRC_ALPHA,GL_ONE_MINUS_SRC_ALPHA); - glEnable(GL_LINE_SMOOTH); - glHint(GL_LINE_SMOOTH_HINT, GL_NICEST); - glLineWidth (1.5); - - } else glLineWidth(1); - - glEnableClientState(GL_VERTEX_ARRAY); - glVertexPointer(2, GL_SHORT, 0, vertarray); - w.qglColor(m_line_color); - glDrawArrays(GL_LINES, 0, vertcnt>>1); - glDisableClientState(GL_VERTEX_ARRAY); - - if (antialias) { - glDisable(GL_LINE_SMOOTH); - glDisable(GL_BLEND); - } - glDisable(GL_SCISSOR_TEST); + lines->scissor(left,w.flipY(top+height+2),width+1,height+1); + lines->draw(); } - glFlush(); } diff --git a/Graphs/gLineChart.h b/Graphs/gLineChart.h index e302b087..f2a2591f 100644 --- a/Graphs/gLineChart.h +++ b/Graphs/gLineChart.h @@ -32,6 +32,7 @@ protected: bool m_square_plot; bool m_disable_accel; QColor m_line_color; + GLBuffer * lines; }; #endif // GLINECHART_H diff --git a/Graphs/gLineOverlay.cpp b/Graphs/gLineOverlay.cpp index 36f0e13c..58432599 100644 --- a/Graphs/gLineOverlay.cpp +++ b/Graphs/gLineOverlay.cpp @@ -8,13 +8,22 @@ #include "SleepLib/profiles.h" #include "gLineOverlay.h" -gLineOverlayBar::gLineOverlayBar(ChannelID code,QColor col,QString label,FlagType flt) -:Layer(code),m_label(label),m_flt(flt) +gLineOverlayBar::gLineOverlayBar(ChannelID code,QColor color,QString label,FlagType flt) +:Layer(code),m_flag_color(color),m_label(label),m_flt(flt) { - m_flag_color=col; + points=new GLBuffer(color,2048,GL_POINTS); + points->setSize(4); + quads=new GLBuffer(color,2048,GL_QUADS); + lines=new GLBuffer(color,2048,GL_LINES); + points->setAntiAlias(true); + quads->setAntiAlias(true); + lines->setAntiAlias(true); } gLineOverlayBar::~gLineOverlayBar() { + delete lines; + delete quads; + delete points; } void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int height) @@ -22,10 +31,7 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh if (!m_visible) return; if (!m_day) return; - //int start_px=w.GetLeftMargin(); int start_py=topp; - //int width=scrx-(w.GetLeftMargin()+w.GetRightMargin()); - //int height=scry-(w.GetTopMargin()+w.GetBottomMargin()); double xx=w.max_x-w.min_x; double yy=w.max_y-w.min_y; @@ -39,7 +45,7 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh // glScissor(left,topp,width,height); // glEnable(GL_SCISSOR_TEST); - qint32 vertcnt=0; + /*qint32 vertcnt=0; GLshort * vertarray=vertex_array[0]; qint32 pointcnt=0; GLshort * pointarray=vertex_array[1]; @@ -48,7 +54,7 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh if (!vertarray || !quadarray || !pointarray) { qWarning() << "VertArray/quadarray/pointarray==NULL"; return; - } + }*/ float bottom=start_py+height-25, top=start_py+25; @@ -85,30 +91,21 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh if (x2width+left) x1=width+left; //double w1=x2-x1; - quadarray[quadcnt++]=x1; - quadarray[quadcnt++]=start_py; - quadarray[quadcnt++]=x2; - quadarray[quadcnt++]=start_py; - quadarray[quadcnt++]=x2; - quadarray[quadcnt++]=start_py+height; - quadarray[quadcnt++]=x1; - quadarray[quadcnt++]=start_py+height; - if (quadcnt>=maxverts) { verts_exceeded=true; break; } + quads->add(x1,start_py,x2,start_py); + quads->add(x2,start_py+height,x1,start_py+height); + if (quads->full()) { verts_exceeded=true; break; } } else if (m_flt==FT_Dot) { //if (pref["AlwaysShowOverlayBars"].toBool()) { if (pref["AlwaysShowOverlayBars"].toBool() || (xx<3600000.0)) { // show the fat dots in the middle - pointarray[pointcnt++]=x1; - pointarray[pointcnt++]=double(height)/double(yy)*double(-20-w.min_y)+topp; - if (pointcnt>=maxverts) { verts_exceeded=true; break; } + points->add(x1,double(height)/double(yy)*double(-20-w.min_y)+topp); + if (points->full()) { verts_exceeded=true; break; } } else { // thin lines down the bottom - vertarray[vertcnt++]=x1; - vertarray[vertcnt++]=start_py+1; - vertarray[vertcnt++]=x1; - vertarray[vertcnt++]=start_py+1+12; - if (vertcnt>=maxverts) { verts_exceeded=true; break; } + lines->add(x1,start_py+1); + lines->add(x1,start_py+1+12); + if (lines->full()) { verts_exceeded=true; break; } } } else if (m_flt==FT_Bar) { @@ -116,25 +113,18 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh if (pref["AlwaysShowOverlayBars"].toBool() || (xx<3600000)) { z=top; - pointarray[pointcnt++]=x1; - pointarray[pointcnt++]=top; //z+2; - vertarray[vertcnt++]=x1; - vertarray[vertcnt++]=top; - vertarray[vertcnt++]=x1; - vertarray[vertcnt++]=bottom; - if (pointcnt>=maxverts) { verts_exceeded=true; break; } + points->add(x1,top); + lines->add(x1,top); + lines->add(x1,bottom); + if (points->full()) { verts_exceeded=true; break; } } else { - vertarray[vertcnt++]=x1; - vertarray[vertcnt++]=z; - vertarray[vertcnt++]=x1; - vertarray[vertcnt++]=z-12; + lines->add(x1,z); + lines->add(x1,z-12); } - if (vertcnt>=maxverts) { verts_exceeded=true; break; } + if (lines->full()) { verts_exceeded=true; break; } if (xx<(1800000)) { GetTextExtent(m_label,x,y); - //DrawText(w,m_label,x1-(x/2),scry-(start_py+height-30+y)); w.renderText(m_label,x1-(x/2),top-y+3); - //w.renderText(x1-(x/2),scry-(start_py+height-30+y),label); } } @@ -153,23 +143,11 @@ void gLineOverlayBar::paint(gGraph & w, int left, int topp, int width, int heigh glHint(GL_LINE_SMOOTH_HINT, GL_NICEST); glLineWidth (1.5); } else glLineWidth (1); - glEnableClientState(GL_VERTEX_ARRAY); - w.qglColor(m_flag_color); - if (quadcnt>0) { - glVertexPointer(2, GL_SHORT, 0, quadarray); - glDrawArrays(GL_QUADS, 0, quadcnt>>1); - } - if (vertcnt>0) { - glVertexPointer(2, GL_SHORT, 0, vertarray); - glDrawArrays(GL_LINES, 0, vertcnt>>1); - } - if (pointcnt>0) { - glPointSize(4); - glVertexPointer(2, GL_SHORT, 0, pointarray); - glDrawArrays(GL_POINTS, 0, pointcnt>>1); - } - glDisableClientState(GL_VERTEX_ARRAY); + quads->draw(); + lines->draw(); + //glPointSize(4); + points->draw(); if (antialias) { glDisable(GL_LINE_SMOOTH); diff --git a/Graphs/gLineOverlay.h b/Graphs/gLineOverlay.h index 2e23dfe5..1cd6880d 100644 --- a/Graphs/gLineOverlay.h +++ b/Graphs/gLineOverlay.h @@ -23,6 +23,8 @@ class gLineOverlayBar:public Layer QColor m_flag_color; QString m_label; FlagType m_flt; + + GLBuffer *points,*quads, *lines; }; #endif // GLINEOVERLAY_H diff --git a/Graphs/gSessionTime.cpp b/Graphs/gSessionTime.cpp index 21444079..2e9e9477 100644 --- a/Graphs/gSessionTime.cpp +++ b/Graphs/gSessionTime.cpp @@ -28,7 +28,7 @@ const QString & gTimeYAxis::Format(double v) gSessionTime::gSessionTime(ChannelID code,QColor col,Qt::Orientation o) -:gLayer(code),m_orientation(o) +:Layer(code),m_orientation(o) { color.clear(); color.push_back(col); @@ -40,7 +40,7 @@ gSessionTime::~gSessionTime() delete Xaxis; } -void gSessionTime::Plot(gGraphWindow & w,float scrx,float scry) +void gSessionTime::paint(gGraph & w,int left, int top, int width, int height) { if (!m_visible) return; /*if (!data) return; diff --git a/Graphs/gSessionTime.h b/Graphs/gSessionTime.h index 84c3084d..c2c095e3 100644 --- a/Graphs/gSessionTime.h +++ b/Graphs/gSessionTime.h @@ -7,7 +7,7 @@ #ifndef GSESSIONTIME_H #define GSESSIONTIME_H -#include "graphlayer.h" +#include "gGraphView.h" #include "gXAxis.h" #include "gYAxis.h" @@ -20,13 +20,13 @@ public: }; -class gSessionTime:public gLayer +class gSessionTime:public Layer { public: gSessionTime(ChannelID=EmptyChannel,QColor col=QColor("blue"),Qt::Orientation o=Qt::Horizontal); virtual ~gSessionTime(); - virtual void Plot(gGraphWindow & w,float scrx,float scry); + virtual void paint(gGraph & w,int left,int top, int width, int height); protected: Qt::Orientation m_orientation; diff --git a/Graphs/gSplitter.cpp b/Graphs/gSplitter.cpp deleted file mode 100644 index 77da9f18..00000000 --- a/Graphs/gSplitter.cpp +++ /dev/null @@ -1,83 +0,0 @@ -// This can die. - -#include "gSplitter.h" -#include "graphwindow.h" -#include -gSplitter::gSplitter(QWidget *parent) : - QSplitter(parent) -{ - z_timer=new QTimer(this); - - //timer=NULL; - // icnt=0; -} -gSplitter::gSplitter(Qt::Orientation orientation, QWidget *parent) : - QSplitter(orientation,parent) -{ - // icnt=0; - this->connect(this,SIGNAL(splitterMoved(int,int)),SLOT(mySplitterMoved(int,int))); - z_timer=new QTimer(this); -} -gSplitter::~gSplitter() -{ - delete z_timer; - this->disconnect(SLOT(mySplitterMoved(int,int))); - // timer->stop(); -} - -void gSplitter::mySplitterMoved (int pos, int index) -{ - if (z_timer->isActive()) z_timer->stop(); - z_pos=pos; - z_index=index; - //this->setUpdatesEnabled(true); - if (gGraphWindow *w=qobject_cast(widget(index-1))) { - int s=sizes().at(index-1); - //w->resizeGL(w->width(),pos); - //w->updateGL(); - //w->updateGL(); - //w->paintGL(); - } - if (gGraphWindow *w=qobject_cast(widget(index))) { - int s=sizes().at(index); - //w->resizeGL(w->width(),s); - //w->updateGL(); - //w->paintGL(); - } - qDebug() << ++icnt; - z_timer->singleShot(50,this,SLOT(doUpdateGraph())); - tm.start(); -} - -void gSplitter::doUpdateGraph() -{ - - if (tm.elapsed()<50) - return; - //this->setUpdatesEnabled(true); - - if (gGraphWindow *w=qobject_cast(widget(z_index-1))) { - //qDebug() << icnt << "Height" << w->height() << z_index << z_pos << w->Title(); - - int s=sizes().at(z_index-1); - - QSize n(w->width(),s); - QSize o(w->width(),s); - //QResizeEvent e(n,o); - //w->resizeEvent(&e); - //w->resizeGL(w->width(),s); - //w->paintGL(); - } - if (gGraphWindow *w=qobject_cast(widget(z_index))) { - qDebug() << icnt << "Height" << w->height() << z_index << z_pos << w->Title(); - - int s=sizes().at(z_index); - - w->resizeGL(w->width(),s); - w->paintGL(); - } - //timer->stop(); - icnt=0; - // QSplitter::resizeEvent(&event); - -} diff --git a/Graphs/gSplitter.h b/Graphs/gSplitter.h deleted file mode 100644 index d6ebcea6..00000000 --- a/Graphs/gSplitter.h +++ /dev/null @@ -1,30 +0,0 @@ -#ifndef GSPLITTER_H -#define GSPLITTER_H - -#include -#include -#include -#include - -class gSplitter : public QSplitter -{ - Q_OBJECT -public: - explicit gSplitter(QWidget *parent = 0); - explicit gSplitter(Qt::Orientation orientation, QWidget *parent = 0); - virtual ~gSplitter(); -signals: - -public slots: - void mySplitterMoved(int pos, int index); - void doUpdateGraph(); - -protected: - QTimer * z_timer; - int z_pos,z_index; - int icnt; - QTime tm; - -}; - -#endif // GSPLITTER_H diff --git a/Graphs/gStatsLine.cpp b/Graphs/gStatsLine.cpp index 4c3548f2..dd911a02 100644 --- a/Graphs/gStatsLine.cpp +++ b/Graphs/gStatsLine.cpp @@ -13,35 +13,27 @@ void gStatsLine::paint(gGraph & w, int left, int top, int width, int height) float x,y; m_text=m_label; - GetTextExtent(m_text,x,y); +// GetTextExtent(m_text,x,y); int z=(width+gYAxis::Margin)/5; int p=left-gYAxis::Margin; - top+=8+y; - w.renderText(m_text,p,top,0,m_textcolor); + top+=4; + w.DrawStaticText(st_label,p,top); + + //w.renderText(m_text,p,top,0,m_textcolor); p+=z; - m_text="Min="+QString::number(m_min,'f',2); - GetTextExtent(m_text,x,y); - w.renderText(m_text,p,top,0,m_textcolor); + w.DrawStaticText(st_min,p,top); p+=z; - m_text="Avg="+QString::number(m_avg,'f',2); - GetTextExtent(m_text,x,y); - w.renderText(m_text,p,top,0,m_textcolor); + w.DrawStaticText(st_avg,p,top); p+=z; - m_text="90%="+QString::number(m_p90,'f',2); - GetTextExtent(m_text,x,y); - w.renderText(m_text,p,top,0,m_textcolor); + w.DrawStaticText(st_p90,p,top); p+=z; - m_text="Max="+QString::number(m_max,'f',2); - GetTextExtent(m_text,x,y); - w.renderText(m_text,p,top,0,m_textcolor); - -// GetTextExtent(m_text,m_tx,m_ty); + w.DrawStaticText(st_max,p,top); } @@ -55,7 +47,11 @@ void gStatsLine::SetDay(Day *d) m_avg=d->wavg(m_code); m_p90=d->p90(m_code); - m_text.clear(); + st_label.setText(m_label); + st_min.setText("Min="+QString::number(m_min,'f',2)); + st_max.setText("Max="+QString::number(m_max,'f',2)); + st_avg.setText("Avg="+QString::number(m_avg,'f',2)); + st_p90.setText("90%="+QString::number(m_p90,'f',2)); // m_stext.setText(m_text); // m_empty=true; diff --git a/Graphs/gStatsLine.h b/Graphs/gStatsLine.h index d0eae345..7b28c5c8 100644 --- a/Graphs/gStatsLine.h +++ b/Graphs/gStatsLine.h @@ -19,7 +19,7 @@ protected: EventDataType m_min,m_max,m_avg,m_p90; QString m_label; QString m_text; - QStaticText m_stext; + QStaticText st_label,st_min,st_max,st_avg,st_p90; float m_tx,m_ty; }; diff --git a/Graphs/gTitle.cpp b/Graphs/gTitle.cpp deleted file mode 100644 index 578a3b7f..00000000 --- a/Graphs/gTitle.cpp +++ /dev/null @@ -1,30 +0,0 @@ -// This can die. titles are now handled by gGraphView. - -/* - gTitle (Graph Title) Implementation - Copyright (c)2011 Mark Watkins - License: GPL -*/ - -#include "gTitle.h" - -gTitle::gTitle(const QString & _title,QColor color,QFont font) -:gLayer(EmptyChannel),m_title(_title),m_color(color),m_font(font) -{ -} -gTitle::~gTitle() -{ -} -void gTitle::Plot(gGraphWindow & w,float scrx,float scry) -{ - if (!m_visible) return; - scrx=scrx; - - float width,height; - GetTextExtent(m_title,width,height); - int xp=(height/2)+17; - //if (m_alignment==wxALIGN_RIGHT) xp=scrx-4-height; - int j=scry/2-w.GetTopMargin(); - DrawText(w,m_title,xp,j,90.0,m_color,&m_font); -} - diff --git a/Graphs/gTitle.h b/Graphs/gTitle.h deleted file mode 100644 index 0499f779..00000000 --- a/Graphs/gTitle.h +++ /dev/null @@ -1,26 +0,0 @@ -/******************************************************************** - gTitle (Graph Title) Header - Copyright (c)2011 Mark Watkins - License: GPL -*********************************************************************/ - -#ifndef GTITLE_H -#define GTITLE_H - -#include "graphlayer.h" - -class gTitle:public gLayer -{ - public: - gTitle(const QString & _title,QColor color=QColor("black"),QFont font=QFont()); - virtual ~gTitle(); - virtual void Plot(gGraphWindow & w,float scrx,float scry); - static const int Margin=20; - - protected: - QString m_title; - QColor m_color; - QFont m_font; -}; - -#endif // GTITLE_H diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index 684d3b2f..ae2471a7 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -28,9 +28,12 @@ gXAxis::gXAxis(QColor col,bool fadeout) QTime t2=d.toUTC().time(); tz_offset=t2.secsTo(t1)/60L; tz_offset*=60000L; + + vertarray=new GLBuffer(m_line_color); } gXAxis::~gXAxis() { + delete vertarray; } void gXAxis::paint(gGraph & w,int left,int top, int width, int height) { @@ -118,12 +121,12 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) qint64 aligned_start=minx/step; aligned_start*=step; - qint32 vertcnt=0; - GLshort * vertarray=vertex_array[0]; + //qint32 vertcnt=0; + /*GLshort * vertarray=vertex_array[0]; if (vertarray==NULL) { qWarning() << "VertArray==NULL"; return; - } + } */ while (aligned_startadd(py,top); + vertarray->add(py,top+4); } w.qglColor(Qt::black); for (qint64 i=aligned_start;iadd(px,top); + vertarray->add(px,top+6); qint64 j=i+tz_offset; int ms=j % 1000; int m=(j/60000L) % 60L; @@ -173,27 +172,23 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) for (int j=1;j<10;j++) { py+=step_pixels; if (py>=left+width) break; - vertarray[vertcnt++]=py; - vertarray[vertcnt++]=top; - vertarray[vertcnt++]=py; - vertarray[vertcnt++]=top+4; - if (vertcnt>=maxverts) { - break; - } + vertarray->add(py,top); + vertarray->add(py,top+4); } - if (vertcnt>=maxverts) { + if (vertarray->full()) { qWarning() << "maxverts exceeded in gXAxis::Plot()"; break; } } - glEnableClientState(GL_VERTEX_ARRAY); glLineWidth(1); + vertarray->draw(); +/* glEnableClientState(GL_VERTEX_ARRAY); w.qglColor(Qt::black); glVertexPointer(2, GL_SHORT, 0, vertarray); glDrawArrays(GL_LINES, 0, vertcnt>>1); - glDisableClientState(GL_VERTEX_ARRAY); // deactivate vertex arrays after drawing + glDisableClientState(GL_VERTEX_ARRAY); // deactivate vertex arrays after drawing*/ /* if (m_fadeout) { diff --git a/Graphs/gXAxis.h b/Graphs/gXAxis.h index c9983b06..04b08830 100644 --- a/Graphs/gXAxis.h +++ b/Graphs/gXAxis.h @@ -38,5 +38,6 @@ class gXAxis:public Layer QColor m_minor_color; bool m_fadeout; qint64 tz_offset; + GLBuffer * vertarray; }; #endif // GXAXIS_H diff --git a/Graphs/gYAxis.cpp b/Graphs/gYAxis.cpp index b4a12d14..8179a624 100644 --- a/Graphs/gYAxis.cpp +++ b/Graphs/gYAxis.cpp @@ -19,9 +19,14 @@ gXGrid::gXGrid(QColor col) m_minor_color=QColor(220,220,220,64); m_show_major_lines=true; m_show_minor_lines=true; + + majorvert=new GLBuffer(m_major_color); + minorvert=new GLBuffer(m_minor_color); } gXGrid::~gXGrid() { + delete minorvert; + delete majorvert; } void gXGrid::paint(gGraph & w,int left,int top, int width, int height) { @@ -90,7 +95,7 @@ void gXGrid::paint(gGraph & w,int left,int top, int width, int height) float ty,h; - qint32 vertcnt=0; + /*qint32 vertcnt=0; GLshort * vertarray=(GLshort *)vertex_array[0]; qint32 minorvertcnt=0; GLshort * minorvertarray=(GLshort *)vertex_array[1]; @@ -100,7 +105,7 @@ void gXGrid::paint(gGraph & w,int left,int top, int width, int height) if ((vertarray==NULL) || (minorvertarray==NULL) || (majorvertarray==NULL)) { qWarning() << "gXGrid::Paint() VertArray==NULL"; return; - } + } */ if (min_ytick<=0) { qDebug() << "min_ytick error in gXGrid::paint()"; @@ -111,55 +116,48 @@ void gXGrid::paint(gGraph & w,int left,int top, int width, int height) } double q=((maxy-(miny+(min_ytick/2.0)))/min_ytick)*4; - if (q>=maxverts) { - qDebug() << "Would exeed maxverts. Should be another two bounds exceeded messages after this. (I can do a minor optimisation by disabling the other checks if this turns out to be consistent)" << q << maxverts; - } + //if (q>=maxverts) { + // qDebug() << "Would exeed maxverts. Should be another two bounds exceeded messages after this. (I can do a minor optimisation by disabling the other checks if this turns out to be consistent)" << q << maxverts; + //} for (double i=miny; i<=maxy+min_ytick-0.00001; i+=min_ytick) { ty=(i - miny) * ymult; h=top+height-ty; if (m_show_major_lines && (i > miny)) { - majorvertarray[majorvertcnt++]=left; - majorvertarray[majorvertcnt++]=h; - majorvertarray[majorvertcnt++]=left+width; - majorvertarray[majorvertcnt++]=h; + majorvert->add(left,h); + majorvert->add(left+width,h); } double z=(min_ytick/4)*ymult; double g=h; for (int i=0;i<3;i++) { g+=z; if (g>top+height) break; - if (vertcnt>=maxverts) { - qWarning() << "vertarray bounds exceeded in gYAxis for " << w.title() << "graph" << "MinY =" <draw(); + minorvert->draw(); + /* + glEnableClientState(GL_VERTEX_ARRAY); w.qglColor(m_minor_color); glVertexPointer(2, GL_SHORT, 0, minorvertarray); glDrawArrays(GL_LINES, 0, minorvertcnt>>1); @@ -167,6 +165,7 @@ void gXGrid::paint(gGraph & w,int left,int top, int width, int height) glVertexPointer(2, GL_SHORT, 0, majorvertarray); glDrawArrays(GL_LINES, 0, majorvertcnt>>1); glDisableClientState(GL_VERTEX_ARRAY); // deactivate vertex arrays after drawing + */ } @@ -176,13 +175,13 @@ gYAxis::gYAxis(QColor col) { m_line_color=col; m_text_color=col; - //m_major_color=QColor(190,190,190,64); - //m_minor_color=QColor(220,220,220,64); m_yaxis_scale=1; + vertarray=new GLBuffer(m_line_color); } gYAxis::~gYAxis() { + delete vertarray; } void gYAxis::paint(gGraph & w,int left,int top, int width, int height) { @@ -269,7 +268,7 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height) float ty,h; - qint32 vertcnt=0; + /*qint32 vertcnt=0; GLshort * vertarray=(GLshort *)vertex_array[0]; qint32 minorvertcnt=0; GLshort * minorvertarray=(GLshort *)vertex_array[1]; @@ -279,7 +278,7 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height) if ((vertarray==NULL) || (minorvertarray==NULL) || (majorvertarray==NULL)) { qWarning() << "gYAxis::Plot() VertArray==NULL"; return; - } + } */ if (min_ytick<=0) { qDebug() << "min_ytick error in gYAxis::Plot()"; @@ -290,9 +289,9 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height) } double q=((maxy-(miny+(min_ytick/2.0)))/min_ytick)*4; - if (q>=maxverts) { + /*if (q>=maxverts) { qDebug() << "Would exeed maxverts. Should be another two bounds exceeded messages after this. (I can do a minor optimisation by disabling the other checks if this turns out to be consistent)" << q << maxverts; - } + }*/ w.qglColor(m_text_color); for (double i=miny; i<=maxy+min_ytick-0.00001; i+=min_ytick) { @@ -305,44 +304,36 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height) //DrawText(w,fd,left+width-8-x,(h+(y/2.0)),0,m_text_color); w.renderText(fd,left+width-8-x,(h+(y/2.0)),0,m_text_color); - vertarray[vertcnt++]=left+width-4; - vertarray[vertcnt++]=h; - vertarray[vertcnt++]=left+width; - vertarray[vertcnt++]=h; + vertarray->add(left+width-4,h); + vertarray->add(left+width,h); double z=(min_ytick/4)*ymult; double g=h; for (int i=0;i<3;i++) { g+=z; if (g>top+height) break; - vertarray[vertcnt++]=left+width-3; - vertarray[vertcnt++]=g; - vertarray[vertcnt++]=left+width; - vertarray[vertcnt++]=g; - if (vertcnt>=maxverts) { + vertarray->add(left+width-3,g); + vertarray->add(left+width,g); + if (vertarray->full()) { qWarning() << "vertarray bounds exceeded in gYAxis for " << w.title() << "graph" << "MinY =" <draw(); // Draw the lines & ticks // Turn on blending?? - glEnableClientState(GL_VERTEX_ARRAY); + /*glEnableClientState(GL_VERTEX_ARRAY); glLineWidth(1); w.qglColor(m_line_color); glVertexPointer(2, GL_SHORT, 0, vertarray); glDrawArrays(GL_LINES, 0, vertcnt>>1); - glDisableClientState(GL_VERTEX_ARRAY); // deactivate vertex arrays after drawing + glDisableClientState(GL_VERTEX_ARRAY); // deactivate vertex arrays after drawing */ } diff --git a/Graphs/gYAxis.h b/Graphs/gYAxis.h index 1854c991..a768f038 100644 --- a/Graphs/gYAxis.h +++ b/Graphs/gYAxis.h @@ -13,7 +13,7 @@ class gYSpacer:public Layer { public: gYSpacer(int spacer=20); - virtual void paint(gGraph & w,int left,int top, int width, int height) {} + virtual void paint(gGraph & w,int left,int top, int width, int height) {w=w; left=left; top=top; width=width; height=height; } }; @@ -33,6 +33,7 @@ protected: bool m_show_minor_lines; QColor m_major_color; QColor m_minor_color; + GLBuffer * minorvert, * majorvert; }; class gYAxis:public Layer @@ -63,7 +64,7 @@ class gYAxis:public Layer QColor m_line_color; QColor m_text_color; - + GLBuffer * vertarray; }; #endif // GYAXIS_H diff --git a/Graphs/glcommon.cpp b/Graphs/glcommon.cpp index 37b695b7..b592654f 100644 --- a/Graphs/glcommon.cpp +++ b/Graphs/glcommon.cpp @@ -4,156 +4,8 @@ License: GPL */ -#include -#include -#include -#include -#include +#include #include "glcommon.h" -#include "SleepLib/profiles.h" -#include - -bool _graph_init=false; - -QFont * defaultfont=NULL; -QFont * mediumfont=NULL; -QFont * bigfont=NULL; - -GLshort * vertex_array[num_vert_arrays]={0}; -bool evil_intel_graphics_chip=false; - -// Must be called from a thread inside the application. -void InitGraphs() -{ - if (!_graph_init) { - defaultfont=new QFont("Sans Serif",10); - mediumfont=new QFont("Sans Serif",11); - bigfont=new QFont("Serif",35); - - defaultfont->setStyleHint(QFont::SansSerif,QFont::OpenGLCompatible); - mediumfont->setStyleHint(QFont::SansSerif,QFont::OpenGLCompatible); - bigfont->setStyleHint(QFont::Serif ,QFont::OpenGLCompatible); - - for (int i=0;i TextQue; -QVector TextQueRot; - -void DrawTextQueue(gGraphWindow & wid) -{ - //glFlush(); - for (int i=0;i -#include #include -#include "Graphs/graphwindow.h" - -void InitGraphs(); -void DoneGraphs(); - -extern QFont * defaultfont; -extern QFont * mediumfont; -extern QFont * bigfont; - -const int num_vert_arrays=4; -const qint32 maxverts=65536*4; // Resolution dependant.. -extern GLshort *vertex_array[num_vert_arrays]; - - -class gGraphWindow; -void GetTextExtent(QString text, float & width, float & height, QFont *font=defaultfont); -void DrawText(gGraphWindow &wid, QString text, int x, int y, float angle=0, QColor color=Qt::black,QFont *font=defaultfont); -void DrawTextQueue(gGraphWindow & wid); +#include void LinedRoundedRectangle(int x,int y,int w,int h,int radius,int lw,QColor color); void RoundedRectangle(int x,int y,int w,int h,int radius,const QColor color); diff --git a/Graphs/graphlayer.cpp b/Graphs/graphlayer.cpp deleted file mode 100644 index c619e64a..00000000 --- a/Graphs/graphlayer.cpp +++ /dev/null @@ -1,137 +0,0 @@ -// This file is Scheduled for destruction.. - -/* - gLayer Implementation - Copyright (c)2011 Mark Watkins - License: GPL -*/ - -#include "graphlayer.h" - -gLayer::gLayer(ChannelID code,QString title) -:m_code(code),m_title(title) -{ - m_visible = true; - m_movable = false; - //color.push_back(QColor("red")); - //color.push_back(QColor("green")); - m_day=NULL; - m_miny=m_maxy=0; - m_minx=m_maxx=0; -} - -gLayer::~gLayer() -{ - -} - -void gLayer::SetDay(Day * d) -{ - m_day=d; - if (!d) return; - m_minx=d->first(m_code); - m_maxx=d->last(m_code); - m_miny=d->min(m_code); - m_maxy=d->max(m_code); -} - - -bool gLayer::isEmpty() -{ - if (m_day && (m_day->count(m_code)!=0)) - return false; - return true; -} - -gLayerGroup::gLayerGroup():gLayer(EmptyChannel) -{ -} -gLayerGroup::~gLayerGroup() -{ -} -bool gLayerGroup::isEmpty() -{ - bool empty=true; - for (int i=0;iisEmpty()) { - empty=false; - break; - } - } - return empty; -} -void gLayerGroup::SetDay(Day * d) -{ - for (int i=0;iSetDay(d); - } - m_day=d; -} - -void gLayerGroup::AddLayer(gLayer *l) -{ - layers.push_back(l); -} - -qint64 gLayerGroup::Minx() -{ - bool first=true; - qint64 m=0,t; - for (int i=0;iMinx(); - if (!t) continue; - if (first) { - m=t; - first=false; - } else - if (m>t) m=t; - } - return m; -} -qint64 gLayerGroup::Maxx() -{ - bool first=true; - qint64 m=0,t; - for (int i=0;iMaxx(); - if (!t) continue; - if (first) { - m=t; - first=false; - } else - if (mMiny(); - if (t==layers[i]->Minx()) continue; - if (first) { - m=t; - first=false; - } else { - if (m>t) m=t; - } - } - return m; -} -EventDataType gLayerGroup::Maxy() -{ - bool first=true; - EventDataType m=0,t; - for (int i=0;iMaxy(); - if (t==layers[i]->Miny()) continue; - if (first) { - m=t; - first=false; - } else - if (m - License: GPL -*/ - -#ifndef GRAPHLAYER_H -#define GRAPHLAYER_H - -#include -#include "SleepLib/day.h" -#include "graphwindow.h" - -enum FlagType { FT_Bar, FT_Dot, FT_Span }; - -class gGraphWindow; -class gLayer -{ -public: - gLayer(ChannelID code=EmptyChannel,QString title=""); - virtual ~gLayer(); - virtual void Plot(gGraphWindow & w,float scrx,float scry)=0; - //QVector color; - - virtual void SetDay(Day * d); - virtual void SetCode(ChannelID c) { m_code=c; } - virtual qint64 Minx() { if (m_day) return m_day->first(); return m_minx; } - virtual qint64 Maxx() { if (m_day) return m_day->last(); return m_maxx; } - virtual EventDataType Miny() { return m_miny; } - virtual EventDataType Maxy() { return m_maxy; } - virtual void setMinY(EventDataType val) { m_miny=val; } - virtual void setMaxY(EventDataType val) { m_maxy=val; } - virtual void setMinX(qint64 val) { m_minx=val; } - virtual void setMaxX(qint64 val) { m_maxx=val; } - virtual void setVisible(bool v) { m_visible=v; } - virtual bool isVisible() { return m_visible; } - virtual bool isEmpty(); - inline const ChannelID & code() { return m_code; } - -protected: - Day *m_day; - bool m_visible; - bool m_movable; - qint64 m_minx,m_maxx; - EventDataType m_miny,m_maxy; - ChannelID m_code; - QString m_title; -}; - -class gLayerGroup:public gLayer -{ -public: - gLayerGroup(); - virtual ~gLayerGroup(); - virtual void AddLayer(gLayer *l); - - virtual qint64 Minx(); - virtual qint64 Maxx(); - virtual EventDataType Miny(); - virtual EventDataType Maxy(); - virtual bool isEmpty(); - virtual void SetDay(Day * d); - -protected: - QVector layers; -}; - -#endif // GRAPHLAYER_H diff --git a/Graphs/graphwindow.cpp b/Graphs/graphwindow.cpp deleted file mode 100644 index 55cdb242..00000000 --- a/Graphs/graphwindow.cpp +++ /dev/null @@ -1,1010 +0,0 @@ -// This file is Scheduled for destruction.. - -/* - gGraphWindow Implementation - Copyright (c)2011 Mark Watkins - License: GPL -*/ - -#include -#include -#include -#include - -#ifdef __APPLE__ -#include -#endif - -#include "SleepLib/profiles.h" -#include "graphwindow.h" -#include "gTitle.h" -#include "gXAxis.h" -#include "gYAxis.h" -#include "gFooBar.h" - -extern QLabel *qstatus2; - -gGraphWindow::gGraphWindow(QWidget *parent, const QString & title, QGLWidget * shared,Qt::WindowFlags f) -: QGLWidget(parent,shared, f ) -{ - splitter=NULL; - m_scrX = m_scrY = 100; - m_title=title; - m_mouseRDown=m_mouseLDown=false; - m_block_zoom=false; - m_drag_foobar=false; - m_dragGraph=false; - - m_gradient_background=true; - m_foobar_pos=0; - m_foobar_moved=0; - SetMargins(10, 15, 0, 0); - lastlayer=NULL; - InitGraphs(); - ti=QDateTime::currentDateTime(); - gtitle=foobar=xaxis=yaxis=NULL; - if (!title.isEmpty()) { - AddLayer(new gTitle(title,Qt::black,*mediumfont)); - } - //setAcceptDrops(true); - setMouseTracking(true); - setFocusPolicy(Qt::StrongFocus); - rmin_x=rmax_x=0; - min_x=max_x=0; - rmin_y=rmax_y=0; - min_y=max_y=0; -} - -/*gGraphWindow::gGraphWindow(QWidget *parent, const QString & title, QGLContext * context,Qt::WindowFlags f) -: QGLWidget((QGLContext *)context, parent, 0, f ) -{ - gl_context=context; - m_scrX = m_scrY = 100; - m_title=title; - m_mouseRDown=m_mouseLDown=false; - SetMargins(10, 15, 0, 0); - m_block_zoom=false; - m_drag_foobar=false; - m_dragGraph=false; - m_gradient_background=false; - m_foobar_pos=0; - m_foobar_moved=0; - lastlayer=NULL; - ti=QDateTime::currentDateTime(); - gtitle=foobar=xaxis=yaxis=NULL; - - if (!title.isEmpty()) { - AddLayer(new gTitle(title)); - } - //setAcceptDrops(true); - setMouseTracking(true); - setFocusPolicy(Qt::StrongFocus); -}*/ - -gGraphWindow::~gGraphWindow() -{ - for (QList::iterator l=layers.begin();l!=layers.end();l++) delete (*l); - layers.clear(); -} - -bool gGraphWindow::isEmpty() -{ - bool empty=true; - for (QList::iterator l=layers.begin();l!=layers.end();l++) { - if (!(*l)->isEmpty()) { - empty=false; - break; - } - } - return empty; -} -/*void gGraphWindow::resizeEvent(QResizeEvent *e) -{ - QGLWidget::resizeEvent(e); -}*/ - - -void gGraphWindow::AddLayer(gLayer *l) { - if (l) { - if (dynamic_cast(l)) { - if (xaxis) { - qWarning("Can only have one gXAxis per graph"); - return; - } - //if (m_marginBottom(l)) { - if (foobar) { - qWarning("Can only have one gFooBar per graph"); - return; - } - //if (m_marginBottom(l)) { - if (yaxis) { - qWarning("Can only have one gYAxis per graph"); - return; - } - //if (m_marginLeft(l)) { - if (gtitle) { - qWarning("Can only have one gGraphTitle per graph"); - return; - } - //if (m_marginLeftNotifyGraphWindow(this); - layers.push_back(l); - } -}; - - -// Sets a new Min & Max X clipping, refreshing the graph and all it's layers. -void gGraphWindow::SetXBounds(qint64 minx, qint64 maxx) -{ - min_x=minx; - max_x=maxx; - - updateGL(); -} -void gGraphWindow::ResetBounds() -{ - min_x=MinX(); - max_x=MaxX(); - min_y=MinY(); - max_y=MaxY(); -} - -void gGraphWindow::ZoomXPixels(int x1, int x2) -{ - qint64 rx1=0,rx2=0; - ZoomXPixels(x1,x2,rx1,rx2); - if (pref["LinkGraphMovement"].toBool()) { - for (QList::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { - (*g)->SetXBounds(rx1,rx2); - } - } - - SetXBounds(rx1,rx2); -} -void gGraphWindow::ZoomXPixels(int x1,int x2,qint64 &rx1,qint64 &rx2) -{ - x1-=GetLeftMargin(); - x2-=GetLeftMargin(); - if (x1<0) x1=0; - if (x2<0) x2=0; - if (x1>Width()) x1=Width(); - if (x2>Width()) x2=Width(); - - qint64 min; - qint64 max; - if (!m_block_zoom) { - min=min_x; - max=max_x; - } else { - min=rmin_x; - max=rmax_x; - } - - double q=max-min; - rx1=min+(double(x1)/Width()) * q; - rx2=min+(double(x2)/Width()) * q; -} - -// Move x-axis by the amount of space represented by integer i Pixels (negative values moves backwards) -void gGraphWindow::MoveX(int i,qint64 &min, qint64 & max) -{ - //if (i==0) return; - min=min_x; - max=max_x; - double q=max-min; - double rx1=(double(i)/Width()) * q; - min-=rx1; - max-=rx1; - - // Keep bounds when hitting hard edges - if (minrmax_x) { - max=rmax_x; - min=max-q; - } -} - -void gGraphWindow::MoveX(int i) -{ - qint64 min,max; - MoveX(i,min,max); - -/* for (QList::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { - (*g)->SetXBounds(min,max); - } */ - //if (!m_block_zoom) { - SetXBounds(min,max); - //} -} -void gGraphWindow::ZoomX(double mult,int origin_px) -{ - if (origin_px==0) origin_px=(Width()/2); else origin_px-=GetLeftMargin(); - - if (origin_px<0) origin_px=0; - 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. - - qint64 min=min_x; - qint64 max=max_x; - - double hardspan=rmax_x-rmin_x; - double span=max-min; - double ww=double(origin_px) / double(Width()); - double origin=ww * span; - //double center=0.5*span; - //double dist=(origin-center); - - double q=span*mult; - if (q>hardspan) q=hardspan; - if (qrmax_x) { - max=rmax_x; - min=max-q; - } - SetXBounds(min,max); - updateSelectionTime(max-min); -} - -void gGraphWindow::updateSelectionTime(qint64 span) // in milliseconds -{ - qint64 time=span % 86400000; - int days,hours,minutes,seconds,milli; - milli=time % 1000; - time/=1000; - seconds=time%60; - time/=60; - minutes=time%60; - time/=60; - hours=time; - time/=24; - days=time; - QString s; - qint64 z=(max_x-min_x)/1000; - if (z>86400) { - s.sprintf("%i days",days); - } else if (z>3600) { - s.sprintf("%02i:%02i:%02i",hours,minutes,seconds); - } else { - s.sprintf("%02i:%02i:%02i:%04i",hours,minutes,seconds,milli); - } - - qstatus2->setText(s); -} - -gGraphWindow *LastGraphLDown=NULL; -gGraphWindow *LastGraphRDown=NULL; -gGraphWindow *currentWidget=NULL; -void gGraphWindow::mouseMoveEvent(QMouseEvent * event) -{ -// static bool first=true; - static QRect last; - // grabbed - if (m_dragGraph) { - if (LastGraphLDown!=this) - currentWidget=this; - if (splitter) { - if (event->y()>m_scrY) { - //qDebug() << "Swap Down"; - int i=splitter->indexOf(this); - if (icount()-2) { - splitter->insertWidget(i+1,this); - splitter->setStretchFactor(this,1); - splitter->layout(); - } - - } else if (event->y()<0) { - //qDebug() << "Swap up"; - int i=splitter->indexOf(this); - if (i>0) { - splitter->insertWidget(i-1,this); - splitter->setStretchFactor(this,1); - splitter->layout(); - } - } - } - - return; - } - if (m_mouseLDown && LastGraphLDown && (LastGraphLDown!=this)) { - LastGraphLDown->mouseMoveEvent(event); - return; - } - if (m_mouseRDown && LastGraphRDown && (LastGraphRDown!=this)) { - LastGraphRDown->mouseMoveEvent(event); - return; - } - - int y=event->y(); - int x=event->x(); - if (foobar && m_drag_foobar) { - if (xm_scrX-GetRightMargin()) return; - - double mx=double(x1)/double(width); - - qint64 rminx=rmin_x; - qint64 rmaxx=rmax_x; - double rx=rmaxx-rminx; - - double qx=rx*mx; - qx+=rminx; - - // qx is centerpoint of new zoom area. - - qint64 minx=min_x; - double dx=max_x-minx; // zoom rect width; - - double gx=dx*m_foobar_pos; - - qx-=gx; - if (qxrmaxx) { - ex=rmaxx; - qx=ex-dx; - } - if (m_mouseRDown) - m_foobar_moved+=fabs((qx-minx))+fabs((m_mouseRClick.x()-x))+fabs((m_mouseRClick.y()-y)); - if (m_mouseLDown) - m_foobar_moved+=fabs((qx-minx))+fabs((m_mouseLClick.x()-x))+fabs((m_mouseLClick.y()-y)); - //else - SetXBounds(qx,ex); - if (pref["LinkGraphMovement"].toBool()) { - for (QList::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { - if (*g==this) { - qWarning() << "mouseMoveEvent *g should not equal this"; - continue; - } - (*g)->SetXBounds(qx,ex); - } - } - } else - if (event->buttons() & Qt::RightButton) { - MoveX(x - m_mouseRClick.x()); - m_mouseRClick.setX(x); - if (pref["LinkGraphMovement"].toBool()) { - for (QList::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { - (*g)->SetXBounds(min_x,max_x); - } - } - } else - if (event->buttons() & Qt::LeftButton) { - - int x1=m_mouseLClick.x(); - int x2=x; - int t1=MIN(x1,x2); - int t2=MAX(x1,x2); - if (t1(m_scrX-m_marginRight)) t2=m_scrX-m_marginRight; - - QRect r(t1-1, m_marginBottom, t2-t1, m_scrY-m_marginBottom-m_marginTop); - - double z; - if (m_block_zoom) { - z=rmax_x-rmin_x; - } else { - z=max_x-min_x; - } - double q=double(t2-t1)/Width(); - this->updateSelectionTime(q*z); - m_mouseRBlast=m_mouseRBrect; - m_mouseRBrect=r; - - // TODO: Only the rect needs clearing, however OpenGL & wx have reversed coordinate systems. - updateGL(); //r.Union(m_mouseRBlast),true); - } -} -void gGraphWindow::mouseDoubleClickEvent(QMouseEvent * event) -{ - // TODO: Retest.. QT might not be so retarded - if (event->buttons() & Qt::LeftButton) OnMouseLeftDown(event); - else if (event->buttons() & Qt::RightButton) OnMouseRightDown(event); -} - -void gGraphWindow::mousePressEvent(QMouseEvent * event) -{ - if (event->button()==Qt::LeftButton) - OnMouseLeftDown(event); - else if (event->button()==Qt::RightButton) - OnMouseRightDown(event); -} -void gGraphWindow::mouseReleaseEvent(QMouseEvent * event) -{ - if (event->button()==Qt::LeftButton) - OnMouseLeftRelease(event); - else if (event->button()==Qt::RightButton) - OnMouseRightRelease(event); - -} -void gGraphWindow::keyPressEvent(QKeyEvent * event) -{ - bool moved=false; - int accel=1; - if (event->key()==Qt::Key_Left) { - if (event->modifiers() & Qt::ControlModifier) accel=4; - MoveX(40*accel); - moved=true; - } else if (event->key()==Qt::Key_Right) { - if (event->modifiers() & Qt::ControlModifier) accel=4; - MoveX(-40*accel); - moved=true; - } else if (event->key()==Qt::Key_Up) { - double zoom_fact=2; - if (event->modifiers() & Qt::ControlModifier) zoom_fact=5; - ZoomX(zoom_fact,0); - moved=true; - } else if (event->key()==Qt::Key_Down) { - double zoom_fact=.5; - if (event->modifiers() & Qt::ControlModifier) zoom_fact=.2; - ZoomX(zoom_fact,0); - moved=true; - } - - if (moved) { - if (pref["LinkGraphMovement"].toBool()) { - for (QList::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { - (*g)->SetXBounds(min_x,max_x); - } - } - event->accept(); - } else { - event->ignore(); - } -} - -void gGraphWindow::OnMouseRightDown(QMouseEvent * event) -{ - int y=event->y(); - int x=event->x(); - if (ym_scrY-GetBottomMargin()) { // after top margin - // return; - //} - - - // inside the margin area.. - - int width=m_scrX-GetRightMargin()-GetLeftMargin(); - int height=m_scrY-GetBottomMargin()-GetTopMargin(); - QRect hot1(GetLeftMargin(),GetTopMargin(),width,height); // Graph data area. - m_mouseRClick.setX(x); - m_mouseRClick.setY(y); - - m_mouseRClick_start=m_mouseRClick; - m_mouseRDown=true; - - // m_mouseRDown=true; - if (foobar && m_block_zoom && (((y>GetTopMargin())) && (yx1) && (xrmax_x) { - x2=rmax_x; - x1=x2-z; - } - // SetXBounds(x1,x2); - LastGraphRDown=this; - } - } - -} - -void gGraphWindow::OnMouseRightRelease(QMouseEvent * event) -{ - if (LastGraphRDown && (LastGraphRDown!=this)) { // Same graph that initiated the click?? - LastGraphRDown->OnMouseLeftRelease(event); // Nope.. Give it the event. - return; - } - LastGraphRDown=NULL; - if (!m_mouseRDown) return; - // Do this properly with real hotspots later.. - int y=event->y(); - int x=event->x(); - int width=m_scrX-GetRightMargin()-GetLeftMargin(); - int height=m_scrY-GetBottomMargin()-GetTopMargin(); - QRect hot1(GetLeftMargin(),GetTopMargin(),width,height); // Graph data area. - - if (m_block_zoom) { // && hot1.Contains(x,y)) { - - - //bool zoom_in=false; - bool did_draw=false; - - // Finished Dragging the FooBar? - if (foobar && m_drag_foobar) { - if (m_foobar_moved<5) { - double zoom_fact=2; - if (event->modifiers() & Qt::ControlModifier) zoom_fact=5; - //if (!m_block_zoom) { - ZoomX(zoom_fact,x); - did_draw=true; - //} - m_foobar_moved=0; - } - } - m_drag_foobar=false; - - if (did_draw) { - if (pref["LinkGraphMovement"].toBool()) { - for (QList::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { - (*g)->SetXBounds(min_x,max_x); - } - } - } - - return; - } - - double zoom_fact=2; - if (ym_scrY-GetBottomMargin()) { - if (!foobar) return; - } - - if (event->modifiers() & Qt::ControlModifier) zoom_fact=5.0; - if (abs(x-m_mouseRClick_start.x())<3 && abs(y-m_mouseRClick_start.y())<3) { - // for (QList::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { - //(*g)->ZoomX(zoom_fact,0); - //} - //if (!m_block_zoom) { - ZoomX(zoom_fact,x); //event.GetX()); // adds origin to zoom out.. Doesn't look that cool. - - if (pref["LinkGraphMovement"].toBool()) { - for (QList::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { - (*g)->SetXBounds(min_x,max_x); - } - } - //} - - }/* else { - double min=MinX(); - double max=MaxX(); - for (QList::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { - (*g)->SetXBounds(min,max); - } - }*/ - - m_mouseRDown=false; - -} - -void gGraphWindow::OnMouseLeftDown(QMouseEvent * event) -{ - int y=event->y(); - int x=event->x(); - - if (x(m_scrY-GetBottomMargin())) && (y<(m_scrY)))) { //-GetBottomMargin())+20))) { - double rx=rmax_x-rmin_x; - double qx=double(width)/rx; - double minx=min_x-rmin_x; - double maxx=max_x-rmin_x; - - int x1=(qx*minx); - int x2=(qx*maxx); // length in pixels - int xw=x2-x1; - - x1+=GetLeftMargin(); - x2+=GetLeftMargin(); - if ((x>x1-4) && (xindexOf(currentWidget); - //if (qobject_cast(splitter->widget(newidx))) { - // splitter->insertWidget(newidx,LastGraphLDown); - //} - return; - - } - } - m_dragGraph=false; - return; - } - - if (LastGraphLDown && (LastGraphLDown!=this)) { // Same graph that initiated the click?? - LastGraphLDown->OnMouseLeftRelease(event); // Nope.. Give it the event. - return; - } - - int y=event->y(); - int x=event->x(); - int width=m_scrX-GetRightMargin()-GetLeftMargin(); - int height=m_scrY-GetBottomMargin()-GetTopMargin(); - QRect hot1(GetLeftMargin(),GetTopMargin(),width,height); // Graph data area. - - //bool was_dragging_foo=false; - bool did_draw=false; - - // Finished Dragging the FooBar? - if (foobar && m_drag_foobar) { - m_drag_foobar=false; - //was_dragging_foo=true; - if (m_foobar_moved<5) { - double zoom_fact=0.5; - if (event->modifiers() & Qt::ControlModifier) zoom_fact=0.25; - //if (!m_block_zoom) { - ZoomX(zoom_fact,0); - did_draw=true; - //} - m_foobar_moved=0; - } else m_mouseLDown=false; - - - } - - // The user selected a range with the left mouse button - if (!did_draw && m_mouseLDown) { - //QPoint release(x, m_scrY-m_marginBottom); - //QPoint press(m_mouseLClick.x(), m_marginTop); - - int x1=m_mouseRBrect.x(); - int x2=x1+m_mouseRBrect.width(); - int t1=MIN(x1,x2); - int t2=MAX(x1,x2); - - if ((t2-t1)>4) { // Range Selected less than threshold - m_mouseLDown=false; - ZoomXPixels(t1,t2); - - did_draw=true; - } - } - - if (!did_draw && hot1.contains(x,y) && !m_drag_foobar && m_mouseLDown) { - if (m_block_zoom) { - x-=GetLeftMargin(); - double rx=rmax_x-rmin_x; - double mx=max_x-min_x; - double qx=(rx/width)*double(x); - if (mx>=rx) { - mx=300000;//1.0/(24.0*15.0); - } - qx+=rmin_x; - qx-=mx/2.0; - if (qxrmax_x) { - qx=rmax_x-mx; - } - glFlush(); - glFinish(); - SetXBounds(qx,qx+mx); - did_draw=true; - } else { - int xp=x; - //xp=0; - double zoom_fact=0.5; - if (event->modifiers() & Qt::ControlModifier) zoom_fact=0.25; - ZoomX(zoom_fact,xp); - did_draw=true; - } - } - - m_drag_foobar=false; - QRect r=m_mouseRBrect; - m_mouseRBrect=QRect(0, 0, 0, 0); - m_mouseLDown=false; - m_drag_foobar=false; - if (!did_draw) { - if (r!=m_mouseRBrect) { - updateGL(); - } - } else { - if (pref["LinkGraphMovement"].toBool()) { - for (QList::iterator g=link_zoom.begin();g!=link_zoom.end();g++) { - (*g)->SetXBounds(min_x,max_x); - } - glFinish(); - } - } - LastGraphLDown=NULL; -} - -void gGraphWindow::SetMargins(int top, int right, int bottom, int left) -{ - m_marginTop=top; - m_marginBottom=bottom; - m_marginLeft=left; - m_marginRight=right; -} - -void gGraphWindow::initializeGL() -{ - setAutoFillBackground(false); - setAutoBufferSwap(false); - glDisable(GL_LIGHTING); - glDisable(GL_DEPTH_TEST); - glDisable(GL_TEXTURE_2D); - m_scrX=width(); - m_scrY=height(); - - /*QGLFormat glFormat(QGL::SampleBuffers); - glFormat.setAlpha(true); - glFormat.setDirectRendering(true); - glFormat.setSwapInterval(1); - setFormat(glFormat);*/ - -} - -bool first_draw_event=true; -void gGraphWindow::resizeGL(int w, int h) -{ - m_scrX=w; - m_scrY=h; - glViewport(0, 0, w, h); - glMatrixMode(GL_PROJECTION); - glLoadIdentity(); - - glOrtho(0, w, 0, h, -1, 1); - glMatrixMode(GL_MODELVIEW); - glLoadIdentity(); - - // Only needs doing on a mac - updateGL(); - -} - -void gGraphWindow::Render(int w, int h) -{ - if (m_gradient_background) { - glClearColor(255,255,255,255); - //glClearDepth(1); - glClear(GL_COLOR_BUFFER_BIT);// | GL_DEPTH_BUFFER_BIT); - - //glEnable(GL_BLEND); - //glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - glBegin(GL_QUADS); - glColor4f(1.0,1.0,1.0,1.0); // Gradient start - glVertex2f(0, h); - glVertex2f(0, 0); - - glColor4f(0.8,0.8,1.0,1.0); // Gradient End - glVertex2f(w, 0); - glVertex2f(w, h); - - /*glColor4f(1.0,1.0,1.0,0.5); // Gradient start - glVertex2f(GetLeftMargin(), h-GetTopMargin()); - glVertex2f(GetLeftMargin(), GetBottomMargin()); - glVertex2f(w-GetRightMargin(), GetBottomMargin()); - glVertex2f(w-GetRightMargin(), h-GetTopMargin()); */ - glEnd(); - //glDisable(GL_BLEND); - } else { - glClearColor(255,255,255,255); - glClearDepth(1); - glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); - } - - - for (QList::iterator l=layers.begin();l!=layers.end();l++) { - (*l)->Plot(*this,w,h); - } - - DrawTextQueue(*this); - glDisable(GL_TEXTURE_2D); - glDisable(GL_DEPTH_TEST); -} - -void gGraphWindow::paintGL() -{ - if (m_scrX<=0) m_scrX=width(); - if (m_scrY<=0) m_scrY=height(); - if (m_scrX<=0) return; - if (m_scrY<=0) return; -#ifdef __APPLE__ - AGLContext aglContext; - aglContext=aglGetCurrentContext(); - GLint swapInt=1; - aglSetInteger(aglContext, AGL_SWAP_INTERVAL, &swapInt); -#endif - - //glDisable(GL_DEPTH_TEST); - Render(m_scrX,m_scrY); - - if (m_mouseLDown) { - if (m_mouseRBrect.width()>0) - //glDisable(GL_DEPTH_TEST); - glEnable(GL_BLEND); - glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - - glBegin(GL_QUADS); - glColor4ub(140,140,140,64); - glVertex2f(m_mouseRBrect.x(),m_mouseRBrect.y()); - glVertex2f(m_mouseRBrect.x()+m_mouseRBrect.width(),m_mouseRBrect.y()); - glColor4ub(50,50,200,128); - glVertex2f(m_mouseRBrect.x()+m_mouseRBrect.width(),m_mouseRBrect.y()+m_mouseRBrect.height()); - glVertex2f(m_mouseRBrect.x(),m_mouseRBrect.y()+m_mouseRBrect.height()); - glEnd(); - glDisable(GL_BLEND); - //glFinish(); - //RoundedRectangle(m_mouseRBrect.x(),m_mouseRBrect.y(),m_mouseRBrect.width(),m_mouseRBrect.height(),5,QColor(50,50,200,64)); - //glEnable(GL_DEPTH_TEST); - } - //glEnable(GL_DEPTH_TEST); - - - swapBuffers(); // Dump to screen. -} - -qint64 gGraphWindow::MinX() -{ - bool first=true; - qint64 val=0,tmp; - for (QList::iterator l=layers.begin();l!=layers.end();l++) { - if ((*l)->isEmpty()) continue; - tmp=(*l)->Minx(); - if (!tmp) continue; - if (first) { - val=tmp; - first=false; - } else { - if (tmp < val) val = tmp; - } - } - if (val) rmin_x=val; - return val; -} -qint64 gGraphWindow::MaxX() -{ - bool first=true; - qint64 val=0,tmp; - for (QList::iterator l=layers.begin();l!=layers.end();l++) { - if ((*l)->isEmpty()) continue; - tmp=(*l)->Maxx(); - if (!tmp) continue; - if (first) { - val=tmp; - first=false; - } else { - if (tmp > val) val = tmp; - } - } - if (val) rmax_x=val; - return val; -} -EventDataType gGraphWindow::MinY() -{ - bool first=true; - EventDataType val=0,tmp; - for (QList::iterator l=layers.begin();l!=layers.end();l++) { - if ((*l)->isEmpty()) continue; - tmp=(*l)->Miny(); - if (tmp==0 && tmp==(*l)->Maxy()) continue; - if (first) { - val=tmp; - first=false; - } else { - if (tmp < val) val = tmp; - } - } - return rmin_y=val; -} -EventDataType gGraphWindow::MaxY() -{ - bool first=true; - EventDataType val=0,tmp; - for (QList::iterator l=layers.begin();l!=layers.end();l++) { - if ((*l)->isEmpty()) continue; - tmp=(*l)->Maxy(); - if (tmp==0 && tmp==(*l)->Miny()) continue; - if (first) { - val=tmp; - first=false; - } else { - if (tmp > val) val = tmp; - } - } - return rmax_y=val; -} - -void gGraphWindow::SetMinX(qint64 v) -{ - min_x=v; -} -void gGraphWindow::SetMaxX(qint64 v) -{ - max_x=v; -} -void gGraphWindow::SetMinY(EventDataType v) -{ - min_y=v; -} -void gGraphWindow::SetMaxY(EventDataType v) -{ - max_y=v; -} diff --git a/Graphs/graphwindow.h b/Graphs/graphwindow.h deleted file mode 100644 index 5f66e781..00000000 --- a/Graphs/graphwindow.h +++ /dev/null @@ -1,171 +0,0 @@ -/* - gGraphWindow Headers - Copyright (c)2011 Mark Watkins - License: GPL -*/ - -#ifndef GRAPHWINDOW_H -#define GRAPHWINDOW_H - -#include -#include -#include -#include -#include -#include -using namespace std; -#include "graphlayer.h" -#include "glcommon.h" - -#define MIN(a,b) (((a)<(b)) ? (a) : (b)); -#define MAX(a,b) (((a)<(b)) ? (b) : (a)); - - -class gLayer; - -class gGraphWindow : public QGLWidget -{ - Q_OBJECT -public: - //explicit gGraphWindow(QWidget *parent, const QString & title, QGLContext * context,Qt::WindowFlags f=0); - explicit gGraphWindow(QWidget *parent, const QString & title, QGLWidget * shared,Qt::WindowFlags f=0); - virtual ~gGraphWindow(); - -signals: -public slots: -public: - QBitmap * RenderBitmap(int width,int height); - - virtual void paintGL(); - virtual void resizeGL(int width, int height); - - //virtual void OnMouseWheel(wxMouseEvent &event); - virtual void mouseMoveEvent(QMouseEvent * event); - virtual void mousePressEvent(QMouseEvent * event); - virtual void mouseReleaseEvent(QMouseEvent * event); - virtual void mouseDoubleClickEvent(QMouseEvent * event); - virtual void keyPressEvent(QKeyEvent * event); - //virtual void OnMouseRightDClick(wxMouseEvent * event); - virtual void OnMouseLeftDown(QMouseEvent * event); - virtual void OnMouseLeftRelease (QMouseEvent * event); - virtual void OnMouseRightDown(QMouseEvent * event); - virtual void OnMouseRightRelease(QMouseEvent * event); - - int GetScrX(void) const { return m_scrX; } - int GetScrY(void) const { return m_scrY; } - - // For mouse to screen use only.. work in OpenGL points where possible - const QString & Title(void ) { return m_title; } - - void SetMargins(int top, int right, int bottom, int left); // OpenGL width of each corners margin - - int GetTopMargin(void) const { return m_marginTop; } - int GetBottomMargin(void) const { return m_marginBottom; } - int GetLeftMargin(void) const { return m_marginLeft; } - int GetRightMargin(void) const { return m_marginRight; } - - void SetTopMargin(int i) { m_marginTop=i; } - void SetBottomMargin(int i) { m_marginBottom=i; } - void SetLeftMargin(int i) { m_marginLeft=i; } - void SetRightMargin(int i) { m_marginRight=i; } - - inline int Width() { return m_scrX-m_marginLeft-m_marginRight; } // Width of OpenGL main drawing area - inline int Height() { return m_scrY-m_marginTop-m_marginBottom; } // Height of ""... - - void LinkZoom(gGraphWindow *g) { link_zoom.push_back(g); } // Linking graphs changes zoom behaviour.. - - virtual qint64 MinX(); - virtual qint64 MaxX(); - virtual EventDataType MinY(); - virtual EventDataType MaxY(); - - virtual void SetMinX(qint64 v); - virtual void SetMaxX(qint64 v); - virtual void SetMinY(EventDataType v); - virtual void SetMaxY(EventDataType v); - - virtual void ResetBounds(); - virtual void SetXBounds(qint64 minx, qint64 maxx); - virtual void ZoomX(double mult,int origin_px); - - virtual void ZoomXPixels(int x1, int x2); // Zoom between two selected points on screen - virtual void ZoomXPixels(int x1,int x2,qint64 &rx1,qint64 &rx2); - - virtual void MoveX(int i); // Move x bounds by i Pixels - virtual void MoveX(int i,qint64 &min, qint64 & max); - - inline int x2p(qint64 x) { - double xx=max_x-min_x; - double wid=Width(); - double w=((wid/xx)*double(x-min_x)); - return w+GetLeftMargin(); - } - inline qint64 p2x(int px) { - double xx=max_x-min_x; - double wx=px-GetLeftMargin(); - double ww=wx/Width(); - return min_x+(xx*ww); - } - inline int y2p(EventDataType y) { - double yy=max_y-min_y; - double h=(Height()/yy)*double(y-min_y); - return h+GetBottomMargin(); - } - inline EventDataType p2y(int py) { - double yy=max_y-min_y; - double hy=py-GetBottomMargin(); - double hh=hy/Height(); - return min_y+(yy*hh); - } - - void Render(int scrx,int scry); - - void AddLayer(gLayer *l); - - qint64 max_x,min_x,max_y,min_y; - qint64 rmax_x,rmin_x,rmax_y,rmin_y; - - void SetBlockZoom(bool b) { m_block_zoom=b; } - bool BlockZoom() { return m_block_zoom; } - QGLContext *gl_context; - void SetGradientBackground(bool b) { m_gradient_background=b; } - bool GradientBackground() { return m_gradient_background; } - bool isEmpty(); - void SetSplitter(QVBoxLayout *s) { splitter=s; } - bool isDraggingGraph() { return m_dragGraph; } - void setScry(int h) { m_scrY=h; } - protected: - void updateSelectionTime(qint64 span); - //virtual void resizeEvent(QResizeEvent *); - void initializeGL(); - QVBoxLayout *splitter; - QListlink_zoom; - - bool m_block_zoom; - bool m_drag_foobar; - bool m_dragGraph; - double m_foobar_pos,m_foobar_moved; - - bool m_gradient_background; - QList layers; - QString m_title; - int m_scrX; - int m_scrY; - QPoint m_mouseLClick,m_mouseRClick,m_mouseRClick_start; - - int m_marginTop, m_marginRight, m_marginBottom, m_marginLeft; - - QRect m_mouseRBrect,m_mouseRBlast; - bool m_mouseLDown,m_mouseRDown,m_datarefresh; - - gLayer *foobar; - gLayer *xaxis; - gLayer *yaxis; - gLayer *gtitle; - - QDateTime ti; - gLayer *lastlayer; - -}; - -#endif // GRAPHWINDOW_H diff --git a/SleepLib/event.h b/SleepLib/event.h index 03087437..682aba62 100644 --- a/SleepLib/event.h +++ b/SleepLib/event.h @@ -26,12 +26,7 @@ public: void AddWaveform(qint64 start, unsigned char * data, int recs, qint64 duration); void AddWaveform(qint64 start, char * data, int recs, qint64 duration); - inline const int & count() { - if (m_count>m_data.size()) { - int i=0; - } - return m_count; - } + inline const int & count() { return m_count; } void setCount(int count) { m_count=count; } inline EventStoreType raw(int i) { return m_data[i]; } diff --git a/SleepyHeadQT.pro b/SleepyHeadQT.pro index ef0f6896..ef75ce89 100644 --- a/SleepyHeadQT.pro +++ b/SleepyHeadQT.pro @@ -40,8 +40,6 @@ SOURCES += main.cpp\ SleepLib/event.cpp \ SleepLib/session.cpp \ SleepLib/day.cpp \ - Graphs/graphwindow.cpp \ - Graphs/graphlayer.cpp \ Graphs/gLineChart.cpp \ Graphs/gLineOverlay.cpp \ Graphs/gFooBar.cpp \ @@ -49,12 +47,10 @@ SOURCES += main.cpp\ Graphs/gYAxis.cpp \ Graphs/gFlagsLine.cpp \ Graphs/glcommon.cpp \ - Graphs/gTitle.cpp \ Graphs/gBarChart.cpp \ Graphs/gSegmentChart.cpp \ Graphs/gSessionTime.cpp \ qextserialport/qextserialport.cpp \ - Graphs/gSplitter.cpp \ preferencesdialog.cpp \ Graphs/gGraphView.cpp \ Graphs/gStatsLine.cpp @@ -89,8 +85,6 @@ HEADERS += \ SleepLib/machine_common.h \ SleepLib/session.h \ SleepLib/day.h \ - Graphs/graphwindow.h \ - Graphs/graphlayer.h \ Graphs/gLineChart.h \ Graphs/gLineOverlay.h \ Graphs/gFooBar.h \ @@ -98,7 +92,6 @@ HEADERS += \ Graphs/gYAxis.h \ Graphs/gFlagsLine.h \ Graphs/glcommon.h \ - Graphs/gTitle.h \ Graphs/gBarChart.h \ Graphs/gSegmentChart.h\ Graphs/gSessionTime.h \ @@ -107,7 +100,6 @@ HEADERS += \ qextserialport/qextserialport_global.h \ qextserialport/qextserialport.h \ qextserialport/qextserialenumerator.h \ - Graphs/gSplitter.h \ preferencesdialog.h \ Graphs/gGraphView.h \ Graphs/gStatsLine.h diff --git a/daily.cpp b/daily.cpp index 05a0b0b0..e733c536 100644 --- a/daily.cpp +++ b/daily.cpp @@ -59,7 +59,7 @@ Daily::Daily(QWidget *parent,gGraphView * shared, MainWindow *mw) ui->graphMainArea->setAutoFillBackground(false); - GraphView=new gGraphView(ui->graphMainArea); + GraphView=new gGraphView(ui->graphMainArea,shared); GraphView->setSizePolicy(QSizePolicy::Expanding,QSizePolicy::Expanding); scrollbar=new MyScrollBar(ui->graphMainArea); @@ -574,12 +574,6 @@ Daily::~Daily() delete ui; } -void Daily::resizeEvent (QResizeEvent * event) -{ - //const QSize &size=event->size(); - // splitter->setMinimumWidth(size.width()-280); -} - void Daily::ReloadGraphs() { QDate d=profile->LastDay(); @@ -757,8 +751,8 @@ void Daily::Load(QDate date) "" "\n"; QString tmp; - const int gwwidth=240; - const int gwheight=100; + //const int gwwidth=240; + //const int gwheight=100; UpdateOXIGraphs(oxi); UpdateCPAPGraphs(cpap); UpdateEventsTree(ui->treeWidget,cpap); @@ -781,7 +775,7 @@ void Daily::Load(QDate date) //RedrawGraphs(); QString epr,modestr; - float iap90,eap90; + //float iap90,eap90; CPAPMode mode=MODE_UNKNOWN; PRTypes pr; QString a; @@ -1116,6 +1110,7 @@ Session * Daily::GetJournalSession(QDate date) // Get the first journal session } void Daily::on_EnergySlider_sliderMoved(int position) { + position=position; //Session *s=GetJournalSession(previous_date); //if (!s) // s=CreateJournalSession(previous_date); diff --git a/daily.h b/daily.h index 34917cfe..e64c523c 100644 --- a/daily.h +++ b/daily.h @@ -12,6 +12,7 @@ #include #include #include +#include #include #include #include @@ -58,7 +59,6 @@ private slots: void on_JournalNotesUnderline_clicked(); void ShowHideGraphs(); protected: - virtual void resizeEvent (QResizeEvent * event); private: Session * CreateJournalSession(QDate date); diff --git a/oximetry.cpp b/oximetry.cpp index 336e2f99..b2381c94 100644 --- a/oximetry.cpp +++ b/oximetry.cpp @@ -275,7 +275,7 @@ void Oximetry::on_RunButton_toggled(bool checked) //CONTROL->ResetBounds(); - qint64 d=session->length(); + // qint64 d=session->length(); // if (d<=30000) // return; if (ev_pulse->count()>1 && (ev_spo2->count()>1)) @@ -437,8 +437,6 @@ void Oximetry::onReadyRead() port->read(bytes.data(), bytes.size()); int i=0; - bool redraw_pulse,redraw_spo2; - redraw_pulse=redraw_spo2=false; while (icount()<=2) || (ev_pulse->count()<=2) || (ev_spo2->count()<=2)) { GraphView->updateScale(); } - GraphView->updateGL(); // damn... - /*PLETHY->updateGL(); - if (redraw_pulse) - PULSE->updateGL(); - if (redraw_spo2) - SPO2->updateGL(); */ + GraphView->updateGL(); } void Oximetry::onDsrChanged(bool status) // Doesn't work for CMS50's diff --git a/oximetry.h b/oximetry.h index f10a9e54..5098e9f9 100644 --- a/oximetry.h +++ b/oximetry.h @@ -9,7 +9,7 @@ #include #include - +#include #include #include