QQuickWidget 類

The QQuickWidget class provides a widget for displaying a Qt Quick user interface. 更多...

頭: #include <QQuickWidget>
qmake: QT += quickwidgets
Since: Qt 5.3
繼承: QWidget

公共類型

enum ResizeMode { SizeViewToRootObject, SizeRootObjectToView }
enum Status { Null, Ready, Loading, Error }

特性

公共函數

QQuickWidget (QWidget * parent = Q_NULLPTR)
QQuickWidget (QQmlEngine * engine , QWidget * parent )
QQuickWidget (const QUrl & source , QWidget * parent = Q_NULLPTR)
virtual ~QQuickWidget ()
QQmlEngine * engine () const
QList<QQmlError> errors () const
QSurfaceFormat format () const
QImage grabFramebuffer () const
QSize initialSize () const
QQuickWindow * quickWindow () const
ResizeMode resizeMode () const
QQmlContext * rootContext () const
QQuickItem * rootObject () const
void setClearColor (const QColor & color )
void setFormat (const QSurfaceFormat & format )
void setResizeMode ( ResizeMode )
QUrl source () const
狀態 status () const

公共槽

void setSource (const QUrl & url )

信號

void sceneGraphError (QQuickWindow::SceneGraphError error , const QString & message )
void statusChanged (QQuickWidget::Status status )

重實現保護函數

virtual void dragEnterEvent (QDragEnterEvent * e ) override
virtual void dragLeaveEvent (QDragLeaveEvent * e ) override
virtual void dragMoveEvent (QDragMoveEvent * e ) override
virtual void dropEvent (QDropEvent * e ) override
virtual bool event (QEvent * e ) override
virtual void focusInEvent (QFocusEvent * event ) override
virtual void focusOutEvent (QFocusEvent * event ) override
virtual void hideEvent ( QHideEvent * ) override
virtual void keyPressEvent (QKeyEvent * e ) override
virtual void keyReleaseEvent (QKeyEvent * e ) override
virtual void mouseDoubleClickEvent (QMouseEvent * e ) override
virtual void mouseMoveEvent (QMouseEvent * e ) override
virtual void mousePressEvent (QMouseEvent * e ) override
virtual void mouseReleaseEvent (QMouseEvent * e ) override
virtual void paintEvent (QPaintEvent * event ) override
virtual void showEvent ( QShowEvent * ) override
virtual void wheelEvent (QWheelEvent * e ) override

額外繼承成員

詳細描述

The QQuickWidget class provides a widget for displaying a Qt Quick user interface.

這是方便包裹器對於 QQuickWindow 將自動加載並顯示 QML 場景當有給齣主源文件的 URL 時。另外,可以實例化自己的對象使用 QQmlComponent and place them in a manually set up QQuickWidget .

典型用法:

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

To receive errors related to loading and executing QML with QQuickWidget , you can connect to the statusChanged () signal and monitor for QQuickWidget::Error . The errors are available via QQuickWidget::errors ().

QQuickWidget also manages sizing of the view and root object. By default, the resizeMode is SizeViewToRootObject , which will load the component and resize it to the size of the view. Alternatively the resizeMode may be set to SizeRootObjectToView which will resize the view to the size of the root object.

注意: QQuickWidget is an alternative to using QQuickView and QWidget::createWindowContainer (). The restrictions on stacking order do not apply, making QQuickWidget the more flexible alternative, behaving more like an ordinary widget. This comes at the expense of performance. Unlike QQuickWindow and QQuickView , QQuickWidget involves rendering into OpenGL framebuffer objects. This will naturally carry a minor performance hit.

注意: 使用 QQuickWidget disables the threaded render loop on all platforms. This means that some of the benefits of threaded rendering, for example Animator classes and vsync driven animations, will not be available.

注意: 避免調用 winId () 在 QQuickWidget . This function triggers the creation of a native window, resulting in reduced performance and possibly rendering glitches. The entire purpose of QQuickWidget is to render Quick scenes without a separate native window, hence making it a native widget should always be avoided.

