mirror of
https://gitlab.com/pholy/OSCAR-code.git
synced 2025-04-05 10:40:42 +00:00
WinXP+Intel GFX only works with slow QWidget, so lets have both
This commit is contained in:
parent
2dd2d952d1
commit
7a347f67fd
@ -233,8 +233,12 @@ gGraph *gGraphView::popGraph()
|
|||||||
}
|
}
|
||||||
|
|
||||||
gGraphView::gGraphView(QWidget *parent, gGraphView *shared)
|
gGraphView::gGraphView(QWidget *parent, gGraphView *shared)
|
||||||
: QGLWidget(QGLFormat(QGL::DoubleBuffer | QGL::DirectRendering | QGL::HasOverlay | QGL::Rgba),parent,shared),
|
#ifdef BROKEN_OPENGL_BUILD
|
||||||
m_offsetY(0), m_offsetX(0), m_scaleY(1.0), m_scrollbar(nullptr)
|
: QWidget(parent)
|
||||||
|
#else
|
||||||
|
: QGLWidget(QGLFormat(QGL::DoubleBuffer | QGL::DirectRendering | QGL::HasOverlay | QGL::Rgba),parent,shared),
|
||||||
|
#endif
|
||||||
|
m_offsetY(0), m_offsetX(0), m_scaleY(1.0), m_scrollbar(nullptr)
|
||||||
{
|
{
|
||||||
m_shared = shared;
|
m_shared = shared;
|
||||||
m_sizer_index = m_graph_index = 0;
|
m_sizer_index = m_graph_index = 0;
|
||||||
@ -272,7 +276,7 @@ gGraphView::gGraphView(QWidget *parent, gGraphView *shared)
|
|||||||
print_scaleY = print_scaleX = 1.0;
|
print_scaleY = print_scaleX = 1.0;
|
||||||
|
|
||||||
redrawtimer = new QTimer(this);
|
redrawtimer = new QTimer(this);
|
||||||
connect(redrawtimer, SIGNAL(timeout()), SLOT(updateGL()));
|
connect(redrawtimer, SIGNAL(timeout()), SLOT(redraw()));
|
||||||
|
|
||||||
m_fadingOut = false;
|
m_fadingOut = false;
|
||||||
m_fadingIn = false;
|
m_fadingIn = false;
|
||||||
@ -289,8 +293,10 @@ gGraphView::gGraphView(QWidget *parent, gGraphView *shared)
|
|||||||
m_dpr = 1;
|
m_dpr = 1;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
#ifndef BROKEN_OPENGL_BUILD
|
||||||
setAutoFillBackground(false);
|
setAutoFillBackground(false);
|
||||||
setAutoBufferSwap(false);
|
setAutoBufferSwap(false);
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
void gGraphView::closeEvent(QCloseEvent * event)
|
void gGraphView::closeEvent(QCloseEvent * event)
|
||||||
{
|
{
|
||||||
@ -309,6 +315,9 @@ void gGraphView::closeEvent(QCloseEvent * event)
|
|||||||
|
|
||||||
gGraphView::~gGraphView()
|
gGraphView::~gGraphView()
|
||||||
{
|
{
|
||||||
|
#ifndef BROKEN_OPENGL_BUILD
|
||||||
|
doneCurrent();
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef ENABLE_THREADED_DRAWING
|
#ifdef ENABLE_THREADED_DRAWING
|
||||||
|
|
||||||
@ -1735,7 +1744,7 @@ void gGraphView::keyPressEvent(QKeyEvent *event)
|
|||||||
m_offsetY -= PROFILE.appearance->graphHeight() * 3 * m_scaleY;
|
m_offsetY -= PROFILE.appearance->graphHeight() * 3 * m_scaleY;
|
||||||
m_scrollbar->setValue(m_offsetY);
|
m_scrollbar->setValue(m_offsetY);
|
||||||
m_offsetY = m_scrollbar->value();
|
m_offsetY = m_scrollbar->value();
|
||||||
updateGL();
|
redraw();
|
||||||
return;
|
return;
|
||||||
} else if (event->key() == Qt::Key_PageDown) {
|
} else if (event->key() == Qt::Key_PageDown) {
|
||||||
m_offsetY += PROFILE.appearance->graphHeight() * 3 * m_scaleY; //PROFILE.appearance->graphHeight();
|
m_offsetY += PROFILE.appearance->graphHeight() * 3 * m_scaleY; //PROFILE.appearance->graphHeight();
|
||||||
@ -1744,7 +1753,7 @@ void gGraphView::keyPressEvent(QKeyEvent *event)
|
|||||||
|
|
||||||
m_scrollbar->setValue(m_offsetY);
|
m_scrollbar->setValue(m_offsetY);
|
||||||
m_offsetY = m_scrollbar->value();
|
m_offsetY = m_scrollbar->value();
|
||||||
updateGL();
|
redraw();
|
||||||
return;
|
return;
|
||||||
// redraw();
|
// redraw();
|
||||||
}
|
}
|
||||||
@ -2010,7 +2019,9 @@ int gGraphView::visibleGraphs()
|
|||||||
|
|
||||||
void gGraphView::redraw()
|
void gGraphView::redraw()
|
||||||
{
|
{
|
||||||
if (!m_inAnimation) {
|
#ifdef BROKEN_OPENGL_BUILD
|
||||||
updateGL();
|
repaint();
|
||||||
}
|
#else
|
||||||
|
updateGL();
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
@ -21,7 +21,10 @@
|
|||||||
#include <QPixmap>
|
#include <QPixmap>
|
||||||
#include <QRect>
|
#include <QRect>
|
||||||
#include <QPixmapCache>
|
#include <QPixmapCache>
|
||||||
|
|
||||||
|
#ifdef BROKEN_OPENGL_BUILD
|
||||||
#include <QGLWidget>
|
#include <QGLWidget>
|
||||||
|
#endif
|
||||||
|
|
||||||
#include <Graphs/gGraph.h>
|
#include <Graphs/gGraph.h>
|
||||||
#include <Graphs/glcommon.h>
|
#include <Graphs/glcommon.h>
|
||||||
@ -160,7 +163,12 @@ class gToolTip : public QObject
|
|||||||
It led to quite a performance increase over the old Qt method.
|
It led to quite a performance increase over the old Qt method.
|
||||||
|
|
||||||
*/
|
*/
|
||||||
class gGraphView : public QGLWidget
|
class gGraphView
|
||||||
|
#ifdef BROKEN_OPENGL_BUILD
|
||||||
|
:public QWidget
|
||||||
|
#else
|
||||||
|
:public QGLWidget
|
||||||
|
#endif
|
||||||
{
|
{
|
||||||
Q_OBJECT
|
Q_OBJECT
|
||||||
public:
|
public:
|
||||||
@ -234,9 +242,6 @@ class gGraphView : public QGLWidget
|
|||||||
//! \brief Set a redraw timer for ms milliseconds, clearing any previous redraw timer.
|
//! \brief Set a redraw timer for ms milliseconds, clearing any previous redraw timer.
|
||||||
void timedRedraw(int ms);
|
void timedRedraw(int ms);
|
||||||
|
|
||||||
//! \brief Call UpdateGL unless animation is in progress
|
|
||||||
void redraw();
|
|
||||||
|
|
||||||
gGraph *m_selected_graph;
|
gGraph *m_selected_graph;
|
||||||
gToolTip *m_tooltip;
|
gToolTip *m_tooltip;
|
||||||
QTimer *timer;
|
QTimer *timer;
|
||||||
@ -436,6 +441,10 @@ class gGraphView : public QGLWidget
|
|||||||
|
|
||||||
//! \brief Simply refreshes the GL view, called when timeout expires.
|
//! \brief Simply refreshes the GL view, called when timeout expires.
|
||||||
void refreshTimeout();
|
void refreshTimeout();
|
||||||
|
|
||||||
|
//! \brief Call UpdateGL unless animation is in progress
|
||||||
|
void redraw();
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
#endif // GGRAPHVIEW_H
|
#endif // GGRAPHVIEW_H
|
||||||
|
@ -4,7 +4,7 @@
|
|||||||
#
|
#
|
||||||
#-------------------------------------------------
|
#-------------------------------------------------
|
||||||
|
|
||||||
QT += core gui opengl network xml
|
QT += core gui network xml
|
||||||
|
|
||||||
greaterThan(QT_MAJOR_VERSION,4) {
|
greaterThan(QT_MAJOR_VERSION,4) {
|
||||||
QT += widgets webkitwidgets
|
QT += widgets webkitwidgets
|
||||||
@ -12,6 +12,17 @@ greaterThan(QT_MAJOR_VERSION,4) {
|
|||||||
QT += webkit
|
QT += webkit
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
#Windows XP with older intel cards needs the following variable defined
|
||||||
|
#It slows other platforms down way too much
|
||||||
|
DEFINES += BROKEN_OPENGL_BUILD
|
||||||
|
contains(DEFINES, BROKEN_OPENGL_BUILD) {
|
||||||
|
message("Building with QWidget gGraphView")
|
||||||
|
} else {
|
||||||
|
message("Building with QGLWidget gGraphView")
|
||||||
|
QT += opengl
|
||||||
|
}
|
||||||
|
|
||||||
#CONFIG += c++11
|
#CONFIG += c++11
|
||||||
CONFIG += rtti
|
CONFIG += rtti
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user