aboutsummaryrefslogtreecommitdiffstats
path: root/share/qtcreator/qmldesigner/itemLibrary/qml.metainfo
blob: 4bef02ddd3925cdb5e757b7115630d267bf82a81 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
MetaInfo {

    Type {
        name: "QML.Component"
        icon: "images/component-icon16.png"

        Hints {
            canBeDroppedInNavigator: true
            canBeDroppedInFormEditor: false
        }

        ItemLibraryEntry {
            name: "Component"
            category: "e.Qt Quick - Instancers"
            libraryIcon: "images/component-icon.png"
            version: "1.0"

            QmlSource { source: "source/component.qml" }
            toolTip: qsTr("Allows you to define components inline, within a QML document.")
        }

        ItemLibraryEntry {
            name: "Component 3D"
            category: "Instancers"
            libraryIcon: "images/component-icon.png"
            version: "1.0"
            requiredImport: "QtQuick3D"

            QmlSource { source: "source/component3d.qml" }
            toolTip: qsTr("Allows you to define 3D components inline, within a QML document.")
        }
    }

Type {
    name: "QtQml.Base.Timer"
    icon: "images/timer-16px.png"

    Hints {
        visibleInNavigator: true
        canBeDroppedInNavigator: true
        canBeDroppedInFormEditor: false
        canBeContainer: false
    }

    ItemLibraryEntry {
        name: "Timer"
        category: "d.Qt Quick - Animation"
        libraryIcon: "images/timer-24px.png"
        version: "2.0"
        toolTip: qsTr(" Triggers an action at a given time.")
    }
}
}