~ubuntu-branches/ubuntu/wily/qtdeclarative-opensource-src/wily-proposed

« back to all changes in this revision

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

  • Committer: Package Import Robot
  • Author(s): Ricardo Salveti de Araujo, Ricardo Salveti de Araujo, Timo Jyrinki
  • Date: 2014-06-19 02:39:21 UTC
  • mfrom: (0.1.18 experimental)
  • Revision ID: package-import@ubuntu.com-20140619023921-yb2oasnuetz9b0fc
Tags: 5.3.0-3ubuntu4
[ Ricardo Salveti de Araujo ]
* debian/control:
  - Updating dependencies as we now also have libqt5quickwidgets5-gles
* libqt5quickwidgets5.symbols: updating to allow gles variant

[ Timo Jyrinki ]
* Update libqt5quickparticles5.symbols from build logs

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
import QtQuick 2.0
 
2
 
 
3
Rectangle {
 
4
    width: 240
 
5
    height: 320
 
6
 
 
7
    GridView {
 
8
        id: grid
 
9
 
 
10
        property real itemZ: 241
 
11
        property real headerZ: 242
 
12
        property real footerZ: 243
 
13
        property real highlightZ: 244
 
14
 
 
15
        anchors.fill: parent
 
16
        objectName: "grid"
 
17
        model: ListModel { ListElement { text: "text" } }
 
18
        currentIndex: 0
 
19
 
 
20
        delegate: Text {
 
21
            objectName: "wrapper"
 
22
            font.pointSize: 20
 
23
            text: index
 
24
            z: 241
 
25
        }
 
26
 
 
27
        header: Rectangle {
 
28
            width: 240
 
29
            height: 30
 
30
            z: 242
 
31
        }
 
32
 
 
33
        footer: Rectangle {
 
34
            width: 240
 
35
            height: 30
 
36
            z: 243
 
37
        }
 
38
 
 
39
        highlight: Rectangle {
 
40
            width: 240
 
41
            height: 30
 
42
            z: 244
 
43
        }
 
44
    }
 
45
}
 
46