如何从C ++访问QML ListView委托项?

时间:2016-04-21 10:57:49

标签: qt qml qt5 qtquick2 qtquickcontrols

Listview 中,我使用" 委托"弹出了100个项目,假设listview已显示填充值。 现在我想从C ++ 中提取QML列表视图中已显示的值。怎么做到这一点? 注意: 我无法直接访问datamodel ,因为我使用隐藏变量在委托中进行过滤

        /*This is not working code, Please note,
        delegate will not display all model data.*/
        ListView
        {
        id:"listview"
           model:datamodel
           delegate:{
                      if(!hidden)
                      {
                        Text{        
                        text:value
                      }
                    }

        }


 //Can I access by using given approach?
 QObject * object =   m_qmlengine->rootObjects().at(0)->findChild<QObject* >("listview");

//Find objects
const QListObject& lists = object->children();

//0 to count maximum
//read the first property
QVarient value =  QQmlProperty::read(lists[0],"text");

1 个答案:

答案 0 :(得分:3)

您可以使用objectName 属性在QML中搜索特定项目。我们来看一个简单的QML文件:

//main.qml
Window {
    width: 1024; height: 768; visible: true
    Rectangle {
        objectName: "testingItem"
        width: 200; height: 40; color: "green"
    }
}

在C ++中,假设engine是加载main.qml的QQmlApplicationEngine,我们可以通过使用QObject::findChild从QML根项搜索QObject树轻松找到testingItem

//C++
void printTestingItemColor()
{
    auto rootObj = engine.rootObjects().at(0); //assume main.qml is loaded
    auto testingItem = rootObj->findChild<QQuickItem *>("testingItem");
    qDebug() << testingItem->property("color");
}

但是,此方法无法在QML中找到所有项目,因为某些项目可能没有QObject父项。例如,ListViewRepeater中的代表:

ListView {
    objectName: "view"
    width: 200; height: 80
    model: ListModel { ListElement { colorRole: "green" } }
    delegate: Rectangle {
        objectName: "testingItem" //printTestingItemColor() cannot find this!!
        width: 50; height: 50
        color: colorRole
    }
}

对于ListView中的代表,我们必须搜索visual child而不是对象子代。 ListView个委托是ListView的contentItem 的父级。因此,在C ++中,我们必须首先搜索ListView(使用QObject::findChild),然后使用QQuickItem::childItemscontentItem中搜索代理:

//C++
void UIControl::printTestingItemColorInListView()
{
    auto view = m_rootObj->findChild<QQuickItem *>("view");
    auto contentItem = view->property("contentItem").value<QQuickItem *>();
    auto contentItemChildren = contentItem->childItems();
    for (auto childItem: contentItemChildren )
    {
        if (childItem->objectName() == "testingItem")
            qDebug() << childItem->property("color");
    }
}