From afb8065ca31aa98372eb81c74635e73285abeaaf Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Mon, 11 Jul 2011 18:56:25 +1000 Subject: [PATCH] Vertical Text fix --- Graphs/gBarChart.cpp | 4 ++-- Graphs/gCandleStick.cpp | 6 +++--- Graphs/gFlagsLine.cpp | 4 +--- Graphs/gLineChart.cpp | 2 +- Graphs/gLineOverlay.cpp | 2 +- Graphs/gTitle.cpp | 2 +- Graphs/gXAxis.cpp | 4 ++-- Graphs/gYAxis.cpp | 2 +- Graphs/glcommon.cpp | 9 ++++++--- Graphs/glcommon.h | 2 +- 10 files changed, 19 insertions(+), 18 deletions(-) diff --git a/Graphs/gBarChart.cpp b/Graphs/gBarChart.cpp index 06a2dd44..aef14383 100644 --- a/Graphs/gBarChart.cpp +++ b/Graphs/gBarChart.cpp @@ -152,9 +152,9 @@ void gBarChart::Plot(gGraphWindow & w,float scrx,float scry) GetTextExtent(str, textX, textY); float j=t1+((t2/2.0)+(textY/2.0)+5); if (m_orientation==Qt::Vertical) { - DrawText(w,str,start_px-textX-8,scry-j); + DrawText(str,start_px-textX-8,scry-j); } else { - DrawText(w,str,j,scry-(start_py-3-(textX/2)),90); + DrawText(str,j,scry-(start_py-3-(textX/2)),90); } } } diff --git a/Graphs/gCandleStick.cpp b/Graphs/gCandleStick.cpp index d2ea453a..ecc76b30 100644 --- a/Graphs/gCandleStick.cpp +++ b/Graphs/gCandleStick.cpp @@ -106,10 +106,10 @@ void gCandleStick::Plot(gGraphWindow & w,float scrx,float scry) if (t2>x+5) { int j=t1+((t2/2.0)-(x/2.0)); if (m_orientation==Qt::Vertical) { - DrawText(w,str,start_px+barwidth+2+y,scry-j,270.0); + DrawText(str,start_px+barwidth+2+y,scry-j,270.0); } else { - w.renderText(j,float(scry)-(float(start_py)+(barwidth/2.0)-(y/2.0)),str); - //DrawText(w,str,j,scry-(start_py+(barwidth/2.0)-(y/2.0))); + //w.renderText(j,float(scry)-(float(start_py)+(barwidth/2.0)-(y/2.0)),str); + DrawText(str,j,float(scry)-(float(start_py)+(barwidth/2.0)-(y/2.0))); } } } // for (int i diff --git a/Graphs/gFlagsLine.cpp b/Graphs/gFlagsLine.cpp index 9b150f77..f8a20fe6 100644 --- a/Graphs/gFlagsLine.cpp +++ b/Graphs/gFlagsLine.cpp @@ -119,9 +119,7 @@ void gFlagsLine::Plot(gGraphWindow & w,float scrx,float scry) // Draw text label float x,y; GetTextExtent(label,x,y); - DrawText(w,label,start_px-x-10,(scry-line_top)-(line_h/2)+(y/2)); //(line_top-((line_h/2)-(y/2))+4)); - //glColor3ub(0,0,0); - //w.renderText(start_px-x-10,scry-(line_top+(line_h/2)-(y/2)+3),label); + DrawText(label,start_px-x-10,(scry-line_top)-(line_h/2)+(y/2)); float x1,x2; QColor & col=color[0]; diff --git a/Graphs/gLineChart.cpp b/Graphs/gLineChart.cpp index f0184b58..8b6c311a 100644 --- a/Graphs/gLineChart.cpp +++ b/Graphs/gLineChart.cpp @@ -73,7 +73,7 @@ void gLineChart::Plot(gGraphWindow & w,float scrx,float scry) //TextMarkup... GetTextExtent(msg,x,y,bigfont); //w.renderText(start_px+(width/2.0)-(x/2.0),start_py+(height/2.0)-(y/2.0),msg,*bigfont); - DrawText(w,msg,start_px+(width/2.0)-(x/2.0),scry-w.GetBottomMargin()-height/2.0+y/2.0,0,Qt::gray,bigfont);//-(y/2.0) + DrawText(msg,start_px+(width/2.0)-(x/2.0),scry-w.GetBottomMargin()-height/2.0+y/2.0,0,Qt::gray,bigfont);//-(y/2.0) } return; } diff --git a/Graphs/gLineOverlay.cpp b/Graphs/gLineOverlay.cpp index f3b568d4..eac5aec1 100644 --- a/Graphs/gLineOverlay.cpp +++ b/Graphs/gLineOverlay.cpp @@ -105,7 +105,7 @@ void gLineOverlayBar::Plot(gGraphWindow & w,float scrx,float scry) vertarray[vertcnt++]=bottom; if (xx<(1800.0/86400.0)) { GetTextExtent(label,x,y); - DrawText(w,label,x1-(x/2),scry-(start_py+height-30+y)); + DrawText(label,x1-(x/2),scry-(start_py+height-30+y)); //w.renderText(x1-(x/2),scry-(start_py+height-30+y),label); } } diff --git a/Graphs/gTitle.cpp b/Graphs/gTitle.cpp index 318e7d35..af653ebd 100644 --- a/Graphs/gTitle.cpp +++ b/Graphs/gTitle.cpp @@ -21,7 +21,7 @@ void gTitle::Plot(gGraphWindow & w,float scrx,float scry) GetTextExtent(m_title,width,height); int xp=(height/2)+20; //if (m_alignment==wxALIGN_RIGHT) xp=scrx-4-height; - DrawText(w,m_title,xp,scry-(w.GetBottomMargin()+((scry-w.GetBottomMargin())/2.0)),90.0,m_color,&m_font); + DrawText(m_title,xp,scry-(w.GetBottomMargin()+((scry-w.GetBottomMargin())/2.0)),90.0,m_color,&m_font); //DrawText(w,m_title,150,-40,45.0); //20+xp,scry-(w.GetBottomMargin()+((scry-w.GetBottomMargin())/2.0)+(height/2)),90.0,m_color,&m_font); diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index 6c61887d..9205f3ca 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -165,10 +165,10 @@ void gXAxis::Plot(gGraphWindow & w,float scrx,float scry) GetTextExtent(fd,x,y); //glColor3ub(0,0,0); if (!show_time) { - DrawText(w,fd, px+y, scry-(py-(x/2)-8), 90.0); + DrawText(fd, px+y, scry-(py-(x/2)-8), 90.0); //w.renderText(px-(y/2)+2, scry-(py-(x/2)-20), 90.0,fd); } else { - DrawText(w,fd, px-(x/2), scry-(py-8-y)); + DrawText(fd, px-(x/2), scry-(py-8-y)); //w.renderText(px-(x/2), scry-(py-(y/2)-20), fd); } diff --git a/Graphs/gYAxis.cpp b/Graphs/gYAxis.cpp index cb6cc130..a6edc8ae 100644 --- a/Graphs/gYAxis.cpp +++ b/Graphs/gYAxis.cpp @@ -94,7 +94,7 @@ void gYAxis::Plot(gGraphWindow &w,float scrx,float scry) GetTextExtent(fd,x,y); if (x>labelW) labelW=x; h=start_py+ty; - DrawText(w,fd,start_px-12-x,scry-(h-(y/2.0)),0); // + DrawText(fd,start_px-12-x,scry-(h-(y/2.0)),0); //glColor3ub(0,0,0); //w.renderText(start_px-15-x, scry-(h - (y / 2)),fd); diff --git a/Graphs/glcommon.cpp b/Graphs/glcommon.cpp index 990dfb70..614340af 100644 --- a/Graphs/glcommon.cpp +++ b/Graphs/glcommon.cpp @@ -83,6 +83,7 @@ inline void RDrawText(QPainter & painter, QString text, int x, int y, float ang painter.translate(floor(x),floor(y)); painter.rotate(-90); painter.drawText(floor(-w/2.0),floor(-h/2.0),text); + painter.rotate(+90); painter.translate(floor(-x),floor(-y)); } @@ -124,11 +125,13 @@ void DrawTextQueue(gGraphWindow & wid) glDisable(GL_DEPTH_TEST); } // I bet this slows things down craploads.. should probably skip the vector and use a preallocated textbuffer array. -void DrawText(gGraphWindow & wid, QString text, int x, int y, float angle, QColor color,QFont *font) +void DrawText(QString text, int x, int y, float angle, QColor color,QFont *font) { TextBuffer *b=new TextBuffer(text,x,y,angle,color,font); - if (!angle) TextQue.push_back(b); - else TextQueRot.push_back(b); + if (angle==90) + TextQueRot.push_back(b); + else + TextQue.push_back(b); } diff --git a/Graphs/glcommon.h b/Graphs/glcommon.h index 44ce45d0..852eb2be 100644 --- a/Graphs/glcommon.h +++ b/Graphs/glcommon.h @@ -26,7 +26,7 @@ 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=QColor("black"),QFont *font=defaultfont); +void DrawText(QString text, int x, int y, float angle=0, QColor color=QColor("black"),QFont *font=defaultfont); void DrawTextQueue(gGraphWindow & wid); void LinedRoundedRectangle(int x,int y,int w,int h,int radius,int lw,QColor color);