a class to handle transitions betwen pixmap.
puhbutton port in the works too svn path=/trunk/KDE/kdelibs/; revision=1077924
This commit is contained in:
parent
5f91181d59
commit
586df4c6ac
98
animations/pixmaptransition.cpp
Normal file
98
animations/pixmaptransition.cpp
Normal file
@ -0,0 +1,98 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2009 Mehmet Ali Akmanalp <makmanalp@wpi.edu>
|
||||||
|
* Copyright 2010 Marco Martin <notmart@gmail.com>
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#include "pixmaptransition_p.h"
|
||||||
|
|
||||||
|
#include <QPixmap>
|
||||||
|
|
||||||
|
#include <kdebug.h>
|
||||||
|
|
||||||
|
#include "paintutils.h"
|
||||||
|
|
||||||
|
namespace Plasma
|
||||||
|
{
|
||||||
|
|
||||||
|
PixmapTransition::PixmapTransition(QObject *parent)
|
||||||
|
: Animation(parent)
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
PixmapTransition::~PixmapTransition()
|
||||||
|
{
|
||||||
|
}
|
||||||
|
|
||||||
|
void PixmapTransition::setStartPixmap(const QPixmap &pixmap)
|
||||||
|
{
|
||||||
|
m_startPixmap = pixmap;
|
||||||
|
m_currentPixmap = pixmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
QPixmap PixmapTransition::startPixmap() const
|
||||||
|
{
|
||||||
|
return m_startPixmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
void PixmapTransition::setTargetPixmap(const QPixmap &pixmap)
|
||||||
|
{
|
||||||
|
m_targetPixmap = pixmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
QPixmap PixmapTransition::targetPixmap() const
|
||||||
|
{
|
||||||
|
return m_targetPixmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
QPixmap PixmapTransition::currentPixmap() const
|
||||||
|
{
|
||||||
|
return m_currentPixmap;
|
||||||
|
}
|
||||||
|
|
||||||
|
void PixmapTransition::updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState)
|
||||||
|
{
|
||||||
|
QGraphicsWidget *w = targetWidget();
|
||||||
|
if (!w) {
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
|
if (oldState == Stopped && newState == Running) {
|
||||||
|
m_currentPixmap = (direction() == Forward ? m_startPixmap : m_targetPixmap);
|
||||||
|
} else if (newState == Stopped) {
|
||||||
|
m_currentPixmap = (direction() == Forward ? m_targetPixmap : m_startPixmap);
|
||||||
|
}
|
||||||
|
|
||||||
|
w->update();
|
||||||
|
}
|
||||||
|
|
||||||
|
void PixmapTransition::updateCurrentTime(int currentTime)
|
||||||
|
{
|
||||||
|
QGraphicsWidget *w = targetWidget();
|
||||||
|
if (w) {
|
||||||
|
qreal delta = currentTime / qreal(duration());
|
||||||
|
delta *= Animation::easingCurve().valueForProgress(delta);
|
||||||
|
m_currentPixmap = Plasma::PaintUtils::transition(m_startPixmap, m_targetPixmap, delta);
|
||||||
|
}
|
||||||
|
|
||||||
|
Animation::updateCurrentTime(currentTime);
|
||||||
|
if (w) {
|
||||||
|
w->update();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
} //namespace Plasma
|
86
animations/pixmaptransition_p.h
Normal file
86
animations/pixmaptransition_p.h
Normal file
@ -0,0 +1,86 @@
|
|||||||
|
/*
|
||||||
|
* Copyright 2009 Mehmet Ali Akmanalp <makmanalp@wpi.edu>
|
||||||
|
* Copyright 2010 Marco Martin <notmart@gmail.com>
|
||||||
|
*
|
||||||
|
* 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.
|
||||||
|
*/
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @file This file contains the definition for the PixmapTransition effect.
|
||||||
|
*/
|
||||||
|
|
||||||
|
#ifndef PLASMA_ANIMATIONS_PIXMAPTRANSITION_P_H
|
||||||
|
#define PLASMA_ANIMATIONS_PIXMAPTRANSITION_P_H
|
||||||
|
|
||||||
|
#include <plasma/animations/animation.h>
|
||||||
|
#include <plasma/plasma_export.h>
|
||||||
|
|
||||||
|
namespace Plasma
|
||||||
|
{
|
||||||
|
|
||||||
|
/**
|
||||||
|
* @class Fade plasma/animations/pixmaptransition.h
|
||||||
|
* @short PixmapTransition effect
|
||||||
|
*
|
||||||
|
* Effect that paints a transition between two pixmaps
|
||||||
|
*/
|
||||||
|
class PixmapTransition : public Animation
|
||||||
|
{
|
||||||
|
Q_OBJECT
|
||||||
|
Q_PROPERTY(QPixmap startPixmap READ startPixmap WRITE setStartPixmap)
|
||||||
|
Q_PROPERTY(QPixmap targetPixmap READ targetPixmap WRITE setTargetPixmap)
|
||||||
|
Q_PROPERTY(QPixmap currentPixmap READ currentPixmap)
|
||||||
|
|
||||||
|
public:
|
||||||
|
explicit PixmapTransition(QObject *parent = 0);
|
||||||
|
|
||||||
|
virtual ~PixmapTransition();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The first pixmap of the animation
|
||||||
|
*/
|
||||||
|
QPixmap startPixmap() const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the first pixmap of the animation
|
||||||
|
*/
|
||||||
|
void setStartPixmap(const QPixmap &);
|
||||||
|
|
||||||
|
/**
|
||||||
|
* The pixmap the animation will evolve to
|
||||||
|
*/
|
||||||
|
QPixmap targetPixmap() const;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Set the pixmap the animation will evolve to
|
||||||
|
*/
|
||||||
|
void setTargetPixmap(const QPixmap &);
|
||||||
|
|
||||||
|
QPixmap currentPixmap() const;
|
||||||
|
|
||||||
|
protected:
|
||||||
|
void updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState);
|
||||||
|
void updateCurrentTime(int currentTime);
|
||||||
|
|
||||||
|
private:
|
||||||
|
QPixmap m_startPixmap;
|
||||||
|
QPixmap m_targetPixmap;
|
||||||
|
QPixmap m_currentPixmap;
|
||||||
|
};
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
#endif // PLASMA_ANIMATIONS_PIXMAPTRANSITION_P_H
|
@ -29,6 +29,7 @@
|
|||||||
#include "animations/rotationstacked_p.h"
|
#include "animations/rotationstacked_p.h"
|
||||||
#include "animations/geometry_p.h"
|
#include "animations/geometry_p.h"
|
||||||
#include "animations/zoom_p.h"
|
#include "animations/zoom_p.h"
|
||||||
|
#include "animations/pixmaptransition_p.h"
|
||||||
|
|
||||||
namespace Plasma
|
namespace Plasma
|
||||||
{
|
{
|
||||||
@ -70,6 +71,10 @@ Plasma::Animation* Animator::create(Animator::Animation type, QObject *parent)
|
|||||||
result = new Plasma::ZoomAnimation(parent);
|
result = new Plasma::ZoomAnimation(parent);
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
case PixmapTransitionAnimation:
|
||||||
|
result = new Plasma::PixmapTransition(parent);
|
||||||
|
break;
|
||||||
|
|
||||||
default:
|
default:
|
||||||
kDebug() << "Unsupported animation type.";
|
kDebug() << "Unsupported animation type.";
|
||||||
}
|
}
|
||||||
|
@ -65,7 +65,8 @@ public:
|
|||||||
RotationStackedAnimation, /*<< for flipping one object with another */
|
RotationStackedAnimation, /*<< for flipping one object with another */
|
||||||
SlideAnimation, /*<< Move the position of animated object */
|
SlideAnimation, /*<< Move the position of animated object */
|
||||||
GeometryAnimation, /*<< Geometry animation*/
|
GeometryAnimation, /*<< Geometry animation*/
|
||||||
ZoomAnimation /*<<Zoom animation */
|
ZoomAnimation, /*<<Zoom animation */
|
||||||
|
PixmapTransitionAnimation /*<< Transition between two pixmaps*/
|
||||||
};
|
};
|
||||||
|
|
||||||
enum CurveShape {
|
enum CurveShape {
|
||||||
|
Loading…
Reference in New Issue
Block a user