import Qt 4.7 //![0] Rectangle { width: 200; height: 200 Flickable { id: flickable //![0] anchors.fill: parent contentWidth: image.width; contentHeight: image.height Image { id: image; source: "pics/qt.png" } //![1] } Rectangle { id: scrollbar anchors.right: flickable.right y: flickable.visibleArea.yPosition * flickable.height width: 10 height: flickable.visibleArea.heightRatio * flickable.height color: "black" } } //![1]