##// END OF EJS Templates
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well...
code cleanup and rename of PythonQtWrapper to PythonQtInstanceWrapper and PythonQtMetaObjectWrapper to PythonQtClassWrapper, since these names match much better what these classes wrap, regarding that we are wrapping CPP objects as well git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@52 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r16:c68e0aff542c
Show More
PythonQtWrapper_QKeyEvent.cpp
64 lines | 2.0 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QKeyEvent.h"
#include <QVariant>
#include <qevent.h>
QKeyEvent* PythonQtWrapper_QKeyEvent::new_QKeyEvent(QEvent::Type type, int key, Qt::KeyboardModifiers modifiers, const QString& text, bool autorep, ushort count)
{
return new QKeyEvent(type, key, modifiers, text, autorep, count); }
int PythonQtWrapper_QKeyEvent::count(QKeyEvent* theWrappedObject) const
{
return theWrappedObject->count();
}
QKeyEvent* PythonQtWrapper_QKeyEvent::static_QKeyEvent_createExtendedKeyEvent(QEvent::Type type, int key, Qt::KeyboardModifiers modifiers, unsigned int nativeScanCode, unsigned int nativeVirtualKey, unsigned int nativeModifiers, const QString& text, bool autorep, ushort count)
{
return QKeyEvent::createExtendedKeyEvent(type, key, modifiers, nativeScanCode, nativeVirtualKey, nativeModifiers, text, autorep, count);
}
bool PythonQtWrapper_QKeyEvent::hasExtendedInfo(QKeyEvent* theWrappedObject) const
{
return theWrappedObject->hasExtendedInfo();
}
bool PythonQtWrapper_QKeyEvent::isAutoRepeat(QKeyEvent* theWrappedObject) const
{
return theWrappedObject->isAutoRepeat();
}
int PythonQtWrapper_QKeyEvent::key(QKeyEvent* theWrappedObject) const
{
return theWrappedObject->key();
}
bool PythonQtWrapper_QKeyEvent::matches(QKeyEvent* theWrappedObject, QKeySequence::StandardKey key) const
{
return theWrappedObject->matches(key);
}
Qt::KeyboardModifiers PythonQtWrapper_QKeyEvent::modifiers(QKeyEvent* theWrappedObject) const
{
return theWrappedObject->modifiers();
}
unsigned int PythonQtWrapper_QKeyEvent::nativeModifiers(QKeyEvent* theWrappedObject) const
{
return theWrappedObject->nativeModifiers();
}
unsigned int PythonQtWrapper_QKeyEvent::nativeScanCode(QKeyEvent* theWrappedObject) const
{
return theWrappedObject->nativeScanCode();
}
unsigned int PythonQtWrapper_QKeyEvent::nativeVirtualKey(QKeyEvent* theWrappedObject) const
{
return theWrappedObject->nativeVirtualKey();
}
QString PythonQtWrapper_QKeyEvent::text(QKeyEvent* theWrappedObject) const
{
return theWrappedObject->text();
}