blob: 40e7620aa2f17de472679b7cef6747f27cd2b25b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
|
// 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
import QtQuick.NativeStyle as NativeStyle
T.ScrollView {
id: control
implicitWidth: Math.max(implicitBackgroundWidth + leftInset + rightInset,
implicitContentWidth + leftPadding + rightPadding)
implicitHeight: Math.max(implicitBackgroundHeight + topInset + bottomInset,
implicitContentHeight + 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
NativeStyle.ScrollViewCorner {
y: parent.height
control: control
visible: control.ScrollBar.horizontal.visible
useNinePatchImage: false
}
}
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
}
}
|