aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/quick/touchmouse/data/twoitems.qml
blob: afbf35fe1ae4394ba33466a05862c99b8bcebf2d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
import QtQuick 2.0
import Qt.test 1.0

Rectangle {
    id: root
    width: 320
    height: 480
    color: "green"

    EventItem {
        objectName: "eventItem1"
        height: 200
        width: 100

        EventItem {
            objectName: "eventItem2"
            height: 100
            width: 100
        }
    }
}