/* gXAxis Implementation Copyright (c)2011 Mark Watkins License: GPL */ #include #include #include "gXAxis.h" gXAxis::gXAxis(QColor col) :gLayer(EmptyChannel) { m_line_color=col; m_text_color=col; m_major_color=Qt::darkGray; m_minor_color=Qt::lightGray; m_show_major_lines=false; m_show_minor_lines=false; m_show_minor_ticks=true; m_show_major_ticks=true; } gXAxis::~gXAxis() { } void gXAxis::Plot(gGraphWindow & w,float scrx,float scry) { float px,py; //int start_px=w.GetLeftMargin(); //int start_py=w.GetTopMargin(); float width=scrx-(w.GetLeftMargin()+w.GetRightMargin()); // float height=scry-(w.GetTopMargin()+w.GetBottomMargin()); qint64 minx; qint64 maxx; if (w.BlockZoom()) { minx=w.rmin_x; maxx=w.rmax_x; } else { minx=w.min_x; maxx=w.max_x; } double xx=maxx-minx; if (xx<=0) return; double xmult=width/xx; QString fd; if (xx<86400000L) { fd="00:00:00:0000"; } else { fd="XXX"; } float x,y; GetTextExtent(fd,x,y); if (x<=0) { qWarning() << "gXAxis::Plot() x<=0"; return; } double max_ticks=(x+25.0)/width; // y+50 for rotated text double jj=1/max_ticks; double minor_tick=max_ticks*xx; double st2=minx; //double(int(frac*1440.0))/1440.0; double st,q; bool show_seconds=false; bool show_milliseconds=false; bool show_time=true; double min_tick; if (xx<86400000) { //double rounding[16]={12,24,48,72,96,144,288,720,1440,2880,5760,8640,17280,86400,172800,345600}; // time rounding double rounding[16]={7200000,3600000,1800000,1200000,900000,600000,300000,120000,60000,45000,30000,15000,10000,5000,2000,1000}; int ri; for (ri=0;ri<16;ri++) { st=round(st2*rounding[ri])/rounding[ri]; min_tick=round(minor_tick*rounding[ri])/rounding[ri]; q=xx/min_tick; // number of ticks that fits in range if (q<=jj) break; // compared to number of ticks that fit on screen. } if (min_tick<60000) show_seconds=true; if (min_tick<10000) show_milliseconds=true; if (min_tick<=1000) min_tick=1000; } else { // Day ticks.. show_time=false; st=st2; min_tick=1.0; double mtiks=(x+20.0)/width; double mt=mtiks*xx; min_tick=mt; //if (min_tick<1.0) min_tick=1.0; //if (min_tick>10) 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=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++]=py; vertarray[vertcnt++]=px; vertarray[vertcnt++]=py-6; if (vertcnt>=maxverts) { qWarning() << "gXAxis::Plot() maxverts exceeded trying to draw Major ticks"; return; } } 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)); } } // Draw the little ticks. if (vertcnt>=maxverts) { qWarning() << "maxverts exceeded in gYAxis::Plot()"; return; } glLineWidth(1); glColor3f(0,0,0); glEnableClientState(GL_VERTEX_ARRAY); 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); }