I have a QGraphicsItem
for which I want to animate a size change. Because of this, I need to vary both the height
and width
of the object over time. I have used the QTimeLine
in the past for single-variable animations and I would like to use it here for two-variable if possible. However, I don't see a QTimeLine::setFrameRange()
that works for two variables.
How can I accomplish this? Is there a better Qt class for this?
Since animations have to be attached to objects, your graphics item will be a
QGraphicsObject
, so you can expose the relevant properties to the Qt property system.Since you're animating what amounts to a
QSizeF
, the simplest way would be to expose this as a single property and use aQPropertyAnimation
.In general, if you have to animate multiple properties in parallel, set them up as individual
QPropertyAnimation
s. Then run those in parallel using aQParallelAnimationGroup
.It's of course possible to use a
QTimeLine
, but then you have to interpolate between the endpoints manually, basing on the frame number, for example. Why bother.Below is a complete example that shows how to animate three properties at once:
pos
,size
androtation
.main.cpp