##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
Show More
PythonQtWrapper_QTimeLine.h
74 lines | 3.1 KiB | text/x-c | CLexer
#ifndef PYTHONQTWRAPPER_QTIMELINE_H
#define PYTHONQTWRAPPER_QTIMELINE_H
#include <qtimeline.h>
#include <QObject>
#include <PythonQt.h>
#include <QVariant>
#include <qbytearray.h>
#include <qcoreevent.h>
#include <qlist.h>
#include <qobject.h>
#include <qtimeline.h>
class PythonQtShell_QTimeLine : public QTimeLine
{
public:
PythonQtShell_QTimeLine(int duration = 1000, QObject* parent = 0):QTimeLine(duration, parent),_wrapper(NULL) {};
virtual void childEvent(QChildEvent* arg__1);
virtual void customEvent(QEvent* arg__1);
virtual bool event(QEvent* arg__1);
virtual bool eventFilter(QObject* arg__1, QEvent* arg__2);
virtual void timerEvent(QTimerEvent* event);
virtual qreal valueForTime(int msec) const;
PythonQtInstanceWrapper* _wrapper;
};
class PythonQtPublicPromoter_QTimeLine : public QTimeLine
{ public:
inline qreal promoted_valueForTime(int msec) const { return QTimeLine::valueForTime(msec); }
inline void promoted_timerEvent(QTimerEvent* event) { QTimeLine::timerEvent(event); }
};
class PythonQtWrapper_QTimeLine : public QObject
{ Q_OBJECT
public:
Q_ENUMS(Direction CurveShape State )
enum Direction{
Forward = QTimeLine::Forward, Backward = QTimeLine::Backward};
enum CurveShape{
EaseInCurve = QTimeLine::EaseInCurve, EaseOutCurve = QTimeLine::EaseOutCurve, EaseInOutCurve = QTimeLine::EaseInOutCurve, LinearCurve = QTimeLine::LinearCurve, SineCurve = QTimeLine::SineCurve, CosineCurve = QTimeLine::CosineCurve};
enum State{
NotRunning = QTimeLine::NotRunning, Paused = QTimeLine::Paused, Running = QTimeLine::Running};
public slots:
QTimeLine* new_QTimeLine(int duration = 1000, QObject* parent = 0);
void delete_QTimeLine(QTimeLine* obj) { delete obj; }
int frameForTime(QTimeLine* theWrappedObject, int msec) const;
qreal valueForTime(QTimeLine* theWrappedObject, int msec) const;
void timerEvent(QTimeLine* theWrappedObject, QTimerEvent* event);
QTimeLine::CurveShape curveShape(QTimeLine* theWrappedObject) const;
void setDuration(QTimeLine* theWrappedObject, int duration);
QTimeLine::State state(QTimeLine* theWrappedObject) const;
void setStartFrame(QTimeLine* theWrappedObject, int frame);
void setFrameRange(QTimeLine* theWrappedObject, int startFrame, int endFrame);
void setEndFrame(QTimeLine* theWrappedObject, int frame);
void setLoopCount(QTimeLine* theWrappedObject, int count);
int duration(QTimeLine* theWrappedObject) const;
int loopCount(QTimeLine* theWrappedObject) const;
void setDirection(QTimeLine* theWrappedObject, QTimeLine::Direction direction);
QTimeLine::Direction direction(QTimeLine* theWrappedObject) const;
void setCurveShape(QTimeLine* theWrappedObject, QTimeLine::CurveShape shape);
void setUpdateInterval(QTimeLine* theWrappedObject, int interval);
int startFrame(QTimeLine* theWrappedObject) const;
int currentTime(QTimeLine* theWrappedObject) const;
qreal currentValue(QTimeLine* theWrappedObject) const;
int endFrame(QTimeLine* theWrappedObject) const;
int updateInterval(QTimeLine* theWrappedObject) const;
int currentFrame(QTimeLine* theWrappedObject) const;
};
#endif // PYTHONQTWRAPPER_QTIMELINE_H