場景圖形和上下文持久性

QQuickWidget honors QQuickWindow::isPersistentSceneGraph (), meaning that applications can decide - by calling QQuickWindow::setPersistentSceneGraph () on the window returned from the quickWindow () function - to let scenegraph nodes and other Qt Quick scene related resources be released whenever the widget becomes hidden. By default persistency is enabled, just like with QQuickWindow .

When running with the OpenGL backend of the scene graph, QQuickWindow offers the possibility to disable persistent OpenGL contexts as well. This setting is currently ignored by QQuickWidget and the context is always persistent. The OpenGL context is thus not destroyed when hiding the widget. The context is destroyed only when the widget is destroyed or when the widget gets reparented into another top-level widget's child hierarchy. However, some applications, in particular those that have their own graphics resources due to performing custom OpenGL rendering in the Qt Quick scene, may wish to disable the latter since they may not be prepared to handle the loss of the context when moving a QQuickWidget into another window. Such applications can set the QCoreApplication::AA_ShareOpenGLContexts attribute. For a discussion on the details of resource initialization and cleanup, refer to the QOpenGLWidget 文檔編製。

注意: QQuickWidget offers less fine-grained control over its internal OpenGL context than QOpenGLWidget , and there are subtle differences, most notably that disabling the persistent scene graph will lead to destroying the context on a window change regardless of the presence of QCoreApplication::AA_ShareOpenGLContexts.

局限性

Putting other widgets underneath and making the QQuickWidget transparent will not lead to the expected results: the widgets underneath will not be visible. This is because in practice the QQuickWidget is drawn before all other regular, non-OpenGL widgets, and so see-through types of solutions are not feasible. Other type of layouts, like having widgets on top of the QQuickWidget , will function as expected.

When absolutely necessary, this limitation can be overcome by setting the Qt::WA_AlwaysStackOnTop 屬性在 QQuickWidget . Be aware, however that this breaks stacking order. For example it will not be possible to have other widgets on top of the QQuickWidget , so it should only be used in situations where a semi-transparent QQuickWidget with other widgets visible underneath is required.

This limitation only applies when there are other widgets underneath the QQuickWidget inside the same window. Making the window semi-transparent, with other applications and the desktop visible in the background, is done in the traditional way: Set Qt::WA_TranslucentBackground on the top-level window, request an alpha channel, and change the Qt Quick Scenegraph's clear color to Qt::transparent 憑藉 setClearColor ().

不使用 OpenGL 時的支持

In addition to OpenGL, the software backend of Qt Quick also supports QQuickWidget . Other backends, for example the Direct 3D 12 one, are not compatible however and attempting to construct a QQuickWidget will lead to problems.

另請參閱 將 C++ 類型屬性暴露給 QML , Qt Quick Widgets 範例 ,和 QQuickView .

成員類型文檔編製

enum QQuickWidget:: ResizeMode

This enum specifies how to resize the view.

常量 描述
QQuickWidget::SizeViewToRootObject 0 The view resizes with the root item in the QML.
QQuickWidget::SizeRootObjectToView 1 The view will automatically resize the root item to the size of the view.

enum QQuickWidget:: Status

指定正加載狀態為 QQuickWidget .

常量 描述
QQuickWidget::Null 0 This QQuickWidget has no source set.
QQuickWidget::Ready 1 This QQuickWidget has loaded and created the QML component.
QQuickWidget::Loading 2 This QQuickWidget 正加載網絡數據。
QQuickWidget::Error 3 One or more errors occurred. Call errors () to retrieve a list of errors.

特性文檔編製

resizeMode : ResizeMode

Determines whether the view should resize the window contents.

若把此特性設為 SizeViewToRootObject (the default), the view resizes to the size of the root item in the QML.

若把此特性設為 SizeRootObjectToView , the view will automatically resize the root item to the size of the view.

