import QtQuick 1.0 Item { id: myItem width: 350 height: 350 Rectangle { id: slider width: 320 height: 40 color: "green" anchors.horizontalCenter: parent.horizontalCenter anchors.verticalCenter: parent.verticalCenter Rectangle { id: handle width: 40 height: 40 color: "red" MouseArea { anchors.fill: parent drag { target: parent axis: "XAxis" minimumX: 0 maximumX: slider.width - handle.width } } } } }