2011-04-21 17:01:42 +02:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2010 by Artur Duque de Souza <asouzakde.org>
|
2011-07-09 00:21:24 +02:00
|
|
|
* Copyright (C) 2011 by Daker Fernandes Pinheiro <dakerfp@gmail.com>
|
2011-04-21 17:01:42 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2011-05-18 15:31:00 +02:00
|
|
|
import QtQuick 1.1
|
2011-04-21 17:01:42 +02:00
|
|
|
import org.kde.plasma.core 0.1 as PlasmaCore
|
|
|
|
|
|
|
|
Item {
|
2011-04-27 16:31:44 +02:00
|
|
|
id: busy
|
2011-04-21 17:01:42 +02:00
|
|
|
|
2011-04-27 11:47:08 +02:00
|
|
|
// Common API
|
|
|
|
property bool running: false
|
2011-04-21 17:01:42 +02:00
|
|
|
|
2011-04-27 11:47:08 +02:00
|
|
|
// Plasma API
|
2011-07-08 23:52:40 +02:00
|
|
|
property bool smoothAnimation: true
|
2011-05-18 15:31:00 +02:00
|
|
|
|
|
|
|
implicitWidth: 52
|
|
|
|
implicitHeight: 52
|
|
|
|
|
|
|
|
// Should use animation's pause to keep the
|
|
|
|
// rotation smooth when running changes but
|
|
|
|
// it has lot's of side effects on
|
|
|
|
// initialization.
|
|
|
|
onRunningChanged: {
|
|
|
|
rotationAnimation.from = rotation;
|
|
|
|
rotationAnimation.to = rotation + 360;
|
|
|
|
}
|
|
|
|
|
|
|
|
RotationAnimation on rotation {
|
|
|
|
id: rotationAnimation
|
2011-04-27 11:47:08 +02:00
|
|
|
|
2011-05-18 15:31:00 +02:00
|
|
|
from: 0
|
|
|
|
to: 360
|
|
|
|
duration: 1500
|
|
|
|
running: busy.running
|
|
|
|
loops: Animation.Infinite
|
|
|
|
}
|
2011-04-21 17:01:42 +02:00
|
|
|
|
|
|
|
PlasmaCore.SvgItem {
|
|
|
|
id: widget
|
2011-04-27 11:47:08 +02:00
|
|
|
|
|
|
|
anchors.centerIn: parent
|
2011-04-27 16:31:44 +02:00
|
|
|
width: busy.width
|
|
|
|
height: busy.height
|
2011-05-18 15:31:00 +02:00
|
|
|
smooth: !running || smoothAnimation
|
2011-04-27 16:31:44 +02:00
|
|
|
svg: PlasmaCore.Svg { imagePath: "widgets/busywidget" }
|
2011-04-21 17:01:42 +02:00
|
|
|
}
|
|
|
|
}
|