QT5 -- Add Qwt 6.1-multiaxes

This commit is contained in:
Mark Liversedge
2013-12-09 10:02:47 +00:00
parent 03d3afdf53
commit 5abf8776f1
492 changed files with 97336 additions and 0 deletions

View File

@@ -0,0 +1,30 @@
#include "mainwindow.h"
#include <qapplication.h>
#ifndef QWT_NO_OPENGL
#if QT_VERSION >= 0x040600 && QT_VERSION < 0x050000
#define USE_OPENGL 1
#endif
#endif
#if USE_OPENGL
#include <qgl.h>
#endif
int main( int argc, char **argv )
{
#if USE_OPENGL
// on my box QPaintEngine::OpenGL2 has serious problems, f.e:
// the lines of a simple drawRect are wrong.
QGL::setPreferredPaintEngine( QPaintEngine::OpenGL );
#endif
QApplication a( argc, argv );
MainWindow mainWindow;
mainWindow.resize( 600, 400 );
mainWindow.show();
return a.exec();
}