tests/auto/declarative/qdeclarativeflickable/data/flickable04.qml
branchGCC_SURGE
changeset 31 5daf16870df6
parent 30 5dc02b23752f
child 33 3e2da88830cd
equal deleted inserted replaced
27:93b982ccede2 31:5daf16870df6
       
     1 import Qt 4.7
       
     2 
       
     3 Flickable {
       
     4     width: 100; height: 100
       
     5     contentWidth: column.width; contentHeight: column.height
       
     6     pressDelay: 200; boundsBehavior: Flickable.StopAtBounds; interactive: false
       
     7     maximumFlickVelocity: 2000
       
     8 
       
     9     Column {
       
    10         id: column
       
    11         Repeater {
       
    12             model: 4
       
    13             Rectangle { width: 200; height: 300; color: "blue" }
       
    14         }
       
    15     }
       
    16 }