diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index cbcb291b..35c75068 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -74,13 +74,17 @@ void DoneGraphs() void GetTextExtent(QString text, int & width, int & height, QFont *font) { +#ifdef ENABLE_THREADED_DRAWING static QMutex mut; mut.lock(); +#endif QFontMetrics fm(*font); //QRect r=fm.tightBoundingRect(text); width=fm.width(text); //fm.width(text); height=fm.xHeight()+2; //fm.ascent(); +#ifdef ENABLE_THREADED_DRAWING mut.unlock(); +#endif } GLBuffer::GLBuffer(int max,int type) @@ -101,10 +105,14 @@ GLBuffer::~GLBuffer() void GLShortBuffer::add(GLshort x, GLshort y) { if (m_cnt0) { - bool antialias=m_forceantialias || (PROFILE["UseAntiAliasing"].toBool() && m_antialias); + bool antialias=m_forceantialias || (PROFILE.ExistsAndTrue("UseAntiAliasing") && m_antialias); float size=m_size; if (antialias) { glEnable(GL_BLEND); @@ -306,14 +334,18 @@ GLFloatBuffer::~GLFloatBuffer() void GLFloatBuffer::add(GLfloat x, GLfloat y,QColor & color) { if (m_cntm_lastbounds=QRect(left,top,width,height); +#ifdef ENABLED_THREADED_DRAWING dl_mutex.lock(); +#endif m_drawlist.push_back(g); +#ifdef ENABLED_THREADED_DRAWING dl_mutex.unlock(); +#endif } void gGraphView::TrashGraphs() { @@ -1038,12 +1092,16 @@ void gGraphView::TrashGraphs() gGraph * gGraphView::popGraph() { gGraph * g; +#ifdef ENABLED_THREADED_DRAWING dl_mutex.lock(); +#endif if (!m_drawlist.isEmpty()) { g=m_drawlist.at(0); m_drawlist.pop_front(); } else g=NULL; +#ifdef ENABLED_THREADED_DRAWING dl_mutex.unlock(); +#endif return g; } @@ -1589,10 +1647,11 @@ gGraphView::gGraphView(QWidget *parent, gGraphView * shared) : this->setMouseTracking(true); m_emptytext=QObject::tr("No Data"); InitGraphs(); +#ifdef ENABLE_THREADED_DRAWING m_idealthreads=QThread::idealThreadCount(); if (m_idealthreads<=0) m_idealthreads=1; masterlock=new QSemaphore(m_idealthreads); - +#endif m_tooltip=new gToolTip(this); /*for (int i=0;idevice(); - QPixmap *pixmap=dynamic_cast(pd); -#endif */ +//#define USE_RENDERTEXT QPainter painter; - +#ifndef USE_RENDERTEXT + painter.begin(this); +#endif for (int i=0;i=textque_max) { DrawTextQue(); } TextQue & q=m_textque[m_textque_items++]; +#ifdef ENABLED_THREADED_DRAWING text_mutex.unlock(); +#endif q.text=text; q.x=x; q.y=y; @@ -1919,6 +1995,7 @@ void gGraphView::paintGL() //bool threaded; // Tempory hack using this pref.. +//#ifdef ENABLED_THREADED_DRAWING /*if ((*profile)["EnableMultithreading"].toBool()) { // && (m_idealthreads>1)) { threaded=true; for (int i=0;istart(); } } else threaded=false; */ + //#endif //threaded=false; for (int i=0;iisEmpty() || !m_graphs[i]->visible()) continue; @@ -1959,7 +2037,7 @@ void gGraphView::paintGL() //int thr=m_idealthreads; QTime time; time.start(); - /*if (threaded) { +#ifdef ENABLED_THREADED_DRAWING for (int i=0;iacquire(1); m_threads[i]->mutex.unlock(); @@ -1970,14 +2048,17 @@ void gGraphView::paintGL() masterlock->acquire(m_idealthreads); masterlock->release(m_idealthreads); - } else { // just do it here */ + } else { // just do it here +#endif int s=m_drawlist.size(); for (int i=0;ipaint(g->m_lastbounds.x(), g->m_lastbounds.y(), g->m_lastbounds.width(), g->m_lastbounds.height()); } - //} +#ifdef ENABLED_THREADED_DRAWING + } +#endif int elapsed=time.elapsed(); QColor col=Qt::black; if (!numgraphs) { diff --git a/Graphs/gGraphView.h b/Graphs/gGraphView.h index 8190dc06..34670c1e 100644 --- a/Graphs/gGraphView.h +++ b/Graphs/gGraphView.h @@ -415,20 +415,23 @@ public: void updateScale(); // update scale & Scrollbar void resetLayout(); void setEmptyText(QString s) { m_emptytext=s; } +#ifdef ENABLE_THREADED_DRAWING QMutex text_mutex; QMutex gl_mutex; - void setDay(Day * day); QSemaphore * masterlock; bool useThreads() { return m_idealthreads>1; } + QVector m_threads; + int m_idealthreads; + QMutex dl_mutex; +#endif + void setDay(Day * day); GLShortBuffer * lines, * backlines, *quads; void TrashGraphs(); gGraph * popGraph(); - QVector m_threads; void hideSplitter() { m_showsplitter=false; } void showSplitter() { m_showsplitter=true; } protected: - int m_idealthreads; Day * m_day; float totalHeight(); float scaleHeight(); @@ -450,7 +453,6 @@ protected: virtual void keyPressEvent(QKeyEvent * event); void queGraph(gGraph *,int originX, int originY, int width, int height); - QMutex dl_mutex; QList m_drawlist; diff --git a/Graphs/gXAxis.cpp b/Graphs/gXAxis.cpp index b309983d..3ed18197 100644 --- a/Graphs/gXAxis.cpp +++ b/Graphs/gXAxis.cpp @@ -189,7 +189,10 @@ void gXAxis::paint(gGraph & w,int left,int top, int width, int height) } int tx=px-x/2.0; - GetTextExtent(tmpstr,x,y); // this only really needs running once :( + + // Massive bottle neck.. + //GetTextExtent(tmpstr,x,y); // this only really needs running once :( + if (m_utcfix) tx+=step_pixels/2.0; if ((tx+x)<(left+width)) diff --git a/Graphs/gYAxis.cpp b/Graphs/gYAxis.cpp index 9516cbef..7a94a164 100644 --- a/Graphs/gYAxis.cpp +++ b/Graphs/gYAxis.cpp @@ -171,7 +171,8 @@ void gYAxis::paint(gGraph & w,int left,int top, int width, int height) fd=QString().sprintf("%.1f",i*m_yaxis_scale); } - GetTextExtent(fd,x,y); + GetTextExtent(fd,x,y); // performance bottleneck.. + if (x>labelW) labelW=x; h=top+height-ty; w.renderText(fd,left+width-8-x,(h+(y/2.0)),0,m_text_color); diff --git a/daily.cpp b/daily.cpp index a04cafff..665dd456 100644 --- a/daily.cpp +++ b/daily.cpp @@ -860,7 +860,6 @@ void Daily::on_prevDayButton_clicked() LoadDate(previous_date.addDays(-1)); } else { QDate d=previous_date; - bool found=false; for (int i=0;i<90;i++) { d=d.addDays(-1); if (PROFILE.GetDay(d)) {