summaryrefslogtreecommitdiff
path: root/qmltypes
diff options
context:
space:
mode:
authorRobert Griebl <robert.griebl@qt.io>2022-05-23 19:05:50 +0200
committerRobert Griebl <robert.griebl@qt.io>2022-05-31 00:26:57 +0200
commit33777a820f6fda597065cf77dc90aff34bbcc4f5 (patch)
tree6e90c7b21589fdf728ce34123cf3e182f7c32dd3 /qmltypes
parent9c62c010b911ca93a07b8d23e9cc3b4b56518af5 (diff)
downloadqtapplicationmanager-33777a820f6fda597065cf77dc90aff34bbcc4f5.tar.gz
Fix the qmltypes generation
* enums were not exported at all * methods with pointer returns were not flagged correctly * added an option to specify a prototype different from the C++ base class * added an option to specify how many super classes up the generator is considering (used when the exported class is only a implementation of a virtual base class) Change-Id: I377c732362c34796e156067fd79ca0df772315d6 Fixes: QTBUG-103229 Task-number: QTBUG-103266 Reviewed-by: Bernd Weimer <bernd.weimer@qt.io>
Diffstat (limited to 'qmltypes')
-rw-r--r--qmltypes/QtApplicationManager/Application/plugins.qmltypes39
-rw-r--r--qmltypes/QtApplicationManager/SystemUI/plugins.qmltypes38
-rw-r--r--qmltypes/QtApplicationManager/plugins.qmltypes8
3 files changed, 62 insertions, 23 deletions
diff --git a/qmltypes/QtApplicationManager/Application/plugins.qmltypes b/qmltypes/QtApplicationManager/Application/plugins.qmltypes
index 2caf0507..067171e5 100644
--- a/qmltypes/QtApplicationManager/Application/plugins.qmltypes
+++ b/qmltypes/QtApplicationManager/Application/plugins.qmltypes
@@ -7,7 +7,7 @@ import QtQuick.tooling 1.2
// appman-dumpqmltypes
Module {
- dependencies: [ "QtQuick.Window 2.2", "QtQuick 2.2" ]
+ dependencies: [ "QtQuick.Window 6.2", "QtQuick 6.2" ]
Component {
name: "IntentHandler"
exports: [ "QtApplicationManager.Application/IntentHandler 2.0" ]
@@ -49,14 +49,45 @@ Module {
}
}
Component {
- name: "DBusApplicationInterface"
+ name: "ApplicationInterface"
exports: [ "QtApplicationManager.Application/ApplicationInterface 2.0" ]
exportMetaObjectRevisions: [ 0 ]
- prototype: "ApplicationInterface"
+ prototype: "QObject"
isCreatable: false
+ Property { name: "applicationId"; type: "string"; isReadonly: true }
+ Property { name: "name"; type: "QVariantMap"; isReadonly: true }
+ Property { name: "icon"; type: "QUrl"; isReadonly: true }
+ Property { name: "version"; type: "string"; isReadonly: true }
+ Property { name: "systemProperties"; type: "QVariantMap"; isReadonly: true }
+ Property { name: "applicationProperties"; type: "QVariantMap"; isReadonly: true }
+ Signal {
+ name: "quit"
+ }
+ Signal {
+ name: "memoryLowWarning"
+ }
+ Signal {
+ name: "memoryCriticalWarning"
+ }
+ Signal {
+ name: "openDocument"
+ Parameter { name: "documentUrl"; type: "string"; }
+ Parameter { name: "mimeType"; type: "string"; }
+ }
+ Signal {
+ name: "interfaceCreated"
+ Parameter { name: "interfaceName"; type: "string"; }
+ }
+ Signal {
+ name: "slowAnimationsChanged"
+ Parameter { name: "isSlow"; type: "bool"; }
+ }
+ Method {
+ name: "finishedInitialization"
+ }
Method {
name: "createNotification"
- type: "Notification*"
+ type: "Notification"; isPointer: true;
}
Method {
name: "acknowledgeQuit"
diff --git a/qmltypes/QtApplicationManager/SystemUI/plugins.qmltypes b/qmltypes/QtApplicationManager/SystemUI/plugins.qmltypes
index 814d3c3f..8bc2df63 100644
--- a/qmltypes/QtApplicationManager/SystemUI/plugins.qmltypes
+++ b/qmltypes/QtApplicationManager/SystemUI/plugins.qmltypes
@@ -7,7 +7,7 @@ import QtQuick.tooling 1.2
// appman-dumpqmltypes
Module {
- dependencies: [ "QtQuick.Window 2.2", "QtQuick 2.2" ]
+ dependencies: [ "QtQuick.Window 6.2", "QtQuick 6.2" ]
Component {
name: "ProcessStatus"
exports: [ "QtApplicationManager.SystemUI/ProcessStatus 2.0" ]
@@ -50,7 +50,7 @@ Module {
name: "IntentModel"
exports: [ "QtApplicationManager.SystemUI/IntentModel 2.0" ]
exportMetaObjectRevisions: [ 0 ]
- prototype: "QSortFilterProxyModel"
+ prototype: "QObject"
Property { name: "count"; type: "int"; isReadonly: true }
Property { name: "filterFunction"; type: "QJSValue"; }
Property { name: "sortFunction"; type: "QJSValue"; }
@@ -98,6 +98,7 @@ Module {
exportMetaObjectRevisions: [ 0 ]
prototype: "QObject"
isCreatable: false
+ Enum { name: "Visibility"; values: [ "Public", "Private" ] }
Property { name: "intentId"; type: "string"; isReadonly: true }
Property { name: "packageId"; type: "string"; isReadonly: true }
Property { name: "applicationId"; type: "string"; isReadonly: true }
@@ -142,38 +143,38 @@ Module {
}
Method {
name: "intent"
- type: "Intent*"
+ type: "Intent"; isPointer: true;
Parameter { name: "index"; type: "int"; }
}
Method {
name: "applicationIntent"
- type: "Intent*"
+ type: "Intent"; isPointer: true;
Parameter { name: "intentId"; type: "string"; }
Parameter { name: "applicationId"; type: "string"; }
Parameter { name: "parameters"; type: "QVariantMap"; }
}
Method {
name: "applicationIntent"
- type: "Intent*"
+ type: "Intent"; isPointer: true;
Parameter { name: "intentId"; type: "string"; }
Parameter { name: "applicationId"; type: "string"; }
}
Method {
name: "packageIntent"
- type: "Intent*"
+ type: "Intent"; isPointer: true;
Parameter { name: "intentId"; type: "string"; }
Parameter { name: "packageId"; type: "string"; }
Parameter { name: "parameters"; type: "QVariantMap"; }
}
Method {
name: "packageIntent"
- type: "Intent*"
+ type: "Intent"; isPointer: true;
Parameter { name: "intentId"; type: "string"; }
Parameter { name: "packageId"; type: "string"; }
}
Method {
name: "packageIntent"
- type: "Intent*"
+ type: "Intent"; isPointer: true;
Parameter { name: "intentId"; type: "string"; }
Parameter { name: "packageId"; type: "string"; }
Parameter { name: "applicationId"; type: "string"; }
@@ -181,7 +182,7 @@ Module {
}
Method {
name: "packageIntent"
- type: "Intent*"
+ type: "Intent"; isPointer: true;
Parameter { name: "intentId"; type: "string"; }
Parameter { name: "packageId"; type: "string"; }
Parameter { name: "applicationId"; type: "string"; }
@@ -245,6 +246,7 @@ Module {
exportMetaObjectRevisions: [ 0 ]
prototype: "QObject"
isCreatable: false
+ Enum { name: "ContentState"; values: [ "SurfaceWithContent", "SurfaceNoContent", "NoSurface" ] }
Property { name: "size"; type: "QSize"; isReadonly: true }
Property { name: "contentState"; type: "ContentState"; isReadonly: true }
Property { name: "application"; type: "Application"; isPointer: true; isReadonly: true }
@@ -348,7 +350,7 @@ Module {
}
Method {
name: "window"
- type: "Window*"
+ type: "Window"; isPointer: true;
Parameter { name: "index"; type: "int"; }
}
Method {
@@ -363,7 +365,7 @@ Module {
}
Method {
name: "addExtension"
- type: "QObject*"
+ type: "QObject"; isPointer: true;
Parameter { name: "component"; type: "QQmlComponent"; isPointer: true; }
}
Method {
@@ -379,12 +381,15 @@ Module {
exportMetaObjectRevisions: [ 0 ]
prototype: "QObject"
isCreatable: false
+ Enum { name: "ExitStatus"; values: [ "NormalExit", "CrashExit", "ForcedExit" ] }
+ Enum { name: "RunState"; values: [ "NotRunning", "StartingUp", "Running", "ShuttingDown" ] }
+ Enum { name: "ProcessError"; values: [ "FailedToStart", "Crashed", "Timedout", "ReadError", "WriteError", "UnknownError" ] }
}
Component {
name: "ApplicationModel"
exports: [ "QtApplicationManager.SystemUI/ApplicationModel 2.0" ]
exportMetaObjectRevisions: [ 0 ]
- prototype: "QSortFilterProxyModel"
+ prototype: "QObject"
Property { name: "count"; type: "int"; isReadonly: true }
Property { name: "filterFunction"; type: "QJSValue"; }
Property { name: "sortFunction"; type: "QJSValue"; }
@@ -470,6 +475,7 @@ Module {
exportMetaObjectRevisions: [ 0 ]
prototype: "QObject"
isCreatable: false
+ Enum { name: "State"; values: [ "Installed", "BeingInstalled", "BeingUpdated", "BeingDowngraded", "BeingRemoved" ] }
Property { name: "id"; type: "string"; isReadonly: true }
Property { name: "name"; type: "string"; isReadonly: true }
Property { name: "names"; type: "QVariantMap"; isReadonly: true }
@@ -679,12 +685,12 @@ Module {
}
Method {
name: "package"
- type: "Package*"
+ type: "Package"; isPointer: true;
Parameter { name: "index"; type: "int"; }
}
Method {
name: "package"
- type: "Package*"
+ type: "Package"; isPointer: true;
Parameter { name: "id"; type: "string"; }
}
Method {
@@ -985,12 +991,12 @@ Module {
}
Method {
name: "application"
- type: "Application*"
+ type: "Application"; isPointer: true;
Parameter { name: "index"; type: "int"; }
}
Method {
name: "application"
- type: "Application*"
+ type: "Application"; isPointer: true;
Parameter { name: "id"; type: "string"; }
}
Method {
diff --git a/qmltypes/QtApplicationManager/plugins.qmltypes b/qmltypes/QtApplicationManager/plugins.qmltypes
index 28ad1058..2089cf4f 100644
--- a/qmltypes/QtApplicationManager/plugins.qmltypes
+++ b/qmltypes/QtApplicationManager/plugins.qmltypes
@@ -7,7 +7,7 @@ import QtQuick.tooling 1.2
// appman-dumpqmltypes
Module {
- dependencies: [ "QtQuick.Window 2.2", "QtQuick 2.2" ]
+ dependencies: [ "QtQuick.Window 6.2", "QtQuick 6.2" ]
Component {
name: "MonitorModel"
exports: [ "QtApplicationManager/MonitorModel 2.0" ]
@@ -139,6 +139,7 @@ Module {
exportMetaObjectRevisions: [ 0 ]
prototype: "QObject"
isCreatable: false
+ Enum { name: "Direction"; values: [ "ToSystem", "ToApplication" ] }
Property { name: "requestId"; type: "QUuid"; isReadonly: true }
Property { name: "direction"; type: "Direction"; isReadonly: true }
Property { name: "intentId"; type: "string"; isReadonly: true }
@@ -171,13 +172,13 @@ Module {
isSingleton: true
Method {
name: "sendIntentRequest"
- type: "IntentClientRequest*"
+ type: "IntentClientRequest"; isPointer: true;
Parameter { name: "intentId"; type: "string"; }
Parameter { name: "parameters"; type: "QVariantMap"; }
}
Method {
name: "sendIntentRequest"
- type: "IntentClientRequest*"
+ type: "IntentClientRequest"; isPointer: true;
Parameter { name: "intentId"; type: "string"; }
Parameter { name: "applicationId"; type: "string"; }
Parameter { name: "parameters"; type: "QVariantMap"; }
@@ -188,6 +189,7 @@ Module {
exports: [ "QtApplicationManager/Notification 2.0" ]
exportMetaObjectRevisions: [ 0 ]
prototype: "QObject"
+ Enum { name: "Priority"; values: [ "Low", "Normal", "Critical" ] }
Property { name: "notificationId"; type: "uint"; isReadonly: true }
Property { name: "visible"; type: "bool"; }
Property { name: "summary"; type: "string"; }