##// END OF EJS Templates
added experimental compacting to avoid generation of hundreds of files that all include the same stuff...
added experimental compacting to avoid generation of hundreds of files that all include the same stuff git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@128 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r92:f97ec94c87a9
Show More
PythonQtWrapper_QMovie.cpp
262 lines | 7.9 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QMovie.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#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>
void PythonQtShell_QMovie::childEvent(QChildEvent* arg__1)
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "childEvent");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"" , "QChildEvent*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&arg__1};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
QMovie::childEvent(arg__1);
}
void PythonQtShell_QMovie::customEvent(QEvent* arg__1)
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "customEvent");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"" , "QEvent*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&arg__1};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
QMovie::customEvent(arg__1);
}
bool PythonQtShell_QMovie::event(QEvent* arg__1)
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "event");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"bool" , "QEvent*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
bool returnValue;
void* args[2] = {NULL, (void*)&arg__1};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("event", methodInfo, result);
} else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
return QMovie::event(arg__1);
}
bool PythonQtShell_QMovie::eventFilter(QObject* arg__1, QEvent* arg__2)
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "eventFilter");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"bool" , "QObject*" , "QEvent*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(3, argumentList);
bool returnValue;
void* args[3] = {NULL, (void*)&arg__1, (void*)&arg__2};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) {
args[0] = PythonQtConv::ConvertPythonToQt(methodInfo->parameters().at(0), result, false, NULL, &returnValue);
if (args[0]!=&returnValue) {
if (args[0]==NULL) {
PythonQt::priv()->handleVirtualOverloadReturnError("eventFilter", methodInfo, result);
} else {
returnValue = *((bool*)args[0]);
}
}
}
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return returnValue;
}
}
return QMovie::eventFilter(arg__1, arg__2);
}
void PythonQtShell_QMovie::timerEvent(QTimerEvent* arg__1)
{
if (_wrapper) {
PyObject* obj = PyObject_GetAttrString((PyObject*)_wrapper, "timerEvent");
PyErr_Clear();
if (obj && !PythonQtSlotFunction_Check(obj)) {
static const char* argumentList[] ={"" , "QTimerEvent*"};
static const PythonQtMethodInfo* methodInfo = PythonQtMethodInfo::getCachedMethodInfoFromArgumentList(2, argumentList);
void* args[2] = {NULL, (void*)&arg__1};
PyObject* result = PythonQtSignalTarget::call(obj, methodInfo, args, true);
if (result) { Py_DECREF(result); }
Py_DECREF(obj);
return;
}
}
QMovie::timerEvent(arg__1);
}
QMovie* PythonQtWrapper_QMovie::new_QMovie(QIODevice* device, const QByteArray& format, QObject* parent)
{
return new PythonQtShell_QMovie(device, format, parent); }
QMovie* PythonQtWrapper_QMovie::new_QMovie(QObject* parent)
{
return new PythonQtShell_QMovie(parent); }
QMovie* PythonQtWrapper_QMovie::new_QMovie(const QString& fileName, const QByteArray& format, QObject* parent)
{
return new PythonQtShell_QMovie(fileName, format, parent); }
void PythonQtWrapper_QMovie::setDevice(QMovie* theWrappedObject, QIODevice* device)
{
( theWrappedObject->setDevice(device));
}
QMovie::MovieState PythonQtWrapper_QMovie::state(QMovie* theWrappedObject) const
{
return ( theWrappedObject->state());
}
int PythonQtWrapper_QMovie::speed(QMovie* theWrappedObject) const
{
return ( theWrappedObject->speed());
}
int PythonQtWrapper_QMovie::loopCount(QMovie* theWrappedObject) const
{
return ( theWrappedObject->loopCount());
}
void PythonQtWrapper_QMovie::setFileName(QMovie* theWrappedObject, const QString& fileName)
{
( theWrappedObject->setFileName(fileName));
}
QList<QByteArray > PythonQtWrapper_QMovie::static_QMovie_supportedFormats()
{
return (QMovie::supportedFormats());
}
QMovie::CacheMode PythonQtWrapper_QMovie::cacheMode(QMovie* theWrappedObject) const
{
return ( theWrappedObject->cacheMode());
}
int PythonQtWrapper_QMovie::currentFrameNumber(QMovie* theWrappedObject) const
{
return ( theWrappedObject->currentFrameNumber());
}
void PythonQtWrapper_QMovie::setScaledSize(QMovie* theWrappedObject, const QSize& size)
{
( theWrappedObject->setScaledSize(size));
}
void PythonQtWrapper_QMovie::setBackgroundColor(QMovie* theWrappedObject, const QColor& color)
{
( theWrappedObject->setBackgroundColor(color));
}
void PythonQtWrapper_QMovie::setFormat(QMovie* theWrappedObject, const QByteArray& format)
{
( theWrappedObject->setFormat(format));
}
int PythonQtWrapper_QMovie::nextFrameDelay(QMovie* theWrappedObject) const
{
return ( theWrappedObject->nextFrameDelay());
}
QImage PythonQtWrapper_QMovie::currentImage(QMovie* theWrappedObject) const
{
return ( theWrappedObject->currentImage());
}
QString PythonQtWrapper_QMovie::fileName(QMovie* theWrappedObject) const
{
return ( theWrappedObject->fileName());
}
bool PythonQtWrapper_QMovie::isValid(QMovie* theWrappedObject) const
{
return ( theWrappedObject->isValid());
}
void PythonQtWrapper_QMovie::setCacheMode(QMovie* theWrappedObject, QMovie::CacheMode mode)
{
( theWrappedObject->setCacheMode(mode));
}
QSize PythonQtWrapper_QMovie::scaledSize(QMovie* theWrappedObject)
{
return ( theWrappedObject->scaledSize());
}
int PythonQtWrapper_QMovie::frameCount(QMovie* theWrappedObject) const
{
return ( theWrappedObject->frameCount());
}
QColor PythonQtWrapper_QMovie::backgroundColor(QMovie* theWrappedObject) const
{
return ( theWrappedObject->backgroundColor());
}
QRect PythonQtWrapper_QMovie::frameRect(QMovie* theWrappedObject) const
{
return ( theWrappedObject->frameRect());
}
QPixmap PythonQtWrapper_QMovie::currentPixmap(QMovie* theWrappedObject) const
{
return ( theWrappedObject->currentPixmap());
}
QByteArray PythonQtWrapper_QMovie::format(QMovie* theWrappedObject) const
{
return ( theWrappedObject->format());
}
QIODevice* PythonQtWrapper_QMovie::device(QMovie* theWrappedObject) const
{
return ( theWrappedObject->device());
}
bool PythonQtWrapper_QMovie::jumpToFrame(QMovie* theWrappedObject, int frameNumber)
{
return ( theWrappedObject->jumpToFrame(frameNumber));
}