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

« back to all changes in this revision

Viewing changes to tests/auto/quick/qquickflickable/data/wheel.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
Rectangle {
 
4
    width: 400
 
5
    height: 400
 
6
    color: "gray"
 
7
 
 
8
    Flickable {
 
9
        id: flick
 
10
        objectName: "flick"
 
11
        anchors.fill: parent
 
12
        contentWidth: 800
 
13
        contentHeight: 800
 
14
 
 
15
        Rectangle {
 
16
            width: flick.contentWidth
 
17
            height: flick.contentHeight
 
18
            color: "red"
 
19
            Rectangle {
 
20
                width: 50; height: 50; color: "blue"
 
21
                anchors.centerIn: parent
 
22
            }
 
23
        }
 
24
    }
 
25
}