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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @file This file contains the classes for AbstractAnimation, which is the
|
|
|
|
* abstract base class for all animations.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PLASMA_ABSTRACTANIMATION_H
|
|
|
|
#define PLASMA_ABSTRACTANIMATION_H
|
|
|
|
|
|
|
|
#include <QAbstractAnimation>
|
2009-10-20 15:08:23 +02:00
|
|
|
#include <QEasingCurve>
|
2009-10-15 21:36:38 +02:00
|
|
|
#include <QGraphicsWidget>
|
|
|
|
#include <QObject>
|
|
|
|
|
|
|
|
#include <plasma/plasma.h>
|
|
|
|
#include <plasma/plasma_export.h>
|
|
|
|
|
2009-10-20 15:08:23 +02:00
|
|
|
|
2009-10-15 21:36:38 +02:00
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
2009-10-17 19:02:28 +02:00
|
|
|
class AnimationPrivate;
|
|
|
|
|
2009-10-15 21:36:38 +02:00
|
|
|
/**
|
|
|
|
* Abstract base class for AnimationGroup and Animation.
|
|
|
|
*/
|
|
|
|
class PLASMA_EXPORT AbstractAnimation : public QObject
|
|
|
|
{
|
|
|
|
|
|
|
|
Q_OBJECT
|
2009-10-20 15:08:23 +02:00
|
|
|
Q_PROPERTY(QEasingCurve::Type easingCurveType READ easingCurveType WRITE setEasingCurveType)
|
2009-10-20 17:53:53 +02:00
|
|
|
Q_PROPERTY(AnimationDirection animationDirection READ animationDirection WRITE setAnimationDirection)
|
|
|
|
Q_PROPERTY(qreal animationDistance READ animationDistance WRITE setAnimationDistance)
|
|
|
|
Q_PROPERTY(bool animationVisible READ animationVisible WRITE setAnimationVisible)
|
2009-10-15 21:36:38 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
|
|
|
|
AbstractAnimation();
|
|
|
|
virtual ~AbstractAnimation() = 0;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the widget on which the animation is to be performed.
|
|
|
|
* @arg receiver The QGraphicsWidget to be animated.
|
|
|
|
*/
|
|
|
|
virtual void setWidget(QGraphicsWidget* receiver);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Take an AbstractAnimation and turn it into a
|
|
|
|
* QAbstractAnimation.
|
|
|
|
*/
|
2009-10-16 23:27:35 +02:00
|
|
|
virtual QAbstractAnimation* toQAbstractAnimation(QObject* parent) = 0;
|
2009-10-15 21:36:38 +02:00
|
|
|
|
2009-10-20 15:08:23 +02:00
|
|
|
/**
|
|
|
|
* Set the animation easing curve type
|
|
|
|
*/
|
|
|
|
void setEasingCurveType(QEasingCurve::Type easingCurve);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the animation easing curve type
|
|
|
|
*/
|
|
|
|
QEasingCurve::Type easingCurveType() const;
|
|
|
|
|
2009-10-20 17:53:53 +02:00
|
|
|
/**
|
|
|
|
* Set the animation direction
|
|
|
|
* @arg animationDirection animation direction
|
|
|
|
*/
|
|
|
|
void setAnimationDirection(AnimationDirection animationDirection);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the animation direction
|
|
|
|
*/
|
|
|
|
AnimationDirection animationDirection() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Set the animation distance
|
|
|
|
* @animationDistance animation distance
|
|
|
|
*/
|
|
|
|
void setAnimationDistance(qreal animationDistance);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Get the animation distance
|
|
|
|
*/
|
|
|
|
qreal animationDistance() const;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* set the animation visibility
|
|
|
|
* @arg animationVisible animation visibility
|
|
|
|
*/
|
|
|
|
void setAnimationVisible(bool animationVisible);
|
|
|
|
|
|
|
|
/**
|
|
|
|
* get the animation visibility
|
|
|
|
*/
|
|
|
|
bool animationVisible() const;
|
|
|
|
|
2009-10-15 21:36:38 +02:00
|
|
|
public slots:
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Start the animation.
|
|
|
|
*/
|
|
|
|
virtual void start() = 0;
|
|
|
|
|
|
|
|
protected:
|
|
|
|
|
|
|
|
QGraphicsWidget *getAnimatedObject();
|
|
|
|
|
2009-10-17 19:35:02 +02:00
|
|
|
AnimationPrivate *getAnimationPrivate();
|
|
|
|
|
2009-10-15 21:36:38 +02:00
|
|
|
private:
|
|
|
|
|
2009-10-17 19:02:28 +02:00
|
|
|
AnimationPrivate *d;
|
2009-10-15 21:36:38 +02:00
|
|
|
};
|
|
|
|
|
|
|
|
} //namespace Plasma
|
|
|
|
|
|
|
|
#endif
|