##// END OF EJS Templates
added initial generated wrappers for Qt 4.4.3...
added initial generated wrappers for Qt 4.4.3 git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@49 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r13:d46b01f7163a
Show More
PythonQtWrapper_QEvent.cpp
43 lines | 937 B | text/x-c | CppLexer
#include "PythonQtWrapper_QEvent.h"
#include <QVariant>
QEvent* PythonQtWrapper_QEvent::new_QEvent(QEvent::Type type)
{
return new QEvent(type); }
void PythonQtWrapper_QEvent::accept(QEvent* theWrappedObject)
{
theWrappedObject->accept();
}
void PythonQtWrapper_QEvent::ignore(QEvent* theWrappedObject)
{
theWrappedObject->ignore();
}
bool PythonQtWrapper_QEvent::isAccepted(QEvent* theWrappedObject) const
{
return theWrappedObject->isAccepted();
}
int PythonQtWrapper_QEvent::static_QEvent_registerEventType(int hint)
{
return QEvent::registerEventType(hint);
}
void PythonQtWrapper_QEvent::setAccepted(QEvent* theWrappedObject, bool accepted)
{
theWrappedObject->setAccepted(accepted);
}
bool PythonQtWrapper_QEvent::spontaneous(QEvent* theWrappedObject) const
{
return theWrappedObject->spontaneous();
}
QEvent::Type PythonQtWrapper_QEvent::type(QEvent* theWrappedObject) const
{
return theWrappedObject->type();
}