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

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";}}

                }
            }
        }
    }
}