aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/timeline/plugins.qmltypes
blob: bc583263a2bd8c56da196bc46898dbf51f1af82e (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
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: "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: "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: "QQuickKeyframes"; isList: true; isReadonly: true }
        Property { name: "enabled"; type: "bool" }
    }
    Component {
        name: "QQuickKeyframes"
        defaultProperty: "keyframes"
        prototype: "QObject"
        exports: ["QtQuick.Timeline/Keyframes 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 }
    }
}