Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
[nemo-qml-plugin-notifications] Update plugins.qmltypes. Contributes …
…to JB#52306
  • Loading branch information
martyone committed Dec 16, 2020
1 parent 2bd77f3 commit 29c0610
Showing 1 changed file with 46 additions and 2 deletions.
48 changes: 46 additions & 2 deletions src/plugin/plugins.qmltypes
Expand Up @@ -29,6 +29,12 @@ Module {
"Closed": 2
}
}
Enum {
name: "Progress"
values: {
"ProgressIndeterminate": -1
}
}
Property { name: "category"; type: "string" }
Property { name: "appName"; type: "string" }
Property { name: "replacesId"; type: "uint" }
Expand All @@ -41,17 +47,25 @@ Module {
Property { name: "timestamp"; type: "QDateTime" }
Property { name: "previewSummary"; type: "string" }
Property { name: "previewBody"; type: "string" }
Property { name: "subText"; type: "string" }
Property { name: "sound"; type: "string" }
Property { name: "iconData"; type: "QImage" }
Property { name: "itemCount"; type: "int" }
Property { name: "remoteActions"; type: "QVariantList" }
Property { name: "isTransient"; type: "bool" }
Property { name: "progress"; type: "QVariant" }
Property { name: "remoteDBusCallServiceName"; type: "string" }
Property { name: "remoteDBusCallObjectPath"; type: "string" }
Property { name: "remoteDBusCallInterface"; type: "string" }
Property { name: "remoteDBusCallMethodName"; type: "string" }
Property { name: "remoteDBusCallArguments"; type: "QVariantList" }
Property { name: "remoteActions"; type: "QVariantList" }
Property { name: "origin"; type: "string" }
Property { name: "maxContentLines"; type: "int" }
Property { name: "isTransient"; type: "bool" }
Signal { name: "clicked" }
Signal {
name: "actionInvoked"
Parameter { name: "name"; type: "string" }
}
Signal {
name: "closed"
Parameter { name: "reason"; type: "uint" }
Expand Down Expand Up @@ -91,5 +105,35 @@ Module {
Parameter { name: "iface"; type: "string" }
Parameter { name: "method"; type: "string" }
}
Method {
name: "remoteAction"
type: "QVariant"
Parameter { name: "name"; type: "string" }
Parameter { name: "displayName"; type: "string" }
Parameter { name: "service"; type: "string" }
Parameter { name: "path"; type: "string" }
Parameter { name: "iface"; type: "string" }
}
Method {
name: "remoteAction"
type: "QVariant"
Parameter { name: "name"; type: "string" }
Parameter { name: "displayName"; type: "string" }
Parameter { name: "service"; type: "string" }
Parameter { name: "path"; type: "string" }
}
Method {
name: "remoteAction"
type: "QVariant"
Parameter { name: "name"; type: "string" }
Parameter { name: "displayName"; type: "string" }
Parameter { name: "service"; type: "string" }
}
Method {
name: "remoteAction"
type: "QVariant"
Parameter { name: "name"; type: "string" }
Parameter { name: "displayName"; type: "string" }
}
}
}

0 comments on commit 29c0610

Please sign in to comment.