Regardless of this property, the sizeHint of the view is the initial size of the root item. Note though that since QML may load dynamically, that size may change.

訪問函數:

ResizeMode resizeMode () const
void setResizeMode ( ResizeMode )

另請參閱 initialSize ().

source : QUrl

This property holds the URL of the source of the QML component.

Ensure that the URL provided is full and correct, in particular, use QUrl::fromLocalFile () when loading a file from the local filesystem.

注意: Setting a source URL will result in the QML component being instantiated, even if the URL is unchanged from the current value.

訪問函數:

QUrl source () const
void setSource (const QUrl & url )

status : const Status

組件的當前 status .

訪問函數:

狀態 status () const

通知程序信號:

void statusChanged (QQuickWidget::Status status )

成員函數文檔編製

QQuickWidget:: QQuickWidget ( QWidget * parent = Q_NULLPTR)

構造 QQuickWidget 采用給定 parent 。默認值對於 parent 為 0。

QQuickWidget:: QQuickWidget ( QQmlEngine * engine , QWidget * parent )

構造 QQuickWidget with the given QML engine and parent .

Note: In this case, the QQuickWidget does not own the given engine object; it is the caller's responsibility to destroy the engine. If the engine is deleted before the view, status () 會返迴 QQuickWidget::Error .

另請參閱 Status , status (),和 errors ().

QQuickWidget:: QQuickWidget (const QUrl & source , QWidget * parent = Q_NULLPTR)

構造 QQuickWidget with the given QML source and parent 。默認值對於 parent 為 0。

[虛擬] QQuickWidget:: ~QQuickWidget ()

銷毀 QQuickWidget .

[override virtual protected] void QQuickWidget:: dragEnterEvent ( QDragEnterEvent * e )

重實現自 QWidget::dragEnterEvent ().

[override virtual protected] void QQuickWidget:: dragLeaveEvent ( QDragLeaveEvent * e )

重實現自 QWidget::dragLeaveEvent ().

[override virtual protected] void QQuickWidget:: dragMoveEvent ( QDragMoveEvent * e )

重實現自 QWidget::dragMoveEvent ().

[override virtual protected] void QQuickWidget:: dropEvent ( QDropEvent * e )

重實現自 QWidget::dropEvent ().

QQmlEngine *QQuickWidget:: engine () const

返迴指針指嚮 QQmlEngine used for instantiating QML Components.

QList < QQmlError > QQuickWidget:: errors () const

Return the list of errors that occurred during the last compile or create operation. When the status is not Error ,返迴空列錶。

另請參閱 status .

[override virtual protected] bool QQuickWidget:: event ( QEvent * e )

重實現自 QObject::event ().

[override virtual protected] void QQuickWidget:: focusInEvent ( QFocusEvent * event )

重實現自 QWidget::focusInEvent ().

[override virtual protected] void QQuickWidget:: focusOutEvent ( QFocusEvent * event )

重實現自 QWidget::focusOutEvent ().

QSurfaceFormat QQuickWidget:: format () const

Returns the actual surface format.

If the widget has not yet been shown, the requested format is returned.

另請參閱 setFormat ().

QImage QQuickWidget:: grabFramebuffer () const

Renders a frame and reads it back into an image.

注意: This is a potentially expensive operation.

[override virtual protected] void QQuickWidget:: hideEvent ( QHideEvent * )

重實現自 QWidget::hideEvent ().

QSize QQuickWidget:: initialSize () const

Returns the initial size of the root object.

resizeMode is SizeRootObjectToView , the root object will be resized to the size of the view. This function returns the size of the root object before it was resized.

[override virtual protected] void QQuickWidget:: keyPressEvent ( QKeyEvent * e )

重實現自 QWidget::keyPressEvent ().

[override virtual protected] void QQuickWidget:: keyReleaseEvent ( QKeyEvent * e )

重實現自 QWidget::keyReleaseEvent ().

