PySide6.QtQuickWidgets

Detailed Description

Provides a C++ widget class for displaying a Qt Quick user interface.

The Qt Quick Widgets module is a convenience wrapper for QQuickWindow . It will automatically load and display a QML scene when given the URL of the main qml file. Alternatively, you can instantiate QML objects using QQmlComponent and place them in a manually set-up QQuickWidget .

Typical usage:

QQuickWidget *view = new QQuickWidget;
view->setSource(QUrl::fromLocalFile("myqmlfile.qml"));
view->show();

QQuickWidget also manages resizing the view and the root item. By default, the resizeMode is set to SizeViewToRootObject , which will load the component and resize it to fit the view. Alternatively, you can set resizeMode to SizeViewToRootObject , which will resize the view to the root item.

Building with qmake quickwidgets

To configure the module for building with qmake, add the module as a value of the QT variable in the project’s .pro file:

QT += quickwidgets

Licenses and Attributions

Qt Quick Widget is available under commercial licenses from The Qt Company. In addition, it is available under free software licenses. Since Qt 5.4, these free software licenses are GNU Lesser General Public License, version 3, or the GNU General Public License, version 2. See Qt Licensing for more details.

List of QML types

List of Classes