32 lines
786 B
C++
32 lines
786 B
C++
|
|
#include "core/Integration/integration.h"
|
|
|
|
#include <QFont>
|
|
|
|
#include "QtGui/QApplication/napplication.hpp"
|
|
#include "core/Integration/qode-api.h"
|
|
namespace qodeIntegration {
|
|
static NApplication* app;
|
|
|
|
int QtRunLoopWrapper() {
|
|
int exitCode = app->exec();
|
|
// if(exitCode != 0){
|
|
exit(exitCode);
|
|
// }
|
|
return 0;
|
|
}
|
|
|
|
void integrate() {
|
|
// Bootstrap Qt
|
|
QCoreApplication::setAttribute(Qt::AA_ShareOpenGLContexts);
|
|
QCoreApplication::setAttribute(Qt::AA_EnableHighDpiScaling);
|
|
app = new NApplication(qode::qode_argc, qode::qode_argv);
|
|
qode::InjectCustomRunLoop(&QtRunLoopWrapper);
|
|
// Other init settings
|
|
QFont f = QApplication::font();
|
|
if (f.defaultFamily().isEmpty()) {
|
|
f.setFamily("Sans-Serif");
|
|
QApplication::setFont(f);
|
|
}
|
|
}
|
|
} // namespace qodeIntegration
|