##// END OF EJS Templates
added support for setattr to allow derived classes to add own attributes...
added support for setattr to allow derived classes to add own attributes git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@66 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r30:a523f73e74c6
Show More
PythonQtWrapper_QPaintEvent.cpp
27 lines | 739 B | text/x-c | CppLexer
#include "PythonQtWrapper_QPaintEvent.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qrect.h>
#include <qregion.h>
QPaintEvent* PythonQtWrapper_QPaintEvent::new_QPaintEvent(const QRect& paintRect)
{
return new PythonQtShell_QPaintEvent(paintRect); }
QPaintEvent* PythonQtWrapper_QPaintEvent::new_QPaintEvent(const QRegion& paintRegion)
{
return new PythonQtShell_QPaintEvent(paintRegion); }
const QRegion& PythonQtWrapper_QPaintEvent::region(QPaintEvent* theWrappedObject) const
{
return theWrappedObject->region();
}
const QRect& PythonQtWrapper_QPaintEvent::rect(QPaintEvent* theWrappedObject) const
{
return theWrappedObject->rect();
}