Daker Fernandes Pinheiro a2597e35a2 Add plasma default ListView (ListItemView)
- Components added to the api: ListItemView, ListHighlight and ListItem
- Example added in the components gallery

Signed-off-by: Daker Fernandes Pinheiro <dakerfp@gmail.com>
2011-05-18 16:38:21 -03:00

54 lines
1.7 KiB
QML

/*
* Copyright 2011 Daker Fernandes Pinheiro <dakerfp@gmail.com>
*
* 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 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.
*/
import QtQuick 1.1
ListView {
id: list
// Plasma API
property alias scrollVisible: scrollBar.visible
// Convinience API
property bool __isVertical: orientation == Qt.Vertical
orientation: Qt.Vertical
highlightFollowsCurrentItem: true
highlight: ListHighlight {
width: ListView.view.width
height: ListView.view.currentItem.height
pressed: ListView.view.currentItem.pressed
hover: ListView.view.currentItem.hover
}
ScrollBar {
id: scrollBar
anchors {
top: __isVertical ? parent.top : undefined
left: __isVertical ? undefined : parent.left
right: parent.right
bottom: parent.bottom
}
animated: true
stepSize: highlightItem.height
orientation: parent.orientation
flickableItem: parent
}
}