summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qdeclarativepositioners/data/repeatertest.qml
blob: 1cba59895cff0d345a881b807d52cb3d58eaed6a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
import QtQuick 1.0

Item {
    width: 640
    height: 480
    Row {
        Repeater{ model: 3;
            delegate: Component {
                Rectangle {
                    color: "red"
                    width: 50
                    height: 50
                    z: {if(index == 0){2;}else if(index == 1){1;} else{3;}}
                    objectName: {if(index == 0){"one";}else if(index == 1){"two";} else{"three";}}

                }
            }
        }
    }
}