import QtQuick 1.0 Rectangle { id: journalsRect width: 150 color: "#dfdfdf" ListView { focus: true id: journals x: 0; y: 0 width: 150; height: window.height currentIndex: currentJournalIndex model: journalList footer: quitButtonDelegate delegate: JournalDelegate {} highlight: Rectangle { color: "steelblue" } highlightMoveSpeed: 9999999 } ScrollBar { scrollArea: journals; height: journals.height; width: 8; anchors.right: journals.right } }