equal
deleted
inserted
replaced
63 |
63 |
64 QAbstractAnimation *animationAt(int index) const; |
64 QAbstractAnimation *animationAt(int index) const; |
65 int animationCount() const; |
65 int animationCount() const; |
66 int indexOfAnimation(QAbstractAnimation *animation) const; |
66 int indexOfAnimation(QAbstractAnimation *animation) const; |
67 void addAnimation(QAbstractAnimation *animation); |
67 void addAnimation(QAbstractAnimation *animation); |
68 void insertAnimationAt(int index, QAbstractAnimation *animation); |
68 void insertAnimation(int index, QAbstractAnimation *animation); |
69 void removeAnimation(QAbstractAnimation *animation); |
69 void removeAnimation(QAbstractAnimation *animation); |
70 QAbstractAnimation *takeAnimationAt(int index); |
70 QAbstractAnimation *takeAnimation(int index); |
71 void clearAnimations(); |
71 void clear(); |
72 |
72 |
73 protected: |
73 protected: |
74 QAnimationGroup(QAnimationGroupPrivate &dd, QObject *parent); |
74 QAnimationGroup(QAnimationGroupPrivate &dd, QObject *parent); |
75 bool event(QEvent *event); |
75 bool event(QEvent *event); |
76 |
76 |