/**************************************************************************** ** ** Copyright (C) 2011 Nokia Institute of Technology. ** All rights reserved. ** Contact: Manager (renato.chencarek@openbossa.org) ** ** This file is part of the Incredible Circus project. ** ** GNU Lesser General Public License Usage ** ** This file may be used under the terms of the GNU Lesser General Public ** License version 2.1 as published by the Free Software Foundation and ** appearing in the file LICENSE.LGPL included in the packaging of this ** file. Please review the following information to ensure the GNU Lesser ** General Public License version 2.1 requirements will be met: ** http://www.gnu.org/licenses/old-licenses/lgpl-2.1.html. ** ****************************************************************************/ import QtQuick 1.1 import Circus 1.0 ImageButton { id: notification property int index: 0 source: "image://cache/widgets/notification/new_levels_unlocked_" + index + ".png" Label { id: theText anchors { left: parent.left leftMargin: 27 * scaleFactor top: parent.top topMargin: 18 * scaleFactor } text: qsTr("New levels unlocked") fontSize: 16 * scaleFactor color: "#fde260" } NumberAnimation on index { loops: Animation.Infinite from: 0 to: 1 duration: 250 } }