78 lines
2.3 KiB
C++
78 lines
2.3 KiB
C++
/*
|
|
This file is part of KDDockWidgets.
|
|
|
|
SPDX-FileCopyrightText: 2020-2022 Klarälvdalens Datakonsult AB, a KDAB Group company
|
|
<info@kdab.com> Author: Sergio Martins <sergio.martins@kdab.com>
|
|
|
|
SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only
|
|
|
|
Contact KDAB at <info@kdab.com> for commercial licensing options.
|
|
*/
|
|
|
|
|
|
#include <kddockwidgets/Config.h>
|
|
#include <kddockwidgets/views/DockWidget_qtquick.h>
|
|
#include <kddockwidgets/Platform_qtquick.h>
|
|
#include <kddockwidgets/ViewFactory_qtquick.h>
|
|
#include <kddockwidgets/private/DockRegistry.h>
|
|
#include <kddockwidgets/views/MainWindow_qtquick.h>
|
|
|
|
|
|
#include <QQuickView>
|
|
#include <QGuiApplication>
|
|
#include <QQmlApplicationEngine>
|
|
|
|
class CustomViewFactory : public KDDockWidgets::ViewFactory_qtquick
|
|
{
|
|
public:
|
|
~CustomViewFactory() override;
|
|
|
|
QUrl titleBarFilename() const override
|
|
{
|
|
return QUrl("qrc:/MyTitleBar.qml");
|
|
}
|
|
};
|
|
|
|
CustomViewFactory::~CustomViewFactory() = default;
|
|
|
|
int main(int argc, char *argv[])
|
|
{
|
|
#ifdef Q_OS_WIN
|
|
QGuiApplication::setAttribute(Qt::AA_UseOpenGLES);
|
|
#endif
|
|
QGuiApplication app(argc, argv);
|
|
KDDockWidgets::initFrontend(KDDockWidgets::FrontendType::QtQuick);
|
|
|
|
auto &config = KDDockWidgets::Config::self();
|
|
auto flags = config.flags();
|
|
|
|
config.setFlags(flags);
|
|
config.setViewFactory(new CustomViewFactory());
|
|
|
|
QQmlApplicationEngine appEngine;
|
|
KDDockWidgets::Platform_qtquick::instance()->setQmlEngine(&appEngine);
|
|
appEngine.load((QUrl("qrc:/main.qml")));
|
|
|
|
auto dw1 = new KDDockWidgets::Views::DockWidget_qtquick("Dock #1");
|
|
|
|
dw1->setGuestItem(QStringLiteral("qrc:/Guest1.qml"));
|
|
dw1->resize(QSize(800, 800));
|
|
dw1->show();
|
|
|
|
auto dw2 = new KDDockWidgets::Views::DockWidget_qtquick("Dock #2");
|
|
dw2->setGuestItem(QStringLiteral("qrc:/Guest2.qml"));
|
|
dw2->resize(QSize(800, 800));
|
|
dw2->show();
|
|
|
|
auto dw3 = new KDDockWidgets::Views::DockWidget_qtquick("Dock #3");
|
|
dw3->setGuestItem(QStringLiteral("qrc:/Guest3.qml"));
|
|
|
|
dw1->addDockWidgetToContainingWindow(dw3, KDDockWidgets::Location_OnRight);
|
|
|
|
// Access the main area we created in QML with DockingArea {}
|
|
auto mainArea = KDDockWidgets::DockRegistry::self()->mainDockingAreas().constFirst();
|
|
mainArea->addDockWidget(dw2, KDDockWidgets::Location_OnTop);
|
|
|
|
return app.exec();
|
|
}
|