What is the parent of MouseArea
, when it in the GroupBox
? parent
refers to some container
:
GroupBox {
width: 100; height: 100
id: rec
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.LeftButton | Qt.RightButton
onClicked: {
console.log("\tparent" + parent + "\trec" + rec)
}
}
}
qml: parentQQuickItem_QML_15(0x3ad3590, "container") recGroupBox_QMLTYPE_12(0x3ad2790)
When the MouseArea
in the Rectangle
, Rectangle
is its parent:
Rectangle {
width: 100; height: 100
id: rec
color: "green"
MouseArea {
anchors.fill: parent
acceptedButtons: Qt.LeftButton | Qt.RightButton
onClicked: {
console.log("\tparent" + parent + "\trec" + rec)
}
}
}
qml: parentQQuickRectangle(0x39d0cd0) recQQuickRectangle(0x39d0cd0)