aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/timeline/plugins.qmltypes
blob: 84191294136920d127ec16ea6caad2ae96210aad (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
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: ["QtQuick 2.0"]
    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: "QQuickTimeline"
        defaultProperty: "keyframeGroups"
        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: "keyframeGroups"; 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" }
    }
}