#include "PythonQtWrapper_QTimeLine.h" #include #include #include #include #include #include QTimeLine* PythonQtWrapper_QTimeLine::new_QTimeLine(int duration, QObject* parent) { return new QTimeLine(duration, parent); } int PythonQtWrapper_QTimeLine::currentFrame(QTimeLine* theWrappedObject) const { return theWrappedObject->currentFrame(); } int PythonQtWrapper_QTimeLine::currentTime(QTimeLine* theWrappedObject) const { return theWrappedObject->currentTime(); } qreal PythonQtWrapper_QTimeLine::currentValue(QTimeLine* theWrappedObject) const { return theWrappedObject->currentValue(); } QTimeLine::CurveShape PythonQtWrapper_QTimeLine::curveShape(QTimeLine* theWrappedObject) const { return theWrappedObject->curveShape(); } QTimeLine::Direction PythonQtWrapper_QTimeLine::direction(QTimeLine* theWrappedObject) const { return theWrappedObject->direction(); } int PythonQtWrapper_QTimeLine::duration(QTimeLine* theWrappedObject) const { return theWrappedObject->duration(); } int PythonQtWrapper_QTimeLine::endFrame(QTimeLine* theWrappedObject) const { return theWrappedObject->endFrame(); } int PythonQtWrapper_QTimeLine::frameForTime(QTimeLine* theWrappedObject, int msec) const { return theWrappedObject->frameForTime(msec); } int PythonQtWrapper_QTimeLine::loopCount(QTimeLine* theWrappedObject) const { return theWrappedObject->loopCount(); } void PythonQtWrapper_QTimeLine::setCurveShape(QTimeLine* theWrappedObject, QTimeLine::CurveShape shape) { theWrappedObject->setCurveShape(shape); } void PythonQtWrapper_QTimeLine::setDirection(QTimeLine* theWrappedObject, QTimeLine::Direction direction) { theWrappedObject->setDirection(direction); } void PythonQtWrapper_QTimeLine::setDuration(QTimeLine* theWrappedObject, int duration) { theWrappedObject->setDuration(duration); } void PythonQtWrapper_QTimeLine::setEndFrame(QTimeLine* theWrappedObject, int frame) { theWrappedObject->setEndFrame(frame); } void PythonQtWrapper_QTimeLine::setFrameRange(QTimeLine* theWrappedObject, int startFrame, int endFrame) { theWrappedObject->setFrameRange(startFrame, endFrame); } void PythonQtWrapper_QTimeLine::setLoopCount(QTimeLine* theWrappedObject, int count) { theWrappedObject->setLoopCount(count); } void PythonQtWrapper_QTimeLine::setStartFrame(QTimeLine* theWrappedObject, int frame) { theWrappedObject->setStartFrame(frame); } void PythonQtWrapper_QTimeLine::setUpdateInterval(QTimeLine* theWrappedObject, int interval) { theWrappedObject->setUpdateInterval(interval); } int PythonQtWrapper_QTimeLine::startFrame(QTimeLine* theWrappedObject) const { return theWrappedObject->startFrame(); } QTimeLine::State PythonQtWrapper_QTimeLine::state(QTimeLine* theWrappedObject) const { return theWrappedObject->state(); } int PythonQtWrapper_QTimeLine::updateInterval(QTimeLine* theWrappedObject) const { return theWrappedObject->updateInterval(); } qreal PythonQtWrapper_QTimeLine::valueForTime(QTimeLine* theWrappedObject, int msec) const { return theWrappedObject->valueForTime(msec); }