##// END OF EJS Templates
added new tests for new PythonQt features...
added new tests for new PythonQt features git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@73 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r37:5bd99c632a3f
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();
}