1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
import QtQuick 1.0
Item {
id: root; objectName: "root"
width: 200; height: 200
Item { id: itemA; objectName: "itemA"; x: 50; y: 50 }
Item {
x: 50; y: 50
Item { id: itemB; objectName: "itemB"; x: 100; y: 100 }
}
function mapAToB(x, y) {
var pos = itemA.mapToItem(itemB, x, y)
return Qt.point(pos.x, pos.y)
}
function mapAFromB(x, y) {
var pos = itemA.mapFromItem(itemB, x, y)
return Qt.point(pos.x, pos.y)
}
function mapAToNull(x, y) {
var pos = itemA.mapToItem(null, x, y)
return Qt.point(pos.x, pos.y)
}
function mapAFromNull(x, y) {
var pos = itemA.mapFromItem(null, x, y)
return Qt.point(pos.x, pos.y)
}
function checkMapAToInvalid(x, y) {
var pos = itemA.mapToItem(1122, x, y)
return pos.x == undefined && pos.y == undefined
}
function checkMapAFromInvalid(x, y) {
var pos = itemA.mapFromItem(1122, x, y)
return pos.x == undefined && pos.y == undefined
}
}
|