2012-04-03 13:22:26 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2012 Marco Martin <mart@kde.org>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Library General Public License as
|
|
|
|
* published by the Free Software Foundation; either version 2, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Library General Public License for more details
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Library General Public
|
|
|
|
* License along with this program; if not, write to the
|
|
|
|
* Free Software Foundation, Inc.,
|
|
|
|
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**Documented API
|
|
|
|
Inherits:
|
|
|
|
Item
|
|
|
|
|
|
|
|
Imports:
|
|
|
|
QtQuick 1.1
|
|
|
|
org.kde.plasma.components 0.1
|
|
|
|
|
|
|
|
Description:
|
|
|
|
This item takes a Flickable and automatically puts scrollbars in adjusting the layout if needed. The scrollbars will be interactive or not, depending on the platform.
|
|
|
|
If flickableItem is a categorized ListView the vertical scrollbar will be a SectionScroller.
|
|
|
|
|
|
|
|
Properties:
|
|
|
|
Item flickableItem:
|
|
|
|
The Flickable of this area: it can be either a Flickable or a subclass, ListView or GridView
|
|
|
|
**/
|
|
|
|
|
|
|
|
import QtQuick 1.1
|
|
|
|
import org.kde.plasma.components 0.1
|
2012-04-03 13:48:42 +02:00
|
|
|
import org.kde.plasma.core 0.1 as PlasmaCore
|
2012-04-03 13:22:26 +02:00
|
|
|
|
|
|
|
Item {
|
|
|
|
id: root
|
|
|
|
|
|
|
|
property Flickable flickableItem
|
|
|
|
//FIXME: this alias seems necessary for it to correctly parse
|
|
|
|
default property alias flickableItemDefault: root.flickableItem
|
2012-08-09 11:45:42 +02:00
|
|
|
clip: true
|
2012-04-03 13:22:26 +02:00
|
|
|
|
|
|
|
Connections {
|
|
|
|
target: root
|
|
|
|
onFlickableItemChanged: {
|
|
|
|
root.flickableItem.parent = root
|
|
|
|
root.flickableItem.anchors.fill = root
|
|
|
|
internal.checkVerticalScrollBar()
|
|
|
|
internal.checkHorizontalScrollBar()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
Component.onCompleted: {
|
|
|
|
root.flickableItem.parent = root
|
|
|
|
root.flickableItem.anchors.fill = root
|
|
|
|
internal.checkVerticalScrollBar()
|
|
|
|
internal.checkHorizontalScrollBar()
|
|
|
|
}
|
|
|
|
Connections {
|
|
|
|
target: flickableItem
|
|
|
|
onContentHeightChanged: internal.checkVerticalScrollBar()
|
2012-09-05 18:15:59 +02:00
|
|
|
onHeightChanged: internal.checkVerticalScrollBar()
|
2012-04-03 13:22:26 +02:00
|
|
|
onContentWidthChanged: internal.checkHorizontalScrollBar()
|
2012-09-05 18:15:59 +02:00
|
|
|
onWidthChanged: internal.checkHorizontalScrollBar()
|
2012-04-03 13:22:26 +02:00
|
|
|
}
|
|
|
|
QtObject {
|
|
|
|
id: internal
|
|
|
|
property Item verticalScrollBar
|
|
|
|
property Item horizontalScrollBar
|
|
|
|
|
2012-11-16 17:21:42 +01:00
|
|
|
function checkVerticalScrollBar() {
|
2012-04-03 13:22:26 +02:00
|
|
|
if (!flickableItem) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flickableItem.contentHeight > flickableItem.height) {
|
|
|
|
//Do we have to change the type?
|
|
|
|
//from section to normal
|
2012-09-05 18:15:59 +02:00
|
|
|
if ((!flickableItem.model || flickableItem.model.get === undefined || !flickableItem.section || !flickableItem.section.property) &&
|
2012-04-03 13:22:26 +02:00
|
|
|
(!verticalScrollBar || verticalScrollBar.orientation === undefined)) {
|
|
|
|
if (verticalScrollBar) verticalScrollBar.destroy()
|
|
|
|
verticalScrollBar = verticalScrollBarComponent.createObject(root)
|
|
|
|
//from normal to section
|
|
|
|
} else if (flickableItem.section && flickableItem.section.property &&
|
2012-10-23 12:39:47 +02:00
|
|
|
flickableItem.model.get !== undefined &&
|
2012-04-03 13:22:26 +02:00
|
|
|
(!verticalScrollBar || verticalScrollBar.orientation !== undefined)) {
|
|
|
|
if (verticalScrollBar) verticalScrollBar.destroy()
|
|
|
|
verticalScrollBar = sectionScrollerComponent.createObject(root)
|
|
|
|
}
|
2012-09-05 18:15:59 +02:00
|
|
|
}
|
2012-11-16 17:21:42 +01:00
|
|
|
checkVerticalScrollBarMargins()
|
|
|
|
}
|
2012-04-03 13:22:26 +02:00
|
|
|
|
2012-11-16 17:21:42 +01:00
|
|
|
function checkVerticalScrollBarMargins() {
|
2012-09-05 18:15:59 +02:00
|
|
|
//undefined in case of SectionScroller
|
|
|
|
if ((flickableItem.contentHeight > flickableItem.height) &&
|
2012-11-16 17:21:42 +01:00
|
|
|
((verticalScrollBar.interactive && verticalScrollBar.visible) || (verticalScrollBar.orientation === undefined &&
|
2012-09-05 18:15:59 +02:00
|
|
|
//FIXME: heuristic on width to distinguish the touch sectionscroller
|
|
|
|
verticalScrollBar.width < 30))) {
|
|
|
|
flickableItem.anchors.rightMargin = verticalScrollBar.width
|
|
|
|
} else {
|
|
|
|
flickableItem.anchors.rightMargin = 0
|
2012-04-03 13:22:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-11-16 17:21:42 +01:00
|
|
|
function checkHorizontalScrollBar() {
|
2012-04-03 13:22:26 +02:00
|
|
|
if (!flickableItem || horizontalScrollBar) {
|
|
|
|
return
|
|
|
|
}
|
|
|
|
|
|
|
|
if (flickableItem.contentWidth > flickableItem.width) {
|
2012-09-05 18:15:59 +02:00
|
|
|
if (!horizontalScrollBar) {
|
|
|
|
horizontalScrollBar = horizontalScrollBarComponent.createObject(root)
|
2012-04-03 13:22:26 +02:00
|
|
|
}
|
|
|
|
}
|
2012-11-16 17:21:42 +01:00
|
|
|
checkHorizontalScrollBarMargins()
|
|
|
|
}
|
2012-09-05 18:15:59 +02:00
|
|
|
|
2012-11-16 17:21:42 +01:00
|
|
|
function checkHorizontalScrollBarMargins() {
|
2012-09-05 18:15:59 +02:00
|
|
|
if ((flickableItem.contentWidth > flickableItem.width) &&
|
2012-11-16 17:21:42 +01:00
|
|
|
horizontalScrollBar.interactive && horizontalScrollBar.visible) {
|
2012-09-05 18:15:59 +02:00
|
|
|
flickableItem.anchors.bottomMargin = horizontalScrollBar.height
|
|
|
|
} else {
|
|
|
|
flickableItem.anchors.bottomMargin = 0
|
|
|
|
}
|
2012-04-03 13:22:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Component {
|
|
|
|
id: verticalScrollBarComponent
|
|
|
|
ScrollBar {
|
|
|
|
flickableItem: root.flickableItem
|
|
|
|
orientation: Qt.Vertical
|
2012-09-05 18:15:59 +02:00
|
|
|
property bool isScrollBar: true
|
2012-10-26 19:46:36 +02:00
|
|
|
z: root.flickableItem.z + 1
|
2012-04-03 13:22:26 +02:00
|
|
|
anchors {
|
|
|
|
left: undefined
|
2012-10-26 18:12:51 +02:00
|
|
|
top: parent.top
|
2012-04-03 13:22:26 +02:00
|
|
|
right: parent.right
|
2012-10-26 18:12:51 +02:00
|
|
|
bottom: parent.bottom
|
|
|
|
bottomMargin: parent.height - root.flickableItem.height
|
2012-04-03 13:22:26 +02:00
|
|
|
}
|
2012-11-16 17:21:42 +01:00
|
|
|
onVisibleChanged: internal.checkVerticalScrollBarMargins()
|
2012-04-03 13:22:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Component {
|
|
|
|
id: horizontalScrollBarComponent
|
|
|
|
ScrollBar {
|
|
|
|
flickableItem: root.flickableItem
|
|
|
|
orientation: Qt.Horizontal
|
2012-10-26 19:46:36 +02:00
|
|
|
z: root.flickableItem.z + 1
|
2012-04-03 13:22:26 +02:00
|
|
|
anchors {
|
2012-10-26 18:12:51 +02:00
|
|
|
left: parent.left
|
2012-04-03 13:22:26 +02:00
|
|
|
top: undefined
|
2012-10-26 18:12:51 +02:00
|
|
|
right: parent.right
|
2012-04-03 13:22:26 +02:00
|
|
|
bottom: parent.bottom
|
2012-10-26 18:12:51 +02:00
|
|
|
rightMargin: parent.width - root.flickableItem.width
|
2012-04-03 13:22:26 +02:00
|
|
|
}
|
2012-11-16 17:21:42 +01:00
|
|
|
onVisibleChanged: internal.checkHorizontalScrollBarMargins()
|
2012-04-03 13:22:26 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
Component {
|
|
|
|
id: sectionScrollerComponent
|
|
|
|
SectionScroller {
|
|
|
|
listView: root.flickableItem
|
2012-09-05 18:15:59 +02:00
|
|
|
property bool isScrollBar: false
|
2012-10-26 19:46:36 +02:00
|
|
|
z: root.flickableItem.z + 1
|
2012-04-03 13:22:26 +02:00
|
|
|
anchors {
|
|
|
|
left: undefined
|
2012-10-26 18:12:51 +02:00
|
|
|
top: parent.top
|
2012-04-03 13:22:26 +02:00
|
|
|
right: parent.right
|
2012-10-26 18:12:51 +02:00
|
|
|
bottom: parent.bottom
|
|
|
|
bottomMargin: parent.height - root.flickableItem.height
|
2012-04-03 13:22:26 +02:00
|
|
|
}
|
2012-11-16 17:21:42 +01:00
|
|
|
onVisibleChanged: internal.checkVerticalScrollBarMargins()
|
2012-04-03 13:22:26 +02:00
|
|
|
}
|
|
|
|
}
|
2012-04-03 13:48:42 +02:00
|
|
|
//FIXME: create all this stuff only on demand, like scrollbars?
|
|
|
|
PlasmaCore.Svg {
|
|
|
|
id: borderSvg
|
|
|
|
imagePath: "widgets/scrollwidget"
|
|
|
|
}
|
|
|
|
PlasmaCore.SvgItem {
|
|
|
|
svg: borderSvg
|
|
|
|
z: 1000
|
|
|
|
elementId: "border-top"
|
|
|
|
width: 100
|
|
|
|
height: naturalSize.height
|
|
|
|
opacity: flickableItem.atYBeginning ? 0 : 1
|
|
|
|
Behavior on opacity {
|
|
|
|
NumberAnimation {
|
|
|
|
duration: 250
|
|
|
|
easing.type: Easing.InOutQuad
|
|
|
|
}
|
|
|
|
}
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
top: parent.top
|
|
|
|
right: parent.right
|
2012-11-16 17:21:42 +01:00
|
|
|
topMargin: flickableItem.anchors.topMargin
|
2012-04-03 13:48:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
PlasmaCore.SvgItem {
|
|
|
|
svg: borderSvg
|
|
|
|
z: 1000
|
|
|
|
elementId: "border-bottom"
|
|
|
|
width: 100
|
|
|
|
height: naturalSize.height
|
|
|
|
opacity: flickableItem.atYEnd ? 0 : 1
|
|
|
|
Behavior on opacity {
|
|
|
|
NumberAnimation {
|
|
|
|
duration: 250
|
|
|
|
easing.type: Easing.InOutQuad
|
|
|
|
}
|
|
|
|
}
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
bottom: parent.bottom
|
|
|
|
right: parent.right
|
2012-11-16 17:21:42 +01:00
|
|
|
bottomMargin: flickableItem.anchors.bottomMargin
|
2012-04-03 13:48:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
PlasmaCore.SvgItem {
|
|
|
|
svg: borderSvg
|
|
|
|
z: 1000
|
|
|
|
elementId: "border-left"
|
|
|
|
width: naturalSize.width
|
|
|
|
opacity: flickableItem.atXBeginning ? 0 : 1
|
|
|
|
Behavior on opacity {
|
|
|
|
NumberAnimation {
|
|
|
|
duration: 250
|
|
|
|
easing.type: Easing.InOutQuad
|
|
|
|
}
|
|
|
|
}
|
|
|
|
anchors {
|
|
|
|
left: parent.left
|
|
|
|
top: parent.top
|
|
|
|
bottom: parent.bottom
|
2012-11-16 17:21:42 +01:00
|
|
|
leftMargin: flickableItem.anchors.leftMargin
|
2012-04-03 13:48:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
PlasmaCore.SvgItem {
|
|
|
|
svg: borderSvg
|
|
|
|
z: 1000
|
|
|
|
elementId: "border-right"
|
|
|
|
width: naturalSize.width
|
|
|
|
opacity: flickableItem.atXEnd ? 0 : 1
|
|
|
|
Behavior on opacity {
|
|
|
|
NumberAnimation {
|
|
|
|
duration: 250
|
|
|
|
easing.type: Easing.InOutQuad
|
|
|
|
}
|
|
|
|
}
|
|
|
|
anchors {
|
|
|
|
top: parent.top
|
|
|
|
bottom: parent.bottom
|
|
|
|
right: parent.right
|
2012-11-16 17:21:42 +01:00
|
|
|
rightMargin: flickableItem.anchors.rightMargin
|
2012-04-03 13:48:42 +02:00
|
|
|
}
|
|
|
|
}
|
2012-04-03 13:22:26 +02:00
|
|
|
}
|