summaryrefslogtreecommitdiff
path: root/src/imports/xmllistmodel/plugins.qmltypes
diff options
context:
space:
mode:
authorFrederik Gladhorn <frederik.gladhorn@qt.io>2018-06-16 21:45:35 +0200
committerFrederik Gladhorn <frederik.gladhorn@qt.io>2018-08-28 13:40:15 +0000
commit8c6e24329ecd65f364654b1ca2b6a273f0826a8b (patch)
tree5900084d1c682616e35842b2f5dd61a06f87b4af /src/imports/xmllistmodel/plugins.qmltypes
parentb9b941945dc63a48652576c806e10dfeb15005e9 (diff)
downloadqtxmlpatterns-8c6e24329ecd65f364654b1ca2b6a273f0826a8b.tar.gz
Move xmllistmodel to xmlpatterns
Change-Id: Ida2a23ae93b8625638397ee7ae10f32b9dcd2043 Reviewed-by: Simon Hausmann <simon.hausmann@qt.io>
Diffstat (limited to 'src/imports/xmllistmodel/plugins.qmltypes')
-rw-r--r--src/imports/xmllistmodel/plugins.qmltypes59
1 files changed, 59 insertions, 0 deletions
diff --git a/src/imports/xmllistmodel/plugins.qmltypes b/src/imports/xmllistmodel/plugins.qmltypes
new file mode 100644
index 0000000..cc675d5
--- /dev/null
+++ b/src/imports/xmllistmodel/plugins.qmltypes
@@ -0,0 +1,59 @@
+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.XmlListModel 2.0'
+
+Module {
+ dependencies: ["QtQuick 2.8"]
+ Component {
+ name: "QQuickXmlListModel"
+ defaultProperty: "roles"
+ prototype: "QAbstractListModel"
+ exports: ["QtQuick.XmlListModel/XmlListModel 2.0"]
+ exportMetaObjectRevisions: [0]
+ Enum {
+ name: "Status"
+ values: {
+ "Null": 0,
+ "Ready": 1,
+ "Loading": 2,
+ "Error": 3
+ }
+ }
+ Property { name: "status"; type: "Status"; isReadonly: true }
+ Property { name: "progress"; type: "double"; isReadonly: true }
+ Property { name: "source"; type: "QUrl" }
+ Property { name: "xml"; type: "string" }
+ Property { name: "query"; type: "string" }
+ Property { name: "namespaceDeclarations"; type: "string" }
+ Property { name: "roles"; type: "QQuickXmlListModelRole"; isList: true; isReadonly: true }
+ Property { name: "count"; type: "int"; isReadonly: true }
+ Signal {
+ name: "statusChanged"
+ Parameter { type: "QQuickXmlListModel::Status" }
+ }
+ Signal {
+ name: "progressChanged"
+ Parameter { name: "progress"; type: "double" }
+ }
+ Method { name: "reload" }
+ Method {
+ name: "get"
+ type: "QQmlV4Handle"
+ Parameter { name: "index"; type: "int" }
+ }
+ Method { name: "errorString"; type: "string" }
+ }
+ Component {
+ name: "QQuickXmlListModelRole"
+ prototype: "QObject"
+ exports: ["QtQuick.XmlListModel/XmlRole 2.0"]
+ exportMetaObjectRevisions: [0]
+ Property { name: "name"; type: "string" }
+ Property { name: "query"; type: "string" }
+ Property { name: "isKey"; type: "bool" }
+ }
+}