summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Hartmann <thomas.hartmann@qt.io>2020-02-13 13:05:14 +0100
committerThomas Hartmann <thomas.hartmann@qt.io>2020-02-14 15:31:08 +0000
commitf5389e57a9298f878fb4ada1ebeee1dd4fee6710 (patch)
tree13de7bd676f358a171a83d35868786bddd15daee
parent2f13a2a029cfdcfc7df0df10d24bcb2271f91f07 (diff)
downloadqt-creator-f5389e57a9298f878fb4ada1ebeee1dd4fee6710.tar.gz
QmlDesigner: Add animations to item library
Change-Id: I04272988e4d46ae9726a0dbdfc9433fd0b026607 Reviewed-by: Brook Cronin <brook.cronin@qt.io> Reviewed-by: Tim Jenssen <tim.jenssen@qt.io>
-rw-r--r--src/plugins/qmldesigner/qtquickplugin/quick.metainfo145
1 files changed, 145 insertions, 0 deletions
diff --git a/src/plugins/qmldesigner/qtquickplugin/quick.metainfo b/src/plugins/qmldesigner/qtquickplugin/quick.metainfo
index df983ea1d9..a8562bf18f 100644
--- a/src/plugins/qmldesigner/qtquickplugin/quick.metainfo
+++ b/src/plugins/qmldesigner/qtquickplugin/quick.metainfo
@@ -275,4 +275,149 @@ MetaInfo {
Property { name: "height"; type: "int"; value: 400; }
}
}
+
+ Type {
+ name: "QtQuick.PropertyAnimation"
+ icon: ":/qtquickplugin/images/item-icon16.png"
+
+ Hints {
+ visibleInNavigator: true
+ canBeDroppedInNavigator: true
+ canBeDroppedInFormEditor: false
+ }
+
+ ItemLibraryEntry {
+ name: "Property Animation"
+ category: "Qt Quick - Animation"
+ libraryIcon: ":/qtquickplugin/images/item-icon.png"
+ version: "2.0"
+ }
+ }
+
+ Type {
+ name: "QtQuick.PauseAnimation"
+ icon: ":/qtquickplugin/images/item-icon16.png"
+
+ Hints {
+ visibleInNavigator: true
+ canBeDroppedInNavigator: true
+ canBeDroppedInFormEditor: false
+ }
+
+ ItemLibraryEntry {
+ name: "Pause Animation"
+ category: "Qt Quick - Animation"
+ libraryIcon: ":/qtquickplugin/images/item-icon.png"
+ version: "2.0"
+ }
+ }
+
+ Type {
+ name: "QtQuick.SequentialAnimation"
+ icon: ":/qtquickplugin/images/item-icon16.png"
+
+ Hints {
+ visibleInNavigator: true
+ canBeDroppedInNavigator: true
+ canBeDroppedInFormEditor: false
+ }
+
+ ItemLibraryEntry {
+ name: "Sequential Animation"
+ category: "Qt Quick - Animation"
+ libraryIcon: ":/qtquickplugin/images/item-icon.png"
+ version: "2.0"
+ }
+ }
+
+ Type {
+ name: "QtQuick.ParallelAnimation"
+ icon: ":/qtquickplugin/images/item-icon16.png"
+
+ Hints {
+ visibleInNavigator: true
+ canBeDroppedInNavigator: true
+ canBeDroppedInFormEditor: false
+ }
+
+ ItemLibraryEntry {
+ name: "Parallel Animation"
+ category: "Qt Quick - Animation"
+ libraryIcon: ":/qtquickplugin/images/item-icon.png"
+ version: "2.0"
+ }
+ }
+
+ Type {
+ name: "QtQuick.PropertyAction"
+ icon: ":/qtquickplugin/images/item-icon16.png"
+
+ Hints {
+ visibleInNavigator: true
+ canBeDroppedInNavigator: true
+ canBeDroppedInFormEditor: false
+ }
+
+ ItemLibraryEntry {
+ name: "Property Action"
+ category: "Qt Quick - Animation"
+ libraryIcon: ":/qtquickplugin/images/item-icon.png"
+ version: "2.0"
+ }
+ }
+
+ Type {
+ name: "QtQuick.ScriptAction"
+ icon: ":/qtquickplugin/images/item-icon16.png"
+
+ Hints {
+ visibleInNavigator: true
+ canBeDroppedInNavigator: true
+ canBeDroppedInFormEditor: false
+ }
+
+ ItemLibraryEntry {
+ name: "Script Action"
+ category: "Qt Quick - Animation"
+ libraryIcon: ":/qtquickplugin/images/item-icon.png"
+ version: "2.0"
+ }
+ }
+
+ Type {
+ name: "QtQuick.ColorAnimation"
+ icon: ":/qtquickplugin/images/item-icon16.png"
+
+ Hints {
+ visibleInNavigator: true
+ canBeDroppedInNavigator: true
+ canBeDroppedInFormEditor: false
+ }
+
+ ItemLibraryEntry {
+ name: "ColorAnimation"
+ category: "Qt Quick - Animation"
+ libraryIcon: ":/qtquickplugin/images/item-icon.png"
+ version: "2.0"
+ }
+ }
+
+ Type {
+ name: "QtQuick.NumberAnimation"
+ icon: ":/qtquickplugin/images/item-icon16.png"
+
+ Hints {
+ visibleInNavigator: true
+ canBeDroppedInNavigator: true
+ canBeDroppedInFormEditor: false
+ }
+
+ ItemLibraryEntry {
+ name: "Number Animation"
+ category: "Qt Quick - Animation"
+ libraryIcon: ":/qtquickplugin/images/item-icon.png"
+ version: "2.0"
+ }
+ }
+
}