|
|
|
@ -91,6 +91,15 @@ Window{
|
|
|
|
|
text: dock.maskArea.x +", "+ dock.maskArea.y+" "+dock.maskArea.width+"x"+dock.maskArea.height
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Text{
|
|
|
|
|
text: "Local Geometry"+space
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Text{
|
|
|
|
|
text: visibilityManager.localGeometry.x + ", " + visibilityManager.localGeometry.y + " " +
|
|
|
|
|
visibilityManager.localGeometry.width + "x" + visibilityManager.localGeometry.height
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Text{
|
|
|
|
|
text: "Is Hidden (flag)"+space
|
|
|
|
|
}
|
|
|
|
@ -117,6 +126,19 @@ Window{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Text{
|
|
|
|
|
text: "Edit Mode"+space
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Text{
|
|
|
|
|
text: {
|
|
|
|
|
if (root.editMode)
|
|
|
|
|
return "Yes";
|
|
|
|
|
else
|
|
|
|
|
return "No";
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
Text{
|
|
|
|
|
text: " ----------- "
|
|
|
|
|
}
|
|
|
|
|