aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2019-05-16 09:49:09 +0200
committerThomas Hartmann <thomas.hartmann@qt.io>2019-05-16 07:49:43 +0000
commit0cfb29c88901e8b69ffdb996fc4ea7ba1098e033 (patch)
tree559ebfe37369fda76ea7bf0fb154a2db21144004
parent1e3367bb83ff5c15241e80e00b31dbd70072523f (diff)
Fix plugins.qmltypes
Change-Id: I6144f307db04c6cb2bab1389a404dd3a1d59209f Reviewed-by: Thomas Hartmann <thomas.hartmann@qt.io>
-rw-r--r--src/imports/timeline/plugins.qmltypes84
1 files changed, 3 insertions, 81 deletions
diff --git a/src/imports/timeline/plugins.qmltypes b/src/imports/timeline/plugins.qmltypes
index b77b587..b0b1b57 100644
--- a/src/imports/timeline/plugins.qmltypes
+++ b/src/imports/timeline/plugins.qmltypes
@@ -7,45 +7,7 @@ import QtQuick.tooling 1.2
// '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" }
- }
+ dependencies: ["QtQuick 2.12"]
Component {
name: "QQuickKeyframe"
prototype: "QObject"
@@ -67,54 +29,15 @@ Module {
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"
+ 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: "keyframes"; type: "QQuickKeyframeGroup"; isList: true; isReadonly: true }
+ Property { name: "keyframeGroups"; type: "QQuickKeyframeGroup"; isList: true; isReadonly: true }
Property { name: "animations"; type: "QQuickTimelineAnimation"; isList: true; isReadonly: true }
Property { name: "enabled"; type: "bool" }
}
@@ -125,6 +48,5 @@ Module {
exportMetaObjectRevisions: [0]
Property { name: "pingPong"; type: "bool" }
Signal { name: "finished" }
- Signal { name: "pingPongChanged" }
}
}