summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2019-04-11 12:19:01 +0200
committerKai Koehne <kai.koehne@qt.io>2019-04-12 12:12:48 +0000
commitacddb0676cafdc83edd08aee87181bf5602d6387 (patch)
treea0f0844db4d4c3942b2c1255becdb45fb01bb6fd
parent686e2ace41f4e0c8ec89b5864f898bf2ac561c5e (diff)
Update plugins.qmltypesv5.13.0-beta3
Change-Id: I0ad674b4855ebf0152a2c13a354fc06a14c11b46 Reviewed-by: Ulf Hermann <ulf.hermann@qt.io>
-rw-r--r--src/imports/scxmlstatemachine/plugins.qmltypes25
1 files changed, 13 insertions, 12 deletions
diff --git a/src/imports/scxmlstatemachine/plugins.qmltypes b/src/imports/scxmlstatemachine/plugins.qmltypes
index a186220..f0b5a20 100644
--- a/src/imports/scxmlstatemachine/plugins.qmltypes
+++ b/src/imports/scxmlstatemachine/plugins.qmltypes
@@ -7,7 +7,7 @@ import QtQuick.tooling 1.2
// 'qmlplugindump -nonrelocatable QtScxml 5.13'
Module {
- dependencies: ["QtQuick 2.8"]
+ dependencies: ["QtQuick 2.0"]
Component {
name: "QScxmlEventConnection"
prototype: "QObject"
@@ -32,7 +32,11 @@ Module {
}
Component {
name: "QScxmlStateMachine"
+ defaultProperty: "children"
prototype: "QObject"
+ exports: ["QtScxml/StateMachine 5.8"]
+ isCreatable: false
+ exportMetaObjectRevisions: [508]
Property { name: "running"; type: "bool" }
Property { name: "initialized"; type: "bool"; isReadonly: true }
Property { name: "dataModel"; type: "QScxmlDataModel"; isPointer: true }
@@ -42,7 +46,8 @@ Module {
Property { name: "name"; type: "string"; isReadonly: true }
Property { name: "invoked"; type: "bool"; isReadonly: true }
Property { name: "parseErrors"; type: "QVector<QScxmlError>"; isReadonly: true }
- Property { name: "loader"; type: "QScxmlParser::Loader"; isPointer: true }
+ Property { name: "loader"; type: "QScxmlCompiler::Loader"; isPointer: true }
+ Property { name: "tableData"; type: "QScxmlTableData"; isPointer: true }
Signal {
name: "runningChanged"
Parameter { name: "running"; type: "bool" }
@@ -72,7 +77,11 @@ Module {
}
Signal {
name: "loaderChanged"
- Parameter { name: "loader"; type: "QScxmlParser::Loader"; isPointer: true }
+ Parameter { name: "loader"; type: "QScxmlCompiler::Loader"; isPointer: true }
+ }
+ Signal {
+ name: "tableDataChanged"
+ Parameter { name: "tableData"; type: "QScxmlTableData"; isPointer: true }
}
Method { name: "start" }
Method { name: "stop" }
@@ -116,15 +125,7 @@ Module {
type: "bool"
Parameter { name: "target"; type: "string" }
}
- }
- Component {
- name: "QScxmlStateMachineExtended"
- defaultProperty: "children"
- prototype: "QScxmlStateMachine"
- exports: ["QtScxml/StateMachine 5.8"]
- isCreatable: false
- exportMetaObjectRevisions: [0]
- Property { name: "children"; type: "QObject"; isList: true; isReadonly: true }
+ Property { name: "children"; revision: 508; type: "QObject"; isList: true; isReadonly: true }
}
Component {
name: "QScxmlStateMachineLoader"