2011-08-02 04:20:26 +00:00
|
|
|
/*
|
2011-06-26 08:30:44 +00:00
|
|
|
gXAxis Implementation
|
|
|
|
Copyright (c)2011 Mark Watkins <jedimark@users.sourceforge.net>
|
|
|
|
License: GPL
|
2011-08-02 04:20:26 +00:00
|
|
|
*/
|
2011-06-26 08:30:44 +00:00
|
|
|
|
|
|
|
#include <math.h>
|
2011-07-19 15:31:51 +00:00
|
|
|
#include <QDebug>
|
2011-06-26 08:30:44 +00:00
|
|
|
#include "gXAxis.h"
|
|
|
|
|
2011-09-04 13:48:45 +00:00
|
|
|
const quint64 divisors[]={
|
2011-09-28 11:46:32 +00:00
|
|
|
15552000000ULL, 7776000000ULL, 5184000000ULL, 2419200000ULL, 1814400000ULL, 1209600000L, 604800000L, 259200000L,
|
2011-09-04 13:48:45 +00:00
|
|
|
172800000L, 86400000,2880000,14400000,7200000,3600000,2700000,
|
|
|
|
1800000,1200000,900000,600000,300000,120000,60000,45000,30000,
|
|
|
|
20000,15000,10000,5000,2000,1000,100,50,10
|
|
|
|
};
|
2011-09-05 02:30:10 +00:00
|
|
|
const int divcnt=sizeof(divisors)/sizeof(quint64);
|
2011-08-06 10:45:00 +00:00
|
|
|
|
2011-08-26 08:18:14 +00:00
|
|
|
gXAxis::gXAxis(QColor col,bool fadeout)
|
2011-12-21 17:00:19 +00:00
|
|
|
:Layer(NoChannel)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2011-08-02 04:20:26 +00:00
|
|
|
m_line_color=col;
|
|
|
|
m_text_color=col;
|
|
|
|
m_major_color=Qt::darkGray;
|
|
|
|
m_minor_color=Qt::lightGray;
|
2011-06-26 08:30:44 +00:00
|
|
|
m_show_major_lines=false;
|
|
|
|
m_show_minor_lines=false;
|
|
|
|
m_show_minor_ticks=true;
|
|
|
|
m_show_major_ticks=true;
|
2011-09-03 01:24:11 +00:00
|
|
|
m_utcfix=false;
|
2011-08-26 08:18:14 +00:00
|
|
|
m_fadeout=fadeout;
|
2011-12-07 12:23:19 +00:00
|
|
|
// QDateTime d=QDateTime::currentDateTime();
|
|
|
|
// QTime t1=d.time();
|
|
|
|
// QTime t2=d.toUTC().time();
|
2011-09-17 16:09:53 +00:00
|
|
|
|
2011-12-07 12:23:19 +00:00
|
|
|
// tz_offset=t2.secsTo(t1);
|
|
|
|
// tz_hours=tz_offset/3600.0;
|
|
|
|
// tz_offset*=1000L;
|
2011-08-30 17:22:54 +00:00
|
|
|
|
2011-12-07 12:23:19 +00:00
|
|
|
tz_offset=timezoneOffset();
|
|
|
|
tz_hours=tz_offset/3600000.0;
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
gXAxis::~gXAxis()
|
|
|
|
{
|
|
|
|
}
|
2011-08-25 06:11:44 +00:00
|
|
|
void gXAxis::paint(gGraph & w,int left,int top, int width, int height)
|
2011-06-26 08:30:44 +00:00
|
|
|
{
|
2011-10-21 05:50:31 +00:00
|
|
|
Q_UNUSED(height)
|
2011-08-06 09:17:26 +00:00
|
|
|
double px,py;
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-08-25 06:11:44 +00:00
|
|
|
int start_px=left;
|
2011-08-31 07:40:13 +00:00
|
|
|
//int start_py=top;
|
2011-08-25 06:11:44 +00:00
|
|
|
//int width=scrx-(w.GetLeftMargin()+w.GetRightMargin());
|
2011-06-26 08:30:44 +00:00
|
|
|
// float height=scry-(w.GetTopMargin()+w.GetBottomMargin());
|
|
|
|
|
2011-08-05 15:01:17 +00:00
|
|
|
if (width<40)
|
|
|
|
return;
|
2011-07-27 09:21:53 +00:00
|
|
|
qint64 minx;
|
|
|
|
qint64 maxx;
|
2011-08-25 06:11:44 +00:00
|
|
|
if (w.blockZoom()) {
|
2011-06-26 08:30:44 +00:00
|
|
|
minx=w.rmin_x;
|
|
|
|
maxx=w.rmax_x;
|
|
|
|
} else {
|
|
|
|
minx=w.min_x;
|
|
|
|
maxx=w.max_x;
|
|
|
|
}
|
2011-08-05 15:01:17 +00:00
|
|
|
qint64 xx=maxx-minx;
|
2011-06-26 08:30:44 +00:00
|
|
|
if (xx<=0) return;
|
|
|
|
|
2011-08-06 10:45:00 +00:00
|
|
|
//Most of this could be precalculated when min/max is set..
|
2011-08-06 09:17:26 +00:00
|
|
|
QString fd,tmpstr;
|
2011-08-05 15:01:17 +00:00
|
|
|
int divmax,dividx;
|
|
|
|
int fitmode;
|
2011-09-03 01:24:11 +00:00
|
|
|
if (xx>=86400000L) { // Day
|
2011-09-13 05:05:39 +00:00
|
|
|
fd="Mjj 00";
|
2011-09-02 05:13:07 +00:00
|
|
|
dividx=0;
|
2011-09-05 11:23:35 +00:00
|
|
|
divmax=10;
|
2011-08-05 15:01:17 +00:00
|
|
|
fitmode=0;
|
2011-08-06 09:17:26 +00:00
|
|
|
} else if (xx>600000) { // Minutes
|
2011-12-19 15:33:01 +00:00
|
|
|
fd=" j0:00";
|
2011-09-05 11:23:35 +00:00
|
|
|
dividx=10;
|
|
|
|
divmax=27;
|
2011-08-05 15:01:17 +00:00
|
|
|
fitmode=1;
|
2011-08-06 10:45:00 +00:00
|
|
|
} else if (xx>5000) { // Seconds
|
2011-12-19 15:33:01 +00:00
|
|
|
fd=" j0:00:00";
|
2011-09-05 11:23:35 +00:00
|
|
|
dividx=16;
|
|
|
|
divmax=27;
|
2011-08-05 15:01:17 +00:00
|
|
|
fitmode=2;
|
|
|
|
} else { // Microseconds
|
2011-12-13 10:20:22 +00:00
|
|
|
fd="j0:00:00:000";
|
2011-09-05 11:23:35 +00:00
|
|
|
dividx=28;
|
|
|
|
divmax=divcnt;
|
2011-08-05 15:01:17 +00:00
|
|
|
fitmode=3;
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
2011-09-05 02:30:10 +00:00
|
|
|
//if (divmax>divcnt) divmax=divcnt;
|
2011-08-05 15:01:17 +00:00
|
|
|
|
2011-08-31 05:24:48 +00:00
|
|
|
int x,y;
|
2011-06-26 08:30:44 +00:00
|
|
|
GetTextExtent(fd,x,y);
|
2011-08-05 15:01:17 +00:00
|
|
|
|
2011-08-06 10:45:00 +00:00
|
|
|
if (x<=0) {
|
|
|
|
qWarning() << "gXAxis::Plot() x<=0 font size bug";
|
2011-07-19 15:31:51 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
|
2011-08-06 10:45:00 +00:00
|
|
|
int max_ticks=width/(x+15); // Max number of ticks that will fit
|
2011-08-05 15:01:17 +00:00
|
|
|
|
2011-08-06 08:34:24 +00:00
|
|
|
int fit_ticks=0;
|
2011-08-05 15:01:17 +00:00
|
|
|
int div=-1;
|
2011-08-06 08:34:24 +00:00
|
|
|
qint64 closest=0,tmp,tmpft;
|
2011-08-05 15:01:17 +00:00
|
|
|
for (int i=dividx;i<divmax;i++){
|
2011-08-06 08:34:24 +00:00
|
|
|
tmpft=xx/divisors[i];
|
2011-08-05 15:01:17 +00:00
|
|
|
tmp=max_ticks-tmpft;
|
|
|
|
if (tmp<0) continue;
|
|
|
|
if (tmpft>closest) { // Find the closest scale to the number
|
|
|
|
closest=tmpft; // that will fit
|
|
|
|
div=i;
|
|
|
|
fit_ticks=tmpft;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (fit_ticks==0) {
|
2011-08-07 02:33:11 +00:00
|
|
|
qDebug() << "gXAxis::Plot() Couldn't fit ticks.. Too short?" << minx << maxx << xx;
|
2011-08-05 15:01:17 +00:00
|
|
|
return;
|
|
|
|
}
|
2011-08-06 09:17:26 +00:00
|
|
|
if ((div<0) || (div>divcnt)) {
|
|
|
|
qDebug() << "gXAxis::Plot() div out of bounds";
|
2011-08-05 15:01:17 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
qint64 step=divisors[div];
|
|
|
|
|
2011-08-06 09:17:26 +00:00
|
|
|
//Align left minimum to divisor by losing precision
|
2011-08-06 08:34:24 +00:00
|
|
|
qint64 aligned_start=minx/step;
|
|
|
|
aligned_start*=step;
|
|
|
|
|
2011-08-05 15:01:17 +00:00
|
|
|
while (aligned_start<minx) {
|
|
|
|
aligned_start+=step;
|
|
|
|
}
|
2011-08-06 08:34:24 +00:00
|
|
|
|
2011-09-01 07:12:25 +00:00
|
|
|
QColor linecol=Qt::black;
|
2011-09-28 11:46:32 +00:00
|
|
|
GLShortBuffer *lines=w.backlines();
|
2011-09-01 07:12:25 +00:00
|
|
|
|
2011-09-13 02:51:50 +00:00
|
|
|
|
2011-10-21 05:50:31 +00:00
|
|
|
//int utcoff=m_utcfix ? tz_hours : 0;
|
2011-09-13 02:51:50 +00:00
|
|
|
|
2011-09-17 16:09:53 +00:00
|
|
|
//utcoff=0;
|
2011-09-13 02:51:50 +00:00
|
|
|
int num_minor_ticks;
|
|
|
|
|
|
|
|
if (step>=86400000) {
|
|
|
|
qint64 i=step/86400000L; // number of days
|
|
|
|
if (i>14) i/=2;
|
|
|
|
if (i<0) i=1;
|
|
|
|
num_minor_ticks=i;
|
|
|
|
} else num_minor_ticks=10;
|
|
|
|
|
|
|
|
float xmult=double(width)/double(xx);
|
|
|
|
float step_pixels=double(step/float(num_minor_ticks))*xmult;
|
|
|
|
|
|
|
|
py=left+float(aligned_start-minx)*xmult;
|
|
|
|
|
|
|
|
|
2011-12-13 10:20:22 +00:00
|
|
|
int mintop=top+4.0*(float(y)/10.0);
|
|
|
|
int majtop=top+6.0*(float(y)/10.0);
|
|
|
|
int texttop=majtop+y; // 18*w.printScaleY();
|
2011-09-13 02:51:50 +00:00
|
|
|
for (int i=0;i<num_minor_ticks;i++) {
|
2011-08-06 09:17:26 +00:00
|
|
|
py-=step_pixels;
|
|
|
|
if (py<start_px) continue;
|
2011-12-06 14:39:14 +00:00
|
|
|
lines->add(py,top,py,mintop,linecol);
|
2011-08-06 09:17:26 +00:00
|
|
|
}
|
2011-09-01 07:12:25 +00:00
|
|
|
|
2011-08-05 15:01:17 +00:00
|
|
|
for (qint64 i=aligned_start;i<maxx;i+=step) {
|
2011-09-13 03:38:02 +00:00
|
|
|
px=(i-minx)*xmult;
|
2011-08-25 06:11:44 +00:00
|
|
|
px+=left;
|
2011-12-06 14:39:14 +00:00
|
|
|
lines->add(px,top,px,majtop,linecol);
|
2011-09-17 16:09:53 +00:00
|
|
|
qint64 j=i;
|
|
|
|
if (!m_utcfix) j+=tz_offset;
|
2011-08-07 02:21:26 +00:00
|
|
|
int ms=j % 1000;
|
|
|
|
int m=(j/60000L) % 60L;
|
2011-09-18 03:47:53 +00:00
|
|
|
int h=(j/3600000L) % 24L;
|
2011-08-07 02:21:26 +00:00
|
|
|
int s=(j/1000L) % 60L;
|
2011-09-03 02:34:42 +00:00
|
|
|
static QString dow[]={"Sun","Mon","Tue","Wed","Thu","Fri","Sat"};
|
2011-10-21 05:50:31 +00:00
|
|
|
//int d=(j/86400000) % 7;
|
2011-08-07 02:23:54 +00:00
|
|
|
|
2011-08-05 15:01:17 +00:00
|
|
|
if (fitmode==0) {
|
2011-09-02 05:13:07 +00:00
|
|
|
int d=(j/1000);
|
2011-09-18 04:39:50 +00:00
|
|
|
QDateTime dt=QDateTime::fromTime_t(d).toUTC();
|
2011-09-18 05:53:22 +00:00
|
|
|
tmpstr=dt.toString("MMM dd");
|
2011-09-02 05:13:07 +00:00
|
|
|
//} else if (fitmode==0) {
|
|
|
|
// tmpstr=QString("%1 %2:%3").arg(dow[d]).arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0'));
|
2011-08-07 02:21:26 +00:00
|
|
|
} else if (fitmode==1) { // minute
|
|
|
|
tmpstr=QString("%1:%2").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0'));
|
|
|
|
} else if (fitmode==2) { // second
|
|
|
|
tmpstr=QString("%1:%2:%3").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')).arg(s,2,10,QChar('0'));
|
|
|
|
} else if (fitmode==3) { // milli
|
|
|
|
tmpstr=QString("%1:%2:%3:%4").arg(h,2,10,QChar('0')).arg(m,2,10,QChar('0')).arg(s,2,10,QChar('0')).arg(ms,3,10,QChar('0'));
|
2011-08-05 15:01:17 +00:00
|
|
|
}
|
2011-08-06 12:46:27 +00:00
|
|
|
|
2011-09-13 02:54:19 +00:00
|
|
|
int tx=px-x/2.0;
|
2011-10-30 07:08:18 +00:00
|
|
|
|
|
|
|
// Massive bottle neck..
|
|
|
|
//GetTextExtent(tmpstr,x,y); // this only really needs running once :(
|
|
|
|
|
2011-09-13 02:54:19 +00:00
|
|
|
if (m_utcfix)
|
|
|
|
tx+=step_pixels/2.0;
|
2011-09-13 03:44:42 +00:00
|
|
|
if ((tx+x)<(left+width))
|
2011-12-06 14:39:14 +00:00
|
|
|
w.renderText(tmpstr,tx,texttop);
|
2011-08-06 09:17:26 +00:00
|
|
|
py=px;
|
2011-09-13 02:51:50 +00:00
|
|
|
for (int j=1;j<num_minor_ticks;j++) {
|
2011-08-06 09:17:26 +00:00
|
|
|
py+=step_pixels;
|
2011-08-25 06:11:44 +00:00
|
|
|
if (py>=left+width) break;
|
2011-12-06 14:39:14 +00:00
|
|
|
lines->add(py,top,py,mintop,linecol);
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
|
2011-09-01 07:12:25 +00:00
|
|
|
if (lines->full()) {
|
2011-08-06 09:17:26 +00:00
|
|
|
qWarning() << "maxverts exceeded in gXAxis::Plot()";
|
|
|
|
break;
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
2011-07-19 15:31:51 +00:00
|
|
|
}
|
2011-06-26 08:30:44 +00:00
|
|
|
}
|
|
|
|
|