2007-06-08 07:24:19 +02:00
|
|
|
/*
|
2007-08-06 13:20:02 +02:00
|
|
|
* Copyright 2007 Aaron Seigo <aseigo@kde.org>
|
2007-07-06 18:26:48 +02:00
|
|
|
* 2007 Alexis Ménard <darktears31@gmail.com>
|
2007-06-08 07:24:19 +02:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
2007-09-14 21:06:18 +02:00
|
|
|
* 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.
|
2007-06-08 07:24:19 +02:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef PHASE_H
|
|
|
|
#define PHASE_H
|
|
|
|
|
2007-07-15 00:40:00 +02:00
|
|
|
#include <QtGui/QImage>
|
|
|
|
#include <QtCore/QObject>
|
2007-06-08 07:24:19 +02:00
|
|
|
|
2007-06-10 08:02:38 +02:00
|
|
|
#include <plasma/plasma_export.h>
|
2007-06-08 07:24:19 +02:00
|
|
|
|
|
|
|
class QGraphicsItem;
|
2007-06-10 09:09:07 +02:00
|
|
|
class QTimeLine;
|
2007-06-08 07:24:19 +02:00
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
|
|
|
* @short A system for applying effects to Plasma elements
|
|
|
|
*/
|
|
|
|
class PLASMA_EXPORT Phase : public QObject
|
|
|
|
{
|
|
|
|
Q_OBJECT
|
2007-08-04 14:46:29 +02:00
|
|
|
Q_ENUMS( Animation )
|
|
|
|
Q_ENUMS( CurveShape )
|
|
|
|
Q_ENUMS( Movement )
|
2007-06-08 07:24:19 +02:00
|
|
|
|
|
|
|
public:
|
|
|
|
enum Animation
|
|
|
|
{
|
|
|
|
Appear = 0 /*<< When some appears in the Corona */,
|
|
|
|
Disappear /*<< When something is about to disappear */,
|
2008-01-23 00:37:48 +01:00
|
|
|
Activate /*<< When something is activated or launched, such as an app icon being clicked */
|
2007-06-08 07:24:19 +02:00
|
|
|
};
|
|
|
|
|
2007-06-19 23:56:03 +02:00
|
|
|
enum ElementAnimation
|
|
|
|
{
|
2007-06-25 08:01:34 +02:00
|
|
|
ElementAppear = 0 /*<< Animate the appearance of an element */,
|
|
|
|
ElementDisappear /*<< Animate the disappearance of an element */
|
2007-06-19 23:56:03 +02:00
|
|
|
};
|
|
|
|
|
2007-06-25 08:01:34 +02:00
|
|
|
enum CurveShape
|
|
|
|
{
|
|
|
|
EaseInCurve = 0,
|
|
|
|
EaseOutCurve,
|
|
|
|
EaseInOutCurve,
|
|
|
|
LinearCurve
|
|
|
|
};
|
|
|
|
|
2007-07-04 11:36:50 +02:00
|
|
|
enum Movement
|
|
|
|
{
|
|
|
|
SlideIn = 0,
|
2008-01-23 00:37:48 +01:00
|
|
|
SlideOut,
|
|
|
|
FastSlideIn,
|
|
|
|
FastSlideOut
|
2007-07-04 11:36:50 +02:00
|
|
|
};
|
|
|
|
|
2007-06-19 23:56:03 +02:00
|
|
|
typedef int AnimId;
|
|
|
|
|
2007-06-17 22:05:43 +02:00
|
|
|
/**
|
|
|
|
* Singleton accessor
|
|
|
|
**/
|
|
|
|
static Phase* self();
|
|
|
|
|
2007-06-08 07:24:19 +02:00
|
|
|
explicit Phase(QObject * parent = 0);
|
|
|
|
~Phase();
|
|
|
|
|
2007-08-04 14:46:29 +02:00
|
|
|
Q_INVOKABLE void animateItem(QGraphicsItem* item, Animation anim);
|
|
|
|
Q_INVOKABLE void moveItem(QGraphicsItem* item, Movement movement, const QPoint &destination);
|
2007-06-25 08:01:34 +02:00
|
|
|
|
2007-10-12 09:25:24 +02:00
|
|
|
/**
|
|
|
|
* Starts a custom animation, preventing the need to create a timeline
|
|
|
|
* with its own timer tick.
|
|
|
|
*
|
|
|
|
* @arg frames the number of frames this animation should persist for
|
|
|
|
* @arg duration the length, in milliseconds, the animation will take
|
|
|
|
* @arg curve the curve applied to the frame rate
|
|
|
|
* @arg receive the object that will handle the actual animation
|
2007-10-12 22:27:51 +02:00
|
|
|
* @arg method the method name of slot to be invoked on each update.
|
|
|
|
* It must take a qreal. So if the slot is animate(qreal),
|
|
|
|
* pass in "animate" as the method parameter.
|
2007-10-12 09:25:24 +02:00
|
|
|
*
|
|
|
|
* @return an id that can be used to identify this animation.
|
|
|
|
*/
|
|
|
|
Q_INVOKABLE AnimId customAnimation(int frames, int duration, Phase::CurveShape curve,
|
2007-10-12 22:27:51 +02:00
|
|
|
QObject* receiver, const char* method);
|
2007-10-12 09:25:24 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Stops a custom animation. Note that it is not necessary to call
|
|
|
|
* this on object destruction, as custom animations associated with
|
|
|
|
* a given QObject are cleaned up automatically on QObject destruction.
|
|
|
|
*
|
|
|
|
* @arg id the id of the animation as returned by customAnimation
|
|
|
|
*/
|
|
|
|
Q_INVOKABLE void stopCustomAnimation(AnimId id);
|
|
|
|
|
|
|
|
Q_INVOKABLE AnimId animateElement(QGraphicsItem *obj, ElementAnimation);
|
|
|
|
Q_INVOKABLE void stopElementAnimation(AnimId id);
|
|
|
|
Q_INVOKABLE void setAnimationPixmap(AnimId id, const QPixmap &pixmap);
|
|
|
|
Q_INVOKABLE QPixmap animationResult(AnimId id);
|
2007-06-19 23:56:03 +02:00
|
|
|
|
2007-06-08 07:24:19 +02:00
|
|
|
Q_SIGNALS:
|
2007-10-24 04:08:09 +02:00
|
|
|
void animationComplete(QGraphicsItem *item, Plasma::Phase::Animation anim);
|
2007-07-17 21:23:33 +02:00
|
|
|
void movementComplete(QGraphicsItem *item);
|
2008-02-14 18:09:00 +01:00
|
|
|
void elementAnimationComplete(AnimId id);
|
|
|
|
void customAnimationComplete(AnimId id);
|
2007-06-08 07:24:19 +02:00
|
|
|
|
2007-06-25 08:01:34 +02:00
|
|
|
protected:
|
|
|
|
void timerEvent(QTimerEvent *event);
|
2007-06-08 07:24:19 +02:00
|
|
|
|
|
|
|
protected Q_SLOTS:
|
2008-02-14 18:09:00 +01:00
|
|
|
void animatedItemDestroyed(QObject*);
|
|
|
|
void movingItemDestroyed(QObject*);
|
|
|
|
void animatedElementDestroyed(QObject*);
|
2007-10-12 09:25:24 +02:00
|
|
|
void customAnimReceiverDestroyed(QObject*);
|
2007-06-08 07:24:19 +02:00
|
|
|
|
|
|
|
private:
|
|
|
|
void init();
|
|
|
|
|
|
|
|
class Private;
|
|
|
|
Private * const d;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Plasma
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|