##// END OF EJS Templates
added methods to qt namespace...
added methods to qt namespace git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@71 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r35:b8dce620ba5c
Show More
PythonQtWrapper_QMovie.h
77 lines | 3.0 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QMOVIE_H
#define PYTHONQTWRAPPER_QMOVIE_H
#include <qmovie.h>
#include <QObject>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 #include <PythonQt.h>
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include <QColor>
#include <QImage>
#include <QPixmap>
#include <QRect>
#include <QSize>
#include <QVariant>
#include <qbytearray.h>
#include <qcolor.h>
#include <qcoreevent.h>
#include <qimage.h>
#include <qiodevice.h>
#include <qlist.h>
#include <qmovie.h>
#include <qobject.h>
#include <qpixmap.h>
#include <qrect.h>
#include <qsize.h>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 class PythonQtShell_QMovie : public QMovie
{
public:
PythonQtShell_QMovie(QIODevice* device, const QByteArray& format = QByteArray(), QObject* parent = 0):QMovie(device, format, parent),_wrapper(NULL) {};
PythonQtShell_QMovie(QObject* parent = 0):QMovie(parent),_wrapper(NULL) {};
PythonQtShell_QMovie(const QString& fileName, const QByteArray& format = QByteArray(), QObject* parent = 0):QMovie(fileName, format, 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* arg__1);
PythonQtInstanceWrapper* _wrapper;
};
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 class PythonQtWrapper_QMovie : public QObject
{ Q_OBJECT
public:
public slots:
QMovie* new_QMovie(QIODevice* device, const QByteArray& format = QByteArray(), QObject* parent = 0);
QMovie* new_QMovie(QObject* parent = 0);
QMovie* new_QMovie(const QString& fileName, const QByteArray& format = QByteArray(), QObject* parent = 0);
void delete_QMovie(QMovie* obj) { delete obj; }
QMovie::CacheMode cacheMode(QMovie* theWrappedObject) const;
bool jumpToFrame(QMovie* theWrappedObject, int frameNumber);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 int frameCount(QMovie* theWrappedObject) const;
QMovie::MovieState state(QMovie* theWrappedObject) const;
QImage currentImage(QMovie* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 int speed(QMovie* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 void setCacheMode(QMovie* theWrappedObject, QMovie::CacheMode mode);
QSize scaledSize(QMovie* theWrappedObject);
florianlink
upgraded wrappers to current generator version...
r28 void setFileName(QMovie* theWrappedObject, const QString& fileName);
QIODevice* device(QMovie* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 void setScaledSize(QMovie* theWrappedObject, const QSize& size);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 int currentFrameNumber(QMovie* theWrappedObject) const;
int nextFrameDelay(QMovie* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 int loopCount(QMovie* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QString fileName(QMovie* theWrappedObject) const;
bool isValid(QMovie* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QList<QByteArray > static_QMovie_supportedFormats();
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QRect frameRect(QMovie* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 void setBackgroundColor(QMovie* theWrappedObject, const QColor& color);
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 QPixmap currentPixmap(QMovie* theWrappedObject) const;
QByteArray format(QMovie* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 QColor backgroundColor(QMovie* theWrappedObject) const;
void setDevice(QMovie* theWrappedObject, QIODevice* device);
void setFormat(QMovie* theWrappedObject, const QByteArray& format);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QMOVIE_H