diff --git a/Graphs/gGraphView.cpp b/Graphs/gGraphView.cpp index 1041cc8f..6dcc2859 100644 --- a/Graphs/gGraphView.cpp +++ b/Graphs/gGraphView.cpp @@ -1927,7 +1927,33 @@ Layer * gGraph::getLineChart() return NULL; } -// QTBUG-24710 pixmaps might not be freeing properly.. +// Render all qued text via QPainter method +void gGraphView::DrawTextQue(QPainter &painter) +{ + int w,h; + for (int i=0;iisValid()) { @@ -1969,14 +2003,19 @@ QImage gGraphView::fboRenderPixmap(int w,int h) if (fbo->bind()) { initializeGL(); resizeGL(w,h); - paintGL(); - glFlush(); - //QImage img=grabFrameBuffer(true); - fbo->release(); + glClearColor(255,255,255,255); + glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT); - // Copy just the section of the image (remember openGL draws from the bottom up) + renderGraphs(); // render graphs sans text + glFlush(); + fbo->release(); pm=fbo->toImage().copy(0,max_fbo_height-h,w,h); doneCurrent(); + + QPainter painter(&pm); + DrawTextQue(painter); //Just use this on mac to + painter.end(); + } } else { delete fbo; @@ -2034,16 +2073,17 @@ QPixmap gGraph::renderPixmap(int w, int h, bool printing) sg->setScaleY(1.0); - //sg->makeCurrent(); + // pm=QPixmap::fromImage(sg->fboRenderPixmap(w,h)); + sg->makeCurrent(); // has to be current for fbo creation + #ifndef Q_OS_MAC // This doesn't work on Rich's Radeon boxen either // I'm suspiscious of this function on Radeon hardware. - pm=sg->renderPixmap(w,h,false); + // pm=sg->renderPixmap(w,h,false); #endif - if (pm.isNull()) { - pm=QPixmap::fromImage(sg->fboRenderPixmap(w,h)); - // this one gives nags - } else if (pm.isNull()) { // not sure if this will work with printing + pm=QPixmap::fromImage(sg->fboRenderPixmap(w,h)); + + if (pm.isNull()) { // not sure if this will work with printing qDebug() << "Had to use PixelBuffer for snapshots\n"; pm=QPixmap::fromImage(sg->pbRenderPixmap(w,h)); } @@ -2160,7 +2200,7 @@ void gGraph::roundY(EventDataType &miny, EventDataType &maxy) } gGraphView::gGraphView(QWidget *parent, gGraphView * shared) : - QGLWidget(QGLFormat(QGL::Rgba | QGL::DoubleBuffer),parent,shared), + QGLWidget(QGLFormat(QGL::Rgba | QGL::DoubleBuffer | QGL::NoOverlay),parent,shared), m_offsetY(0),m_offsetX(0),m_scaleY(1.0),m_scrollbar(NULL) { m_shared=shared; @@ -2388,10 +2428,11 @@ void gGraphView::DrawTextQue() if (pc) { pc->last_used=ti; + glEnable(GL_BLEND); glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA); - glEnable(GL_TEXTURE_2D); + //glEnable(GL_TEXTURE_2D); if (q.angle!=0) { glPushMatrix(); glTranslatef(q.x-pc->image.height()-(pc->image.height()/2),q.y+pc->image.width()/2 + pc->image.height()/2, 0); @@ -2405,7 +2446,7 @@ void gGraphView::DrawTextQue() // TODO: setup for rotation if angle specified. drawTexture(QPoint(q.x,q.y-pc->image.height()+4),pc->textureID); } - glDisable(GL_TEXTURE_2D); + // glDisable(GL_TEXTURE_2D); glDisable(GL_BLEND); } } else { @@ -2988,7 +3029,7 @@ bool gGraphView::renderGraphs() lines->draw(); // lines->setSize(linesize); - DrawTextQue(); + // DrawTextQue(); m_tooltip->paint(); //glDisable(GL_TEXTURE_2D); //glDisable(GL_DEPTH_TEST); @@ -3185,9 +3226,9 @@ void gGraphView::paintGL() // Then display the empty text message QColor col=Qt::black; AddTextQue(m_emptytext,(width()/2)-x/2,tp,0.0,col,bigfont); - DrawTextQue(); } + DrawTextQue(); } #ifdef DEBUG_EFFICIENCY diff --git a/Graphs/gGraphView.h b/Graphs/gGraphView.h index 86c43865..55eed20e 100644 --- a/Graphs/gGraphView.h +++ b/Graphs/gGraphView.h @@ -913,9 +913,13 @@ public: //! \brief Add the Text information to the Text Drawing Queue (called by gGraphs renderText method) void AddTextQue(QString & text, short x, short y, float angle=0.0, QColor color=Qt::black, QFont * font=defaultfont, bool antialias=true); - //! \brief Draw all Text in the text drawing queue, via QPainter + //! \brief Draw all Text in the text drawing queue void DrawTextQue(); + //! \brief Draw all text components using QPainter object painter + void DrawTextQue(QPainter &painter); + + //! \brief Returns number of graphs contained (whether they are visible or not) int size() { return m_graphs.size(); } diff --git a/main.cpp b/main.cpp index f4fc643e..ab8d9bb8 100644 --- a/main.cpp +++ b/main.cpp @@ -117,7 +117,7 @@ int main(int argc, char *argv[]) #endif #if QT_VERSION < QT_VERSION_CHECK(5,0,0) - QGL::setPreferredPaintEngine(QPaintEngine::OpenGL); + QGL::setPreferredPaintEngine(QPaintEngine::Blitter); #endif bool force_login_screen=false;