Readability integration - first draft
[quicknewsreader] / qml / QuickNewsReader / content / view / News.qml
1 /***
2 ** Copyright (C) 2012 Christophe CHAPUIS <chris.chapuis _at_ gmail _dot_ com>
3 **
4 ** This package is free software; you can redistribute it and/or modify
5 ** it under the terms of the GNU General Public License as published by
6 ** the Free Software Foundation; either version 2 of the License, or
7 ** (at your option) any later version.
8 **
9 ** This package is distributed in the hope that it will be useful,
10 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
11 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 ** GNU General Public License for more details.
13 **
14 ** You should have received a copy of the GNU General Public License
15 ** along with this package; if not, write to the Free Software
16 ** Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17 **
18 ***/
19 import QtQuick 1.0
20
21 Item {
22     id: newsRect
23     width: window.width
24
25     ListView {
26         x: 0; y: 0
27         id: list
28         width: newsRect.width; height: window.height
29         model: currentSource.listModels[componentDepth-1]
30         delegate: NewsDelegate { }
31         highlight: Rectangle { color: "steelblue" }
32         highlightMoveDuration: 600
33     }
34     ScrollBar { scrollArea: list; height: list.height; width: 8; anchors.right: list.right }
35
36     Component.onCompleted: list.currentIndex = -1
37 }