| 109 | |
| 110 | private: |
| 111 | void runInternal() |
| 112 | { |
| 113 | QPropertyAnimation *anim = new QPropertyAnimation(m_effect, "opacity", this); |
| 114 | anim->setDuration(200); |
| 115 | anim->setEndValue(0.); |
| 116 | connect(anim, &QAbstractAnimation::finished, this, &QObject::deleteLater); |
| 117 | anim->start(QAbstractAnimation::DeleteWhenStopped); |
| 118 | } |
| 119 | |
| 120 | QGraphicsOpacityEffect *m_effect; |
| 121 | QLabel *m_label; |