From 3fbee264dd08392a8982e0f0411004cb258e50d8 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Tue, 13 Dec 2011 20:20:22 +1000 Subject: [PATCH] Windows compile fixes, windows layout fixes.. Report page count wrong, and was missing graphs --- Graphs/gGraphView.cpp | 15 ++++++++------- Graphs/gXAxis.cpp | 12 ++++++------ Graphs/gXAxis.h | 2 +- main.cpp | 5 +++++ mainwindow.cpp | 9 +++++++-- 5 files changed, 27 insertions(+), 16 deletions(-) diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 30c84cd5..7164e16a 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -98,13 +98,14 @@ void GetTextExtent(QString text, int & width, int & height, QFont *font) mut.lock(); #endif QFontMetrics fm(*font); - //QRect r=fm.tightBoundingRect(text); - width=fm.width(text); -#ifdef Q_WS_WIN32 - height=fm.ascent(); -#else - height=fm.xHeight()+2; // doesn't work properly on windows.. -#endif +//#ifdef Q_WS_WIN32 + QRect r=fm.tightBoundingRect(text); + width=r.width(); + height=r.height(); +//#else +// width=fm.width(text); +// height=fm.xHeight()+2; // doesn't work properly on windows.. +//#endif #ifdef ENABLE_THREADED_DRAWING mut.unlock(); #endif diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index d77b9e7f..11a55fee 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -77,17 +77,17 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) divmax=10; fitmode=0; } else if (xx>600000) { // Minutes - fd="00:00"; + fd="j0:00"; dividx=10; divmax=27; fitmode=1; } else if (xx>5000) { // Seconds - fd="00:00:00"; + fd="j0:00:00"; dividx=16; divmax=27; fitmode=2; } else { // Microseconds - fd="00:00:00:000"; + fd="j0:00:00:000"; dividx=28; divmax=divcnt; fitmode=3; @@ -157,9 +157,9 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) py=left+float(aligned_start-minx)*xmult; - int texttop=top+9.0*(y/7.0)+y; // 18*w.printScaleY(); - int mintop=top+4.0*(y/7.0); - int majtop=top+6.0*(y/7.0); + 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(); for (int i=0;isetValue(0); @@ -1002,8 +1006,9 @@ void MainWindow::PrintReport(gGraphView *gv,QString name, QDate date) if ((top+full_graph_height+normal_height) > printer_height) { top=0; gcnt=0; - if (page > pages) break; first=true; + if (page > pages) + break; if (!printer->newPage()) { qWarning("failed in flushing page to disk, disk full?"); break;