Is it possible to do QML/QQuick like UI animations using c++?
Is it possible to do QML like ui animations using c++?If possible,which module(s) should I use?
Re: Is it possible to do QML/QQuick like UI animations using c++?
The PropertyAnimation is almost identically available as QPropertyAnimation.
There are also equivalents for SequentialAnimation, ParallelAnimation and PauseAnimation.
All in QtCore
Cheers,
_
Re: Is it possible to do QML/QQuick like UI animations using c++?
Thanks for your answer.So ,can we say that we can use C++ instead of Qml, to create equally animated UIs?
Re: Is it possible to do QML/QQuick like UI animations using c++?
Quote:
Originally Posted by
Awareness
Thanks for your answer.So ,can we say that we can use C++ instead of Qml, to create equally animated UIs?
Yes and no. Yes, because the semantics of the animation are the same. No, because a Qt Quick scene is rendered in a special way which makes it very fast.
Re: Is it possible to do QML/QQuick like UI animations using c++?