mirror of
https://github.com/jkriege2/JKQtPlotter.git
synced 2024-11-16 02:25:50 +08:00
21 lines
414 B
C++
21 lines
414 B
C++
#include <QApplication>
|
|
#include "testform.h"
|
|
|
|
int main(int argc, char* argv[])
|
|
{
|
|
|
|
#if QT_VERSION >= 0x050600
|
|
QApplication::setAttribute(Qt::AA_EnableHighDpiScaling); // DPI support
|
|
QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); //HiDPI pixmaps
|
|
#endif
|
|
QApplication app(argc, argv);
|
|
|
|
|
|
TestForm w;
|
|
w.show();
|
|
w.updateMath();
|
|
w.showMaximized();
|
|
|
|
return app.exec();
|
|
}
|