Hello Folks;
My apologies for the tardiness of my reply. I also apologize for not providing a complete code example.
is the graphContainer object - I neglected to rename it in my code snippet. Here's the graphContainer.qml file:
@
// QML
import QtQuick 2.2
import GraphUI 1.0
Rectangle {
anchors.centerIn: parent
id: graphContainer
objectName: "graphContainer"
height:0;width:0
x:0;y:0
/*
DEBUG
border.color: "green"
border.width: 2
*/
}
@
As to onek24's marvelous suggestion, I've attempted such, but with a small difference: the objectName is programmatically set to a GUID. But I'm coming up empty when I:
@
QQuickItem qqEdge = m_GraphContainer->findChild<QQuickItem>(RID);
@
The QtCreator debugger shows all children collections to be empty, but my UI displays all edges and nodes correctly.
Thank you again,
ST