如何使用组件范围实例层次结构从 C++ 创建 QML 组件
Posted
技术标签:
【中文标题】如何使用组件范围实例层次结构从 C++ 创建 QML 组件【英文标题】:How to create a QML component from C++ with component scope instance hierarchy 【发布时间】:2021-09-29 20:14:16 【问题描述】:我有一个这样的测试 QML 文件:
// TestMain.qml
import QtQuick 2.15
import QtQuick.Controls 2.15
ApplicationWindow
id: root
width: G_WIDTH
height: G_HEIGHT
readonly property real x_SCALE: width / G_WIDTH
readonly property real y_SCALE: height / G_HEIGHT
title: "Test Window"
visible: true
Item
id: wrapper
anchors.fill: parent
<innerItem>
我想在运行时从 C++ 动态创建和分配innerItem
(我正在尝试设置一个测试框架)。这是我在 C++ 中的内容:
engine->load("TestMain.qml");
if (engine->rootObjects().isEmpty()) // Error
auto root = engine->rootObjects().first();
auto wrapper = qobject_cast<QQuickItem*>(main->children()[1]);
QQmlComponent component(engine.get(), "ComponentToBeTested.qml");
auto item = qobject_cast<QQuickItem*>(component.createWithInitialProperties(props));
item->setParentItem(wrapper);
item->setSize(wrapper->size());
app->exec();
但ComponentToBeTested
似乎无法看到TestMain
中定义的x_SCALE
和y_SCALE
。我在这里错过了什么?
【问题讨论】:
看来你有一个 XY 问题。属性只能在文件范围内访问,即x_SCALE和Y_SCALE只能在TestMain.qml中访问。 @eyllanesc 这不是真的。如果InnerItem
是另一个文件,但添加到 TestMain.qml 中,它将能够看到其所有祖先的属性。不管它是否定义在同一个文件中。
@eyllanesc 你能在我发给你的链接中滚动几行吗?正如我所说,有两个不同文件的示例。 TitleText.qml
是TitlePage.qml
的子级,它可以从该文件访问title
属性。即使它们位于不同的文件中。
建议:如果你想要一些全局的东西,那么创建一个单例:wiki.qt.io/Qml_Styling
我想这可以从这个问题中解决我的问题。我必须从我的 Main.qml 或 TestMain.qml 中“驱动”这些比例因子。 (因为它们取决于我的主窗口的大小)
【参考方案1】:
这是由于缺少QQmlContext
。
我需要创建传递上下文的 QML 实例:
item = qobject_cast<QQuickItem*>(
component.createWithInitialProperties(
props,
engine.contextForObject(wrapper)));
【讨论】:
以上是关于如何使用组件范围实例层次结构从 C++ 创建 QML 组件的主要内容,如果未能解决你的问题,请参考以下文章
在 wicket 中,如何创建未由组件层次结构/布局定义的 RadioGroup?
WDA学习(13):Use ALV as Hierarchy