Кода получается целая простыня, вот такой делегат 1го списка:
Item {
id: device
width: 200
height: 30
/****************************************************************************************************/
//Variable
property string m_title: "Device 1"
property string m_ipaddress: "127.0.0.1"
/****************************************************************************************************/
//States
states: [
State {
name: "inDrag"
when: index == devicesListView.draggedItemIndex
PropertyChanges {
target: button;
parent: mainWindow;
x: devicesCoords.mouseX - 20 + 200;
y: devicesCoords.mouseY + toolBar.height + dockWidgets.height - 30;
}
}
]
}
, вот такой делегат 2го списка:
Item {
id: window
width: 350
height: 200
/****************************************************************************************************/
//Variable
property string m_title: "Device 1"
property string m_ipaddress: "127.0.0.1"
}
, a теперь вопрос: как определить над каким из экземпляров window был "отпущен" экземпляр device?