From 4dd741db6fda89810d7d37083c979c9b1ef23905 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sat, 6 Aug 2011 19:17:26 +1000 Subject: [PATCH] Minor Ticks for gXAxis --- Graphs/gXAxis.cpp | 210 +++++++++------------------------------------- 1 file changed, 41 insertions(+), 169 deletions(-) diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index 11173cd2..98aeb8cb 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -32,7 +32,7 @@ gXAxis::~gXAxis() } void gXAxis::Plot(gGraphWindow & w,float scrx,float scry) { - float px,py; + double px,py; int start_px=w.GetLeftMargin(); int start_py=w.GetBottomMargin(); @@ -53,25 +53,23 @@ void gXAxis::Plot(gGraphWindow & w,float scrx,float scry) qint64 xx=maxx-minx; if (xx<=0) return; - qint64 rxx=w.rmax_x-w.rmin_x; - QString fd,fmt; + QString fd,tmpstr; int divisors[]={86400000,3600000,2700000,1800000,1200000,900000,600000,300000,120000,60000,45000,30000,20000,15000,10000,5000,2000,1000,100,50}; int divcnt=sizeof(divisors)/sizeof(int); int divmax,dividx; int fitmode; if (xx>86400000L) { // Day fd="00 MMM"; - fmt="dd MMM"; dividx=0; divmax=1; fitmode=0; - } else if (xx>60000) { // Minutes + } else if (xx>600000) { // Minutes fd="00:00"; dividx=1; divmax=10; fitmode=1; - } else if (xx>5000) { // Seconds + } else if (xx>60000) { // Seconds fd="00:00:00"; dividx=9; divmax=16; @@ -107,48 +105,48 @@ void gXAxis::Plot(gGraphWindow & w,float scrx,float scry) } } if (fit_ticks==0) { - qDebug() << "FitTicks==0!"; + qDebug() << "gXAxis::Plot() FitTicks==0!"; return; } - if (div<0) { - qDebug() << "div<0"; + if ((div<0) || (div>divcnt)) { + qDebug() << "gXAxis::Plot() div out of bounds"; return; } qint64 step=divisors[div]; - qint64 zqvx=minx-w.rmin_x; // Amount of time before minx - qint64 zz=zqvx/step; // Number of ticks that fit up to minx - - //Align left minimum to divisor + //Align left minimum to divisor by losing precision qint64 aligned_start=minx/step; aligned_start*=step; - /*qint64 rm=w.rmin_x % step; // Offset from rminx of an aligned time - rm=step-rm; - rm+=w.rmin_x; - //qint64 rd=w.rmin_x / divisors[div]; - //rd*=divisors[div]; - qint64 aligned_start=(zz*step)+rm; // First location of aligned point. -*/ + qint32 vertcnt=0; + GLshort * vertarray=vertex_array[0]; + if (vertarray==NULL) { + qWarning() << "VertArray==NULL"; + return; + } while (aligned_start10) min_tick=10; - } - if (min_tick<=0) { - qWarning() << "gXAxis::Plot() min_tick<=0 :("; - return; - } - - double st3=st; - //while (st3>minx) { - // st3-=min_tick/10.0; - //} - //st3+=min_tick/10.0; - - py=w.GetBottomMargin(); - - qint32 vertcnt=0; - GLshort * vertarray=vertex_array[0]; - if (vertarray==NULL) { - qWarning() << "VertArray==NULL"; - return; - } - - if (m_show_minor_ticks) { - for (double i=st3; i<=maxx; i+=min_tick/10.0) { - if (i=scrx-w.GetRightMargin()) break; vertarray[vertcnt++]=py; - vertarray[vertcnt++]=px; - vertarray[vertcnt++]=py-4; - if (vertcnt>=maxverts) { - qWarning() << "gXAxis::Plot() maxverts exceeded trying to draw minor ticks"; - return; - } - } - } - - - //while (st=st && i<=maxx) && (m_show_major_ticks)) { - vertarray[vertcnt++]=px; + vertarray[vertcnt++]=start_py; vertarray[vertcnt++]=py; - vertarray[vertcnt++]=px; - vertarray[vertcnt++]=py-6; + vertarray[vertcnt++]=start_py-4; if (vertcnt>=maxverts) { - qWarning() << "gXAxis::Plot() maxverts exceeded trying to draw Major ticks"; - return; + break; } } - GetTextExtent(fd,x,y); - if (!show_time) { - DrawText(w,fd, px+y, scry-(py-(x/2)-8), 90.0); - } else { - DrawText(w,fd, px-(x/2), scry-(py-8-y)); + if (vertcnt>=maxverts) { + qWarning() << "maxverts exceeded in gXAxis::Plot()"; + break; } - - } - // Draw the little ticks. - if (vertcnt>=maxverts) { - qWarning() << "maxverts exceeded in gYAxis::Plot()"; - return; } - glLineWidth(1); - glColor3f(0,0,0); glEnableClientState(GL_VERTEX_ARRAY); + glLineWidth(1); + 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 glDisable(GL_SCISSOR_TEST); -*/ }