aboutsummaryrefslogtreecommitdiffstats
path: root/src/quickcontrols/windows/ScrollView.qml
diff options
context:
space:
mode:
Diffstat (limited to 'src/quickcontrols/windows/ScrollView.qml')
-rw-r--r--src/quickcontrols/windows/ScrollView.qml37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/quickcontrols/windows/ScrollView.qml b/src/quickcontrols/windows/ScrollView.qml
new file mode 100644
index 0000000000..65d65899ca
--- /dev/null
+++ b/src/quickcontrols/windows/ScrollView.qml
@@ -0,0 +1,37 @@
+// Copyright (C) 2020 The Qt Company Ltd.
+// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
+
+import QtQuick
+import QtQuick.Controls.impl
+import QtQuick.Templates as T
+
+T.ScrollView {
+ id: control
+
+ implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
+ contentWidth + leftPadding + rightPadding)
+ implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
+ contentHeight + topPadding + bottomPadding)
+
+ rightPadding: effectiveScrollBarWidth
+ bottomPadding: effectiveScrollBarHeight
+
+ // Don't set __notCustomizable here, because it would require special-casing
+ // setFlickable's call to setContentItem.
+
+ ScrollBar.vertical: ScrollBar {
+ parent: control
+ x: control.mirrored ? 0 : control.width - width
+ y: 0
+ height: control.height - (control.ScrollBar.horizontal.visible ? control.ScrollBar.horizontal.height : 0)
+ active: control.ScrollBar.horizontal.active
+ }
+
+ ScrollBar.horizontal: ScrollBar {
+ parent: control
+ x: 0
+ y: control.height - height
+ width: control.width - (control.ScrollBar.vertical.visible ? control.ScrollBar.vertical.width : 0)
+ active: control.ScrollBar.vertical.active
+ }
+}