##// END OF EJS Templates
added builtin support for variants etc., this will replace the direct includes in PythonQt...
added builtin support for variants etc., this will replace the direct includes in PythonQt git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@129 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r93:7b53f64eae84
Show More
PythonQtWrapper_QPaintEvent.cpp
27 lines | 749 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());
}