~loic.molinari/+junk/qtdeclarative-shadereffectsource-changes

« back to all changes in this revision

Viewing changes to tests/auto/quick/qquickgridview/data/gridview4.qml

  • Committer: Loïc Molinari
  • Date: 2012-04-21 17:59:51 UTC
  • Revision ID: loic.molinari@canonical.com-20120421175951-bqx68caaf5zrp76l
Initial import

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
 
 
3
GridView {
 
4
    width: 405
 
5
    height: 200
 
6
    cellWidth: width/9
 
7
    cellHeight: height/2
 
8
 
 
9
    model: 18
 
10
    delegate: Rectangle { objectName: "delegate"; width: 10; height: 10; color: "green" }
 
11
}