Recently in trouble, I hope you will help me . I created three buttons in a widget ,I use the QPropertyAnimation class to achieve the position of the three buttons move .

such as this example:

QPushButton button("Animated Button");
 button.show();

 QPropertyAnimation animation(&button, "geometry");
 animation.setDuration(10000);

 animation.setKeyValueAt(0, QRect(0, 0, 100, 30));
 animation.setKeyValueAt(0.8, QRect(250, 250, 100, 30));
 animation.setKeyValueAt(1, QRect(0, 0, 100, 30));

 animation.start();

I want to paint a number of animated bubbles around these buttons when they are moving. There is no OpenGL and qml . Paint bubbles in paintEvent() or any other good idea ? I am concerned about the running speed and effect in ARM 9 board ...

Thanks.

link|improve this question

feedback

1 Answer

up vote 1 down vote accepted

There is no better solution. I can also write a more animation.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.