1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109
|
// Copyright 2008 Simon Edwards <simon@simonzone.com>
// Generated by twine
// 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.
namespace Plasma
{
class Animator : QObject
{
%TypeHeaderCode
#include <plasma/animator.h>
%End
public:
enum Animation
{
AppearAnimation,
DisappearAnimation,
ActivateAnimation,
FadeAnimation,
GrowAnimation,
PulseAnimation,
RotationAnimation,
RotationStackedAnimation,
SlideAnimation,
GeometryAnimation,
ZoomAnimation,
PixmapTransitionAnimation,
WaterAnimation,
LastAnimation
};
enum CurveShape
{
EaseInCurve,
EaseOutCurve,
EaseInOutCurve,
LinearCurve,
PendularCurve
};
enum Movement
{
SlideInMovement,
SlideOutMovement,
FastSlideInMovement,
FastSlideOutMovement
};
static Plasma::Animator* self ();
int animateItem (QGraphicsItem* item, Plasma::Animator::Animation anim);
void stopItemAnimation (int id);
int moveItem (QGraphicsItem* item, Plasma::Animator::Movement movement, const QPoint& destination);
void stopItemMovement (int id);
int customAnimation (int frames, int duration, Plasma::Animator::CurveShape curve, QObject* receiver, const char* method);
void stopCustomAnimation (int id);
int animateElement (QGraphicsItem* obj, Plasma::Animator::Animation);
void stopElementAnimation (int id);
void setInitialPixmap (int id, const QPixmap& pixmap);
QPixmap currentPixmap (int id);
bool isAnimating () const;
signals:
void animationFinished (QGraphicsItem* item, Plasma::Animator::Animation anim);
void movementFinished (QGraphicsItem* item);
void elementAnimationFinished (int id);
void customAnimationFinished (int id);
protected:
void timerEvent (QTimerEvent* event);
private:
explicit Animator (QObject* parent /TransferThis/ = 0);
~Animator ();
public:
//ig static AbstractAnimation* create (Plasma::Animator::Animation type, QObject* parent /Transfer/ = 0);
void registerScrollingManager (QGraphicsWidget* widget);
void unregisterScrollingManager (QGraphicsWidget* widget);
signals:
void scrollStateChanged (QGraphicsWidget* widget, QAbstractAnimation::State newState, QAbstractAnimation::State oldState);
public:
static Plasma::Animation* create (const QString& animationName, QObject* parent /Transfer/ = 0);
static QEasingCurve create (Plasma::Animator::CurveShape type);
};
// Animator
};
// Plasma
|