[override virtual protected] void QQuickWidget:: mouseDoubleClickEvent ( QMouseEvent * e )

重實現自 QWidget::mouseDoubleClickEvent ().

[override virtual protected] void QQuickWidget:: mouseMoveEvent ( QMouseEvent * e )

重實現自 QWidget::mouseMoveEvent ().

[override virtual protected] void QQuickWidget:: mousePressEvent ( QMouseEvent * e )

重實現自 QWidget::mousePressEvent ().

[override virtual protected] void QQuickWidget:: mouseReleaseEvent ( QMouseEvent * e )

重實現自 QWidget::mouseReleaseEvent ().

[override virtual protected] void QQuickWidget:: paintEvent ( QPaintEvent * event )

QQuickWindow *QQuickWidget:: quickWindow () const

Returns the offscreen QQuickWindow which is used by this widget to drive the Qt Quick rendering. This is useful if you want to use QQuickWindow APIs that are not currently exposed by QQuickWidget , for instance connecting to the QQuickWindow::beforeRendering () signal in order to draw native OpenGL content below Qt Quick's own rendering.

警告: Use the return value of this function with caution. In particular, do not ever attempt to show the QQuickWindow , and be very careful when using other QWindow -only APIs.

該函數在 Qt 5.5 引入。

QQmlContext *QQuickWidget:: rootContext () const

This function returns the root of the context hierarchy. Each QML component is instantiated in a QQmlContext . QQmlContext 's are essential for passing data to QML components. In QML, contexts are arranged hierarchically and this hierarchy is managed by the QQmlEngine .

QQuickItem *QQuickWidget:: rootObject () const

Returns the view's root item . Can be null when setSource () has not been called, if it was called with broken QtQuick code or while the QtQuick contents are being created.

[signal] void QQuickWidget:: sceneGraphError ( QQuickWindow::SceneGraphError error , const QString & message )

此信號發射,當 error 齣現在場景圖形初始化期間。

Applications should connect to this signal if they wish to handle errors, like OpenGL context creation failures, in a custom way. When no slot is connected to the signal, the behavior will be different: Quick will print the message , or show a message box, and terminate the application.

This signal will be emitted from the gui thread.

另請參閱 QQuickWindow::sceneGraphError ().

void QQuickWidget:: setClearColor (const QColor & color )

Sets the clear color . By default this is an opaque color.

To get a semi-transparent QQuickWidget , call this function with color 設為 Qt::transparent , set the Qt::WA_TranslucentBackground widget attribute on the top-level window, and request an alpha channel via setFormat ().

另請參閱 QQuickWindow::setColor ().

void QQuickWidget:: setFormat (const QSurfaceFormat & format )

Sets the surface format for the context and offscreen surface used by this widget.

Call this function when there is a need to request a context for a given OpenGL version or profile. The sizes for depth, stencil and alpha buffers are taken care of automatically and there is no need to request those explicitly.

另請參閱 QWindow::setFormat (), QWindow::format (),和 format ().

[slot] void QQuickWidget:: setSource (const QUrl & url )

Sets the source to the url , loads the QML component and instantiates it.

Ensure that the URL provided is full and correct, in particular, use QUrl::fromLocalFile () when loading a file from the local filesystem.

Calling this method multiple times with the same URL will result in the QML component being reinstantiated.

注意: setter 函數對於特性 source .

另請參閱 source ().

[override virtual protected] void QQuickWidget:: showEvent ( QShowEvent * )

重實現自 QWidget::showEvent ().

QUrl QQuickWidget:: source () const

返迴源 URL (統一資源定位符),若有設置。

注意: getter 函數對於特性 source .

另請參閱 setSource ().

[signal] void QQuickWidget:: statusChanged ( QQuickWidget::Status status )

This signal is emitted when the component's current status 改變。

注意: 通知程序信號對於特性 status .

[override virtual protected] void QQuickWidget:: wheelEvent ( QWheelEvent * e )

重實現自 QWidget::wheelEvent ().