2009-12-05 20:54:27 +01:00
|
|
|
/*
|
|
|
|
* Copyright 2009 Igor Trindade Oliveira <igor.oliveira@indt.org.br>
|
|
|
|
*
|
|
|
|
* 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-12-09 19:40:02 +01:00
|
|
|
* @file This file contains the definition for the Geometry effect.
|
2009-12-05 20:54:27 +01:00
|
|
|
*/
|
|
|
|
|
2009-12-27 23:16:11 +01:00
|
|
|
#ifndef PLASMA_ANIMATIONS_GEOMETRY_P_H
|
|
|
|
#define PLASMA_ANIMATIONS_GEOMETRY_P_H
|
2009-12-05 20:54:27 +01:00
|
|
|
|
|
|
|
#include <plasma/animations/animation.h>
|
|
|
|
#include <plasma/plasma_export.h>
|
|
|
|
|
|
|
|
namespace Plasma
|
|
|
|
{
|
|
|
|
|
|
|
|
/**
|
2009-12-08 10:22:51 +01:00
|
|
|
* @class GeometryAnimation plasma/animations/geo_p.h
|
2009-12-05 20:54:27 +01:00
|
|
|
* @short Geometry Animation
|
2009-12-09 19:05:34 +01:00
|
|
|
* Use this class when you want to change the geometry of an QGraphicsWidget
|
|
|
|
* in an animated way (you should at least set the target geometry).
|
2009-12-05 20:54:27 +01:00
|
|
|
*/
|
2009-12-08 10:22:51 +01:00
|
|
|
class GeometryAnimation : public Animation
|
2009-12-05 20:54:27 +01:00
|
|
|
{
|
|
|
|
Q_OBJECT
|
|
|
|
Q_PROPERTY(QRectF startGeometry READ startGeometry WRITE setStartGeometry)
|
|
|
|
Q_PROPERTY(QRectF targetGeometry READ targetGeometry WRITE setTargetGeometry)
|
|
|
|
|
|
|
|
public:
|
2009-12-09 19:05:34 +01:00
|
|
|
/** Default constructor */
|
2010-01-12 23:24:58 +01:00
|
|
|
explicit GeometryAnimation(QObject *parent = 0);
|
|
|
|
|
2009-12-09 19:05:34 +01:00
|
|
|
/** Destructor */
|
2009-12-08 10:22:51 +01:00
|
|
|
virtual ~GeometryAnimation();
|
2009-12-05 20:54:27 +01:00
|
|
|
|
2009-12-09 19:05:34 +01:00
|
|
|
/**
|
|
|
|
* Access the initial geometry of animated widget.
|
|
|
|
*
|
|
|
|
* If no geometry is set, it will use the widget current geometry
|
|
|
|
* when the animation is first run).
|
|
|
|
* @return Start geometry.
|
|
|
|
*/
|
2009-12-05 20:54:27 +01:00
|
|
|
QRectF startGeometry() const;
|
2009-12-09 19:05:34 +01:00
|
|
|
/**
|
|
|
|
* Set the initial geometry of animated widget.
|
|
|
|
*
|
|
|
|
* If no geometry is set, it will use the widget current geometry
|
|
|
|
* when the animation is first run).
|
|
|
|
* @arg geometry The initial geometry.
|
|
|
|
*/
|
|
|
|
void setStartGeometry(const QRectF &geometry);
|
2009-12-05 20:54:27 +01:00
|
|
|
|
2009-12-09 19:05:34 +01:00
|
|
|
/**
|
2009-12-27 23:16:11 +01:00
|
|
|
* Access the final geometry of animated widget.
|
2009-12-09 19:05:34 +01:00
|
|
|
*
|
|
|
|
* \todo: check if it was set and case negative, handle the error.
|
|
|
|
* @return Target geometry.
|
|
|
|
*/
|
2009-12-05 20:54:27 +01:00
|
|
|
QRectF targetGeometry() const;
|
2009-12-09 19:05:34 +01:00
|
|
|
/**
|
|
|
|
* Set the final geometry of animated widget.
|
|
|
|
*
|
|
|
|
* See also \ref setStartGeometry.
|
|
|
|
* @param geometry Returns the target geometry of animated widget.
|
|
|
|
*/
|
|
|
|
void setTargetGeometry(const QRectF &geometry);
|
2009-12-05 20:54:27 +01:00
|
|
|
|
|
|
|
protected:
|
|
|
|
void updateState(QAbstractAnimation::State newState, QAbstractAnimation::State oldState);
|
|
|
|
void updateCurrentTime(int currentTime);
|
|
|
|
|
|
|
|
private:
|
2009-12-09 19:05:34 +01:00
|
|
|
/** Initial geometry */
|
2009-12-05 20:54:27 +01:00
|
|
|
QRectF m_startGeometry;
|
2009-12-09 19:05:34 +01:00
|
|
|
/** Final geometry */
|
2009-12-05 20:54:27 +01:00
|
|
|
QRectF m_targetGeometry;
|
|
|
|
};
|
|
|
|
|
2009-12-27 23:16:11 +01:00
|
|
|
} // PLASMA_ANIMATIONS_GEOMETRY_P_H
|
2009-12-05 20:54:27 +01:00
|
|
|
|
|
|
|
#endif
|