1
0
mirror of https://github.com/githubuser0xFFFF/Qt-Advanced-Docking-System.git synced 2025-04-01 02:42:39 +08:00
Qt-Advanced-Docking-System/examples/openGL/main.cpp

37 lines
1.0 KiB
C++
Raw Normal View History

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();
}