aboutsummaryrefslogtreecommitdiffstats
path: root/tests/auto/qml/qqmllanguage/data/instanceof_qtquick_composite.qml
blob: 78fc112805b5354df8706a0427e0d47120647a11 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
import QtQuick 2.0
import "instanceOf"

Item {
    id: itemInstance

    Rectangle {
        id: rectangleInstance
    }

    MouseArea {
        id: mouseAreaInstance
    }

    CustomRectangle {
        id: customRectangleInstance
    }
    CustomRectangleWithProp {
        id: customRectangleWithPropInstance
    }
    CustomMouseArea {
        id: customMouseAreaInstance
    }
}