如何将QQuickItem扩展作为子级添加到另一个QQuickItem扩展中?

时间:2018-08-07 14:56:21

标签: c++ qt qml qt5 qtquick2

我目前正在为Qt Quick建立C ++工厂。我需要能够将工厂生成的子级添加到另一个自定义QQuickItem中,如下所示:

class Bar : public QQuickItem {
    Q_Object

    Bar(QQuickItem * parent = 0) : QQuickItem(parent) {
        // Generate some config called barConfig
        QQuickItem * newChild = FooFactory(barConfig);
        // Add child here?
    }
}

实际上,有一个BarModel控制着工厂的配置,在这里似乎无关紧要。那么,如何将我的newChild添加为Bar实例的子对象?

1 个答案:

答案 0 :(得分:1)

使用setParentItem()

Bar(QQuickItem * parent = 0) : QQuickItem(parent) {
    // Generate some config called barConfig
    QQuickItem * newChild = FooFactory(barConfig);
    newChild->setParentItem(this);
}