| 98 | } |
| 99 | |
| 100 | void SmallOnOffSwitch::toggleAnim() |
| 101 | { |
| 102 | auto *anim = new QPropertyAnimation(this, "offset"); |
| 103 | anim->setDuration(120); |
| 104 | anim->setStartValue(m_offset); |
| 105 | anim->setEndValue(m_end_offset[isChecked()]()); |
| 106 | anim->start(QAbstractAnimation::DeleteWhenStopped); |
| 107 | } |
| 108 | |
| 109 | void SmallOnOffSwitch::resizeEvent(QResizeEvent *event) |
| 110 | { |
nothing calls this directly
no test coverage detected