##// END OF EJS Templates
added initial generated wrappers for Qt 4.4.3...
added initial generated wrappers for Qt 4.4.3 git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@49 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r13:d46b01f7163a
Show More
PythonQtWrapper_QTimeLine.cpp
118 lines | 3.0 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QTimeLine.h"
#include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qlist.h>
#include <qobject.h>
#include <qtimeline.h>
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);
}