equal
deleted
inserted
replaced
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 |