Quantcast
Channel: Qt DevNet forums: Qt Quick 1283365070**
Viewing all articles
Browse latest Browse all 4972

Problem with drag and drop in qtquick 2

$
0
0
Here how I solve your problem… import QtQuick 2.0 Rectangle {   id: rootTarget   width: 800   height: 800     DropArea {    id: dragTarget1    property alias dropProxy: dragTarget1      width: 200; height: 200    y: 100; x: 100      Rectangle {     id: target     anchors.fill: parent     color: "lightgreen"    }    states: [     State {      when: dragTarget1.containsDrag      PropertyChanges {       target: target       color: "green"      }     }    ]   }     DropArea {    id: dragTarget2    width: 200; height: 200    y: 400; x: 100      Rectangle {     id: target2     anchors.fill: parent     color: "lightgreen"    }    states: [     State {      when: dragTarget2.containsDrag      PropertyChanges {       target: target2       color: "green"      }     }    ]   }     Rectangle {    id: debut    width: 120; height: 120    x: 600; y: 600    color: "red"      MouseArea {     id: maDrag     drag.target: carre     width: 100; height: 100     anchors.centerIn: parent       onReleased: {      console.log('onReleased')      parent = carre.Drag.target !== null ? carre.Drag.target : debut     }       Rectangle {      id: carre      color: "blue"      width: 100; height: 100      anchors.verticalCenter: parent.verticalCenter      anchors.horizontalCenter: parent.horizontalCenter        Drag.active: maDrag.drag.active      Drag.source: maDrag      Drag.hotSpot.x: width/2      Drag.hotSpot.y: height/2        states: [       State {        when: maDrag.drag.active        PropertyChanges {         target: carre         opacity: 0.5        }        ParentChange {         target: carre         parent: debut        }          AnchorChanges {         target: carre;         anchors.horizontalCenter: undefined;         anchors.verticalCenter: undefined        }       }      ]     }    }   }  }

Viewing all articles
Browse latest Browse all 4972

Trending Articles