Merge branch 'master' of ssh://drop.maemo.org/git/quicknewsreader
[quicknewsreader] / qml / QuickNewsReader / content / view / Journals.qml
1 import QtQuick 1.0
2
3 Rectangle {
4     id: journalsRect
5     width: 150
6     color: "#dfdfdf"
7
8     ListView {
9         focus: true
10         id: journals
11         x: 0; y: 0
12         width: 150; height: window.height
13         currentIndex: currentJournalIndex
14         model: journalList
15         footer: quitButtonDelegate
16         delegate: JournalDelegate {}
17         highlight: Rectangle { color: "steelblue" }
18         highlightMoveSpeed: 9999999
19     }
20     ScrollBar { scrollArea: journals; height: journals.height; width: 8; anchors.right: journals.right }
21 }