2025-03-10 23:46:12 +08:00
|
|
|
#include <QApplication>
|
|
|
|
#include <QCommandLineOption>
|
|
|
|
#include <QCommandLineParser>
|
|
|
|
#include <QGuiApplication>
|
|
|
|
#include <QOpenGLContext>
|
|
|
|
#include <QScreen>
|
2025-03-19 19:11:25 +08:00
|
|
|
#include <QQuickWindow>
|
2025-03-10 23:46:12 +08:00
|
|
|
|
|
|
|
#include <glwindow.h>
|
|
|
|
#include <mainwindow.h>
|
|
|
|
|
2025-03-19 19:11:25 +08:00
|
|
|
|
2025-03-10 23:46:12 +08:00
|
|
|
int main(int argc, char* argv[])
|
|
|
|
{
|
2025-03-19 19:11:25 +08:00
|
|
|
// 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);
|
|
|
|
|
|
|
|
// Enable ADS AutoHide
|
2025-03-10 23:46:12 +08:00
|
|
|
ads::CDockManager::setAutoHideConfigFlags(ads::CDockManager::DefaultAutoHideConfig);
|
2025-03-19 19:11:25 +08:00
|
|
|
|
2025-03-10 23:46:12 +08:00
|
|
|
QApplication a(argc, argv);
|
|
|
|
|
|
|
|
MainWindow* w = new MainWindow();
|
2025-03-19 19:11:25 +08:00
|
|
|
|
|
|
|
// Release memory when closing main window and quit application
|
2025-03-10 23:46:12 +08:00
|
|
|
w->setAttribute(Qt::WA_DeleteOnClose);
|
2025-03-19 19:11:25 +08:00
|
|
|
|
2025-03-10 23:46:12 +08:00
|
|
|
w->show();
|
|
|
|
|
|
|
|
return a.exec();
|
|
|
|
}
|