import QtQuick 2.0 Rectangle { width: 1024 height: 768 ListModel { id: pictureList ListElement { img: "http://upload.wikimedia.org/wikipedia/commons/thumb/7/7a/Basketball.png/120px-Basketball.png" } ListElement { img: "http://upload.wikimedia.org/wikipedia/commons/thumb/9/96/Floorball_ball.svg/120px-Floorball_ball.svg.png" } ListElement { img: "http://upload.wikimedia.org/wikipedia/commons/thumb/6/6e/Hairy_ball_one_pole_animated.gif/120px-Hairy_ball_one_pole_animated.gif" } ListElement { img: "http://cafan.pl/pliki/galeria/Amiga/thumbs/amiga-boing-ball.png" } ListElement { img: "http://dev.gg.pl/api/lib/exe/icon.png" } ListElement { img: "http://upload.wikimedia.org/wikipedia/commons/thumb/a/a5/Ball_icon.png/120px-Ball_icon.png" } ListElement { img: "http://images2.wikia.nocookie.net/__cb20130322235856/fantendo/images/thumb/3/3f/B-ball.png/120px-B-ball.png" } ListElement { img: "http://wiki.erepublik.com/images/thumb/7/7a/Icon-Aland.png/120px-Icon-Aland.png" } ListElement { img: "http://www.allfordesigner.com/wp-content/uploads/2013/05/image/[allfordesigner.com]_uuczympbwsh-120x120.png" } ListElement { img: "http://cdn.staticneo.com/w/pokemon/thumb/d/dd/Safari_ball.png/120px-Safari_ball.png" } ListElement { img: "http://images2.wikia.nocookie.net/__cb20130626094407/rail-nation/images/thumb/5/57/Ball_128.png/120px-Ball_128.png" } ListElement { img: "http://images2.wikia.nocookie.net/__cb20061030152215/nonsensopedia/images/thumb/4/48/Crystal_128_kservices.png/120px-Crystal_128_kservices.png" } ListElement { img: "http://upload.wikimedia.org/wikipedia/commons/thumb/2/2f/Exquisite-suse.png/120px-Exquisite-suse.png" } ListElement { img: "http://upload.wikimedia.org/wikipedia/commons/thumb/archive/0/03/20070123215911!Crystal_Clear_app_kpackage.png/120px-Crystal_Clear_app_kpackage.png" } ListElement { img: "http://images3.wikia.nocookie.net/__cb20110823120030/fallout/images/thumb/e/ee/Master_Ball.png/120px-Master_Ball.png" } ListElement { img: "http://cdn2.bigcommerce.com/server1800/a047b/products/7672/images/18429/PremBall2013__38215.1372417100.120.120.png" } ListElement { img: "http://images.wikia.com/es.pokemon/images/5/57/Super_Ball_(Ilustraci%C3%B3n).png" } ListElement { img: "http://upload.wikimedia.org/wikipedia/commons/thumb/archive/3/34/20070123224326!Crystal_Clear_app_clean.png/120px-Crystal_Clear_app_clean.png" } ListElement { img: "http://www.freestockphotos.biz/thumbs_0001/thumbsmall_7966.png" } ListElement { img: "http://www.wikipasy.pl/images/thumb/a/a9/Gwiazda.png/120px-Gwiazda.png" } } Component { id: pictureDelegate Item { width: grid.cellWidth; height: grid.cellHeight Column { anchors.fill: parent Image { source: img; anchors.centerIn: parent } } } } GridView { id: grid anchors.fill: parent cellWidth: 120; cellHeight: 120 model: pictureList delegate: pictureDelegate highlight: Rectangle { color: "lightgreen"; radius: 5 } focus: true } }