##// END OF EJS Templates
added alphabetic sorting...
added alphabetic sorting git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@132 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r96:3170eb771a99
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());
}