2009-10-15 21:36:38 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Mehmet Ali Akmanalp <makmanalp@wpi.edu>
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
2009-10-22 21:46:16 +02:00
|
|
|
#include "expand_p.h"
|
2009-10-15 21:36:38 +02:00
|
|
|
|
|
|
|
#include <QRect>
|
|
|
|
#include <kdebug.h>
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2009-10-22 06:07:32 +02:00
|
|
|
ExpandAnimation::ExpandAnimation(QObject *parent)
|
|
|
|
: Animation(parent)
|
2009-10-15 21:36:38 +02:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
2009-10-22 06:07:32 +02:00
|
|
|
QAbstractAnimation* ExpandAnimation::render(QObject* parent)
|
|
|
|
{
|
2009-10-15 21:36:38 +02:00
|
|
|
|
|
|
|
//get current geometry values
|
2009-10-20 23:21:40 +02:00
|
|
|
QGraphicsWidget *m_object = widgetToAnimate();
|
2009-10-15 21:36:38 +02:00
|
|
|
QRectF geometry = m_object->geometry();
|
|
|
|
|
|
|
|
//compute new geometry values
|
2009-10-20 23:14:46 +02:00
|
|
|
switch (direction()) {
|
2009-10-15 21:36:38 +02:00
|
|
|
|
2009-10-17 20:03:12 +02:00
|
|
|
case MoveUp:
|
2009-10-20 23:14:46 +02:00
|
|
|
geometry.setTop(geometry.y() - distance());
|
2009-10-20 23:04:49 +02:00
|
|
|
break;
|
2009-10-15 21:36:38 +02:00
|
|
|
|
2009-10-17 20:03:12 +02:00
|
|
|
case MoveRight:
|
2009-10-20 23:14:46 +02:00
|
|
|
geometry.setRight(geometry.x() + geometry.width() - 1 + distance());
|
2009-10-20 23:04:49 +02:00
|
|
|
break;
|
2009-10-15 21:36:38 +02:00
|
|
|
|
2009-10-17 20:03:12 +02:00
|
|
|
case MoveDown:
|
2009-10-20 23:14:46 +02:00
|
|
|
geometry.setBottom(geometry.y() + geometry.height() - 1 + distance());
|
2009-10-20 23:04:49 +02:00
|
|
|
break;
|
2009-10-15 21:36:38 +02:00
|
|
|
|
2009-10-17 20:03:12 +02:00
|
|
|
case MoveLeft:
|
2009-10-20 23:14:46 +02:00
|
|
|
geometry.setLeft(geometry.x() - distance());
|
2009-10-20 23:04:49 +02:00
|
|
|
break;
|
2009-10-15 21:36:38 +02:00
|
|
|
|
2009-10-17 20:03:12 +02:00
|
|
|
case MoveUpRight:
|
|
|
|
case MoveDownRight:
|
|
|
|
case MoveDownLeft:
|
|
|
|
case MoveUpLeft:
|
2009-10-20 23:04:49 +02:00
|
|
|
break;
|
2009-10-15 21:36:38 +02:00
|
|
|
}
|
|
|
|
|
2009-10-23 20:39:57 +02:00
|
|
|
//Recreate only if needed
|
|
|
|
QPropertyAnimation *anim = dynamic_cast<QPropertyAnimation* >(animation());
|
|
|
|
if (!anim) {
|
2009-10-27 15:22:21 +01:00
|
|
|
anim = new QPropertyAnimation(m_object, "geometry", parent);
|
|
|
|
setAnimation(anim);
|
2009-10-23 20:39:57 +02:00
|
|
|
}
|
2009-10-15 21:36:38 +02:00
|
|
|
anim->setEndValue(geometry);
|
2009-10-20 23:04:49 +02:00
|
|
|
anim->setDuration(duration());
|
2009-10-15 21:36:38 +02:00
|
|
|
|
|
|
|
return anim;
|
|
|
|
}
|
|
|
|
|
|
|
|
} //namespace Plasma
|
|
|
|
|