aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/extras
diff options
context:
space:
mode:
authorJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-18 16:19:56 +0200
committerJ-P Nurmi <jpnurmi@theqtcompany.com>2015-06-18 14:45:54 +0000
commitf8e706403bc0d0c2ba2007f9edd01b60d9ef8dc6 (patch)
tree2ebef840d2b424e4c0b08cd9beb58b6c25f278a0 /src/imports/extras
parentc803830c02fb573582cd848185460ba65b4529e5 (diff)
Add plugins.qmltypes
Change-Id: Ic8f29953a7198664ec4be051abc2fc42b92a4435 Reviewed-by: J-P Nurmi <jpnurmi@theqtcompany.com>
Diffstat (limited to 'src/imports/extras')
-rw-r--r--src/imports/extras/plugins.qmltypes67
1 files changed, 67 insertions, 0 deletions
diff --git a/src/imports/extras/plugins.qmltypes b/src/imports/extras/plugins.qmltypes
new file mode 100644
index 00000000..9741b463
--- /dev/null
+++ b/src/imports/extras/plugins.qmltypes
@@ -0,0 +1,67 @@
+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.Extras 2.0'
+
+Module {
+ dependencies: [
+ "QtQuick 2.6",
+ "QtQuick.Controls 2.0",
+ "QtQuick.Window 2.2"
+ ]
+ Component {
+ name: "QQuickDrawer"
+ defaultProperty: "contentItem"
+ prototype: "QQuickControl"
+ exports: ["QtQuick.Extras/AbstractDrawer 2.0"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "edge"; type: "Qt::Edge" }
+ Property { name: "position"; type: "double" }
+ Property { name: "contentItem"; type: "QQuickItem"; isPointer: true }
+ Property { name: "animation"; type: "QQuickPropertyAnimation"; isPointer: true }
+ Signal { name: "clicked" }
+ Method { name: "open" }
+ Method { name: "close" }
+ }
+ Component {
+ name: "QQuickSwipeView"
+ defaultProperty: "contentData"
+ prototype: "QQuickContainer"
+ exports: ["QtQuick.Extras/AbstractSwipeView 2.0"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "count"; type: "int"; isReadonly: true }
+ Property { name: "currentIndex"; type: "int" }
+ Property { name: "model"; type: "QVariant"; isReadonly: true }
+ Property { name: "contentData"; type: "QObject"; isList: true; isReadonly: true }
+ Method {
+ name: "setCurrentIndex"
+ Parameter { name: "index"; type: "int" }
+ }
+ Method {
+ name: "itemAt"
+ type: "QQuickItem*"
+ Parameter { name: "index"; type: "int" }
+ }
+ Method {
+ name: "addItem"
+ Parameter { name: "item"; type: "QQuickItem"; isPointer: true }
+ }
+ Method {
+ name: "insertItem"
+ Parameter { name: "index"; type: "int" }
+ Parameter { name: "item"; type: "QQuickItem"; isPointer: true }
+ }
+ Method {
+ name: "moveItem"
+ Parameter { name: "from"; type: "int" }
+ Parameter { name: "to"; type: "int" }
+ }
+ Method {
+ name: "removeItem"
+ Parameter { name: "index"; type: "int" }
+ }
+ }
+}