Rename Qt Quick-specific classes to QQuick*
[profile/ivi/qtdeclarative.git] / tests / auto / declarative / qquickmousearea / data / preventstealing.qml
1 import QtQuick 2.0
2
3 Flickable {
4     property bool stealing: true
5     width: 200
6     height: 200
7     contentWidth: 400
8     contentHeight: 400
9     Rectangle {
10         color: "black"
11         width: 400
12         height: 400
13         Rectangle {
14             x: 50; y: 50
15             width: 100; height: 100
16             color: "steelblue"
17             MouseArea {
18                 objectName: "mousearea"
19                 anchors.fill: parent
20                 preventStealing: stealing
21             }
22         }
23     }
24 }