tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml
changeset 33 3e2da88830cd
parent 30 5dc02b23752f
equal deleted inserted replaced
30:5dc02b23752f 33:3e2da88830cd
     1 import Qt 4.7
     1 import Qt 4.7
     2 
     2 
     3 Flickable {
     3 Flickable {
       
     4     property bool ok: false
       
     5     function check() {
       
     6         if (column.parent == contentItem)
       
     7             ok = true;
       
     8     }
       
     9 
     4     width: 100; height: 100
    10     width: 100; height: 100
     5     contentWidth: column.width; contentHeight: column.height
    11     contentWidth: column.width; contentHeight: column.height
     6     pressDelay: 200; boundsBehavior: Flickable.StopAtBounds; interactive: false
    12     pressDelay: 200; boundsBehavior: Flickable.StopAtBounds; interactive: false
     7     maximumFlickVelocity: 2000
    13     maximumFlickVelocity: 2000
     8 
    14