void WallClockPrivate::updateCurrentTime(int) { if (currentLoop() == 0 || currentTime() == 0) return; emit q->timeChanged(); update(); }
int QAbstractAnimation::qt_metacall(QMetaObject::Call _c, int _id, void **_a) { _id = QObject::qt_metacall(_c, _id, _a); if (_id < 0) return _id; if (_c == QMetaObject::InvokeMetaMethod) { if (_id < 11) qt_static_metacall(this, _c, _id, _a); _id -= 11; } #ifndef QT_NO_PROPERTIES else if (_c == QMetaObject::ReadProperty) { void *_v = _a[0]; switch (_id) { case 0: *reinterpret_cast< State*>(_v) = state(); break; case 1: *reinterpret_cast< int*>(_v) = loopCount(); break; case 2: *reinterpret_cast< int*>(_v) = currentTime(); break; case 3: *reinterpret_cast< int*>(_v) = currentLoop(); break; case 4: *reinterpret_cast< Direction*>(_v) = direction(); break; case 5: *reinterpret_cast< int*>(_v) = duration(); break; } _id -= 6; } else if (_c == QMetaObject::WriteProperty) { void *_v = _a[0]; switch (_id) { case 1: setLoopCount(*reinterpret_cast< int*>(_v)); break; case 2: setCurrentTime(*reinterpret_cast< int*>(_v)); break; case 4: setDirection(*reinterpret_cast< Direction*>(_v)); break; } _id -= 6; } else if (_c == QMetaObject::ResetProperty) { _id -= 6; } else if (_c == QMetaObject::QueryPropertyDesignable) { _id -= 6; } else if (_c == QMetaObject::QueryPropertyScriptable) { _id -= 6; } else if (_c == QMetaObject::QueryPropertyStored) { _id -= 6; } else if (_c == QMetaObject::QueryPropertyEditable) { _id -= 6; } else if (_c == QMetaObject::QueryPropertyUser) { _id -= 6; } #endif // QT_NO_PROPERTIES return _id; }
void updateCurrentTime(int currentTime) { QPropertyAnimation::updateCurrentTime(currentTime); if (currentTime >= QPropertyAnimation::duration() || currentLoop() >= 1) stop(); }