Property animation in Qt
In this example, we will learn how to animate our Graphical User Interface (GUI) elements using Qt's property animation class, part of its powerful animation framework, which allows us to create fluid looking animation with minimal effort.
How to do it…
- First, let's create a new Qt Widgets Application project. After that, open up
mainwindow.ui
with Qt Designer and place a button on the main window, as shown here: - Next, open up
mainwindow.cpp
and add the following line of code at the beginning of the source code:#include <QPropertyAnimation>
- After that, open up
mainwindow.cpp
and add the following code to the constructor:QPropertyAnimation ...
Get Qt5 C++ GUI Programming Cookbook now with the O’Reilly learning platform.
O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.