Fix and first attempt to use Readability
[quicknewsreader] / qml / QuickNewsReader / content / view / BusyIndicator.qml.autosave
1 /****************************************************************************
2 **
3 ** Copyright (C) 2011 Nokia Corporation and/or its subsidiary(-ies).
4 ** All rights reserved.
5 ** Contact: Nokia Corporation (qt-info@nokia.com)
6 **
7 ** Copyright (C) 2012 Christophe CHAPUIS <chris.chapuis _at_ gmail _dot_ com>
8 **
9 ** This package is free software; you can redistribute it and/or modify
10 ** it under the terms of the GNU General Public License as published by
11 ** the Free Software Foundation; either version 2 of the License, or
12 ** (at your option) any later version.
13 **
14 ** This package is distributed in the hope that it will be useful,
15 ** but WITHOUT ANY WARRANTY; without even the implied warranty of
16 ** MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 ** GNU General Public License for more details.
18 **
19 ** You should have received a copy of the GNU General Public License
20 ** along with this package; if not, write to the Free Software
21 ** Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
22 **
23 ****************************************************************************/
24
25 import QtQuick 1.0
26
27 Image {
28     id: container
29     property bool on: false
30
31     source: "../images/busy.png"; visible: container.on
32
33     NumberAnimation on rotation {
34         running: container.on; from: 0; to: 360; loops: Animation.Infinite; duration: 1200
35     }
36 }