summaryrefslogtreecommitdiffstats
path: root/src/imports/studio3d/plugins.qmltypes
diff options
context:
space:
mode:
Diffstat (limited to 'src/imports/studio3d/plugins.qmltypes')
-rw-r--r--src/imports/studio3d/plugins.qmltypes30
1 files changed, 28 insertions, 2 deletions
diff --git a/src/imports/studio3d/plugins.qmltypes b/src/imports/studio3d/plugins.qmltypes
index d29725a..b1e15e0 100644
--- a/src/imports/studio3d/plugins.qmltypes
+++ b/src/imports/studio3d/plugins.qmltypes
@@ -22,6 +22,8 @@ Module {
exportMetaObjectRevisions: [0]
Property { name: "name"; type: "string" }
Property { name: "value"; type: "QVariant" }
+ Property { name: "max"; type: "float" }
+ Property { name: "min"; type: "float" }
Method {
name: "setName"
Parameter { name: "name"; type: "string" }
@@ -30,6 +32,14 @@ Module {
name: "setValue"
Parameter { name: "value"; type: "QVariant" }
}
+ Method {
+ name: "setMin"
+ Parameter { name: "min"; type: "float" }
+ }
+ Method {
+ name: "setMax"
+ Parameter { name: "max"; type: "float" }
+ }
}
Component {
name: "Q3DSElement"
@@ -180,6 +190,7 @@ Module {
Property { name: "profilingEnabled"; type: "bool" }
Property { name: "profileUiVisible"; type: "bool" }
Property { name: "profileUiScale"; type: "float" }
+ Property { name: "delayedLoading"; revision: 3; type: "bool" }
Signal {
name: "customSignalEmitted"
Parameter { name: "elementPath"; type: "string" }
@@ -197,6 +208,7 @@ Module {
Parameter { name: "index"; type: "int" }
Parameter { name: "name"; type: "string" }
}
+ Signal { name: "delayedLoadingChanged"; revision: 3 }
Method { name: "reload" }
Method {
name: "setDataInputValue"
@@ -230,6 +242,16 @@ Module {
Parameter { name: "wrap"; type: "bool" }
}
Method {
+ name: "preloadSlide"
+ revision: 3
+ Parameter { name: "elementPath"; type: "string" }
+ }
+ Method {
+ name: "unloadSlide"
+ revision: 3
+ Parameter { name: "elementPath"; type: "string" }
+ }
+ Method {
name: "getAttribute"
type: "QVariant"
Parameter { name: "elementPath"; type: "string" }
@@ -241,13 +263,17 @@ Module {
Parameter { name: "attributeName"; type: "string" }
Parameter { name: "value"; type: "QVariant" }
}
+ Method { name: "getDataInputs"; type: "QVariantList" }
}
Component {
name: "Q3DSPresentationItem"
defaultProperty: "qmlChildren"
prototype: "Q3DSPresentation"
- exports: ["QtStudio3D/Presentation 2.0"]
- exportMetaObjectRevisions: [0]
+ exports: [
+ "QtStudio3D/Presentation 2.0",
+ "QtStudio3D/Presentation 2.3"
+ ]
+ exportMetaObjectRevisions: [0, 3]
Property { name: "qmlChildren"; type: "QObject"; isList: true; isReadonly: true }
Method {
name: "appendQmlChildren"