假设我们有一个非常简单的QML文件,像这样:
import QtQuick 2.0
Rectangle {
width: 800
height: 600
color: '#000'
Text {
text: qsTr("Hi all")
anchors.centerIn: parent
}
}
QML文件加载了QtQuick2ApplicationViewer帮助类,如下所示:
QtQuick2ApplicationViewer viewer;
viewer.setMainQmlFile(QStringLiteral("qml/MyApp/Login/Window.qml"));
viewer.showFullScreen();
例如,如果我想将矩形的颜色从C++更改为白色,我应该如何进行。我的猜测是:
QQuickItem *window = viewer.rootObject();
window->setProperty("color", "#fff");
但所做的只是以下编译器错误:
invalid use of incomplete type 'struct QQuickItem'
forward declaration of 'struct QQuickItem'
然后QQuickItem在您包含的标头中的某个位置被转发声明,但不是完全限定的。这里 更多信息.
QObject *rootObject = (QObject *)viewer.rootObject();
rootObject->setProperty("color", "red");