aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/timeline/plugins.qmltypes
blob: b77b5877a73799680fa4ce3f12a7180c5acf68ca (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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
import QtQuick.tooling 1.2

// This file describes the plugin-supplied types contained in the library.
// It is used for QML tooling purposes only.
//
// This file was auto-generated by:
// 'qmlplugindump -nonrelocatable QtQuick.Timeline 1.0'

Module {
    dependencies: []
    Component {
        name: "QQuickAbstractAnimation"
        prototype: "QObject"
        Enum {
            name: "Loops"
            values: {
                "Infinite": -2
            }
        }
        Property { name: "running"; type: "bool" }
        Property { name: "paused"; type: "bool" }
        Property { name: "alwaysRunToEnd"; type: "bool" }
        Property { name: "loops"; type: "int" }
        Signal { name: "started" }
        Signal { name: "stopped" }
        Signal {
            name: "runningChanged"
            Parameter { type: "bool" }
        }
        Signal {
            name: "pausedChanged"
            Parameter { type: "bool" }
        }
        Signal {
            name: "alwaysRunToEndChanged"
            Parameter { type: "bool" }
        }
        Signal {
            name: "loopCountChanged"
            Parameter { type: "int" }
        }
        Method { name: "restart" }
        Method { name: "start" }
        Method { name: "pause" }
        Method { name: "resume" }
        Method { name: "stop" }
        Method { name: "complete" }
    }
    Component {
        name: "QQuickKeyframe"
        prototype: "QObject"
        exports: ["QtQuick.Timeline/Keyframe 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "frame"; type: "double" }
        Property { name: "easing"; type: "QEasingCurve" }
        Property { name: "value"; type: "QVariant" }
        Signal { name: "easingCurveChanged" }
    }
    Component {
        name: "QQuickKeyframeGroup"
        defaultProperty: "keyframes"
        prototype: "QObject"
        exports: ["QtQuick.Timeline/KeyframeGroup 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "target"; type: "QObject"; isPointer: true }
        Property { name: "property"; type: "string" }
        Property { name: "keyframes"; type: "QQuickKeyframe"; isList: true; isReadonly: true }
    }
    Component {
        name: "QQuickNumberAnimation"
        prototype: "QQuickPropertyAnimation"
        Property { name: "from"; type: "double" }
        Property { name: "to"; type: "double" }
    }
    Component {
        name: "QQuickPropertyAnimation"
        prototype: "QQuickAbstractAnimation"
        Property { name: "duration"; type: "int" }
        Property { name: "from"; type: "QVariant" }
        Property { name: "to"; type: "QVariant" }
        Property { name: "easing"; type: "QEasingCurve" }
        Property { name: "target"; type: "QObject"; isPointer: true }
        Property { name: "property"; type: "string" }
        Property { name: "properties"; type: "string" }
        Property { name: "targets"; type: "QObject"; isList: true; isReadonly: true }
        Property { name: "exclude"; type: "QObject"; isList: true; isReadonly: true }
        Signal {
            name: "durationChanged"
            Parameter { type: "int" }
        }
        Signal {
            name: "fromChanged"
            Parameter { type: "QVariant" }
        }
        Signal {
            name: "toChanged"
            Parameter { type: "QVariant" }
        }
        Signal {
            name: "easingChanged"
            Parameter { type: "QEasingCurve" }
        }
        Signal {
            name: "propertiesChanged"
            Parameter { type: "string" }
        }
    }
    Component {
        name: "QQuickTimeline"
        defaultProperty: "keyframes"
        prototype: "QObject"
        exports: ["QtQuick.Timeline/Timeline 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "startFrame"; type: "double" }
        Property { name: "endFrame"; type: "double" }
        Property { name: "currentFrame"; type: "double" }
        Property { name: "keyframes"; type: "QQuickKeyframeGroup"; isList: true; isReadonly: true }
        Property { name: "animations"; type: "QQuickTimelineAnimation"; isList: true; isReadonly: true }
        Property { name: "enabled"; type: "bool" }
    }
    Component {
        name: "QQuickTimelineAnimation"
        prototype: "QQuickNumberAnimation"
        exports: ["QtQuick.Timeline/TimelineAnimation 1.0"]
        exportMetaObjectRevisions: [0]
        Property { name: "pingPong"; type: "bool" }
        Signal { name: "finished" }
        Signal { name: "pingPongChanged" }
    }
}