Guest User

Untitled

a guest
Jul 20th, 2018
87
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. QPushButton button("Animated Button");
  2. button.show();
  3.  
  4. QPropertyAnimation animation(&button, "geometry");
  5. animation.setDuration(10000);
  6.  
  7. animation.setKeyValueAt(0, QRect(0, 0, 100, 30));
  8. animation.setKeyValueAt(0.8, QRect(250, 250, 100, 30));
  9. animation.setKeyValueAt(1, QRect(0, 0, 100, 30));
  10.  
  11. animation.start();
Add Comment
Please, Sign In to add comment