aboutsummaryrefslogtreecommitdiffstats
path: root/src/imports/templates/plugins.qmltypes
diff options
context:
space:
mode:
authorKai Koehne <kai.koehne@qt.io>2019-03-04 14:35:06 +0100
committerMitch Curtis <mitch.curtis@qt.io>2019-03-07 08:06:50 +0000
commit1693a19fd557c857ef4f43ab303ea1056790481e (patch)
tree6bd7b1f7d4cc7d2b45629c26f0335c94b08d7481 /src/imports/templates/plugins.qmltypes
parent359c81a8224cf90ef35ca0932ee146bc50a7292b (diff)
Update plugins.qmltypes for Qt 5.13
Task-number: QTBUG-73484 Change-Id: I5c6019ec015a7d423dcc103d1acf23383c5b6239 Reviewed-by: Kai Koehne <kai.koehne@qt.io> Reviewed-by: Mitch Curtis <mitch.curtis@qt.io>
Diffstat (limited to 'src/imports/templates/plugins.qmltypes')
-rw-r--r--src/imports/templates/plugins.qmltypes40
1 files changed, 40 insertions, 0 deletions
diff --git a/src/imports/templates/plugins.qmltypes b/src/imports/templates/plugins.qmltypes
index e9404fea..0922e871 100644
--- a/src/imports/templates/plugins.qmltypes
+++ b/src/imports/templates/plugins.qmltypes
@@ -640,6 +640,7 @@ Module {
Property { name: "width"; type: "int" }
Property { name: "height"; type: "int" }
Property { name: "color"; type: "QColor" }
+ Property { name: "cache"; type: "bool" }
}
Component {
name: "QQuickItemDelegate"
@@ -1369,6 +1370,45 @@ Module {
Signal { name: "implicitIndicatorHeightChanged"; revision: 5 }
}
Component {
+ name: "QQuickSplitHandleAttached"
+ prototype: "QObject"
+ exports: ["QtQuick.Templates/SplitHandle 2.13"]
+ isCreatable: false
+ exportMetaObjectRevisions: [0]
+ Property { name: "hovered"; type: "bool"; isReadonly: true }
+ Property { name: "pressed"; type: "bool"; isReadonly: true }
+ }
+ Component {
+ name: "QQuickSplitView"
+ defaultProperty: "contentData"
+ prototype: "QQuickContainer"
+ exports: ["QtQuick.Templates/SplitView 2.13"]
+ exportMetaObjectRevisions: [0]
+ attachedType: "QQuickSplitViewAttached"
+ Property { name: "orientation"; type: "Qt::Orientation" }
+ Property { name: "resizing"; type: "bool"; isReadonly: true }
+ Property { name: "handle"; type: "QQmlComponent"; isPointer: true }
+ Method { name: "saveState"; type: "QVariant" }
+ Method {
+ name: "restoreState"
+ type: "bool"
+ Parameter { name: "state"; type: "QVariant" }
+ }
+ }
+ Component {
+ name: "QQuickSplitViewAttached"
+ prototype: "QObject"
+ Property { name: "view"; type: "QQuickSplitView"; isReadonly: true; isPointer: true }
+ Property { name: "minimumWidth"; type: "double" }
+ Property { name: "minimumHeight"; type: "double" }
+ Property { name: "preferredWidth"; type: "double" }
+ Property { name: "preferredHeight"; type: "double" }
+ Property { name: "maximumWidth"; type: "double" }
+ Property { name: "maximumHeight"; type: "double" }
+ Property { name: "fillHeight"; type: "bool" }
+ Property { name: "fillWidth"; type: "bool" }
+ }
+ Component {
name: "QQuickStackView"
defaultProperty: "data"
prototype: "QQuickControl"