#include #include #include #include #include #include #include void myMessageOutput(QtMsgType type, const QMessageLogContext &context, const QString &msg) { QByteArray localMsg = msg.toLocal8Bit(); switch (type) { case QtDebugMsg: fprintf(stdout, "Debug: %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function); break; case QtInfoMsg: fprintf(stdout, "Info: %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function); break; case QtWarningMsg: fprintf(stderr, "Warning: %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function); break; case QtCriticalMsg: fprintf(stderr, "Critical: %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function); break; case QtFatalMsg: fprintf(stderr, "Fatal: %s (%s:%u, %s)\n", localMsg.constData(), context.file, context.line, context.function); abort(); } fflush(stderr); fflush(stdout); } int main(int argc, char *argv[]) { // https://doc.qt.io/qt-6/qtdatavisualization-known-issues.html // Use either `qputenv("QSG_RHI_BACKEND", "opengl");` or the following line QQuickWindow::setGraphicsApi(QSGRendererInterface::OpenGL); // Disable warnings when attempts are made to convert non-convertible non-native widgets // to native widgets (such as QQuickWidget) QApplication::setAttribute(Qt::AA_DontCreateNativeWidgetSiblings); #if (QT_VERSION < QT_VERSION_CHECK(6, 0, 0)) QCoreApplication::setAttribute(Qt::AA_UseHighDpiPixmaps); #if QT_VERSION >= 0x050600 QGuiApplication::setAttribute(Qt::AA_EnableHighDpiScaling); #endif #endif std::shared_ptr b; QApplication a(argc, argv); a.setApplicationName("Advanced Docking System Demo"); a.setQuitOnLastWindowClosed(true); a.setWindowIcon(QIcon(":/adsdemo/images/ads_icon2.svg")); qInstallMessageHandler(myMessageOutput); qDebug() << "Message handler test"; CMainWindow mw; mw.show(); QFile StyleSheetFile(":/adsdemo/app.css"); StyleSheetFile.open(QIODevice::ReadOnly); QTextStream StyleSheetStream(&StyleSheetFile); a.setStyleSheet(StyleSheetStream.readAll()); StyleSheetFile.close(); return a.exec(); }