##// END OF EJS Templates
fixed builtin package name...
fixed builtin package name git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@130 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r73:40dc86970256
r94:f55700c8b936
Show More
PythonQtWrapper_QKeyEvent.h
40 lines | 1.7 KiB | text/x-c | CLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #ifndef PYTHONQTWRAPPER_QKEYEVENT_H
#define PYTHONQTWRAPPER_QKEYEVENT_H
#include <qevent.h>
#include <QObject>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 #include <PythonQt.h>
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include <QVariant>
#include <qevent.h>
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 class PythonQtShell_QKeyEvent : public QKeyEvent
{
public:
PythonQtShell_QKeyEvent(QEvent::Type type, int key, Qt::KeyboardModifiers modifiers, const QString& text = QString(), bool autorep = false, ushort count = 1):QKeyEvent(type, key, modifiers, text, autorep, count),_wrapper(NULL) {};
PythonQtInstanceWrapper* _wrapper;
};
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 class PythonQtWrapper_QKeyEvent : public QObject
{ Q_OBJECT
public:
public slots:
QKeyEvent* new_QKeyEvent(QEvent::Type type, int key, Qt::KeyboardModifiers modifiers, const QString& text = QString(), bool autorep = false, ushort count = 1);
void delete_QKeyEvent(QKeyEvent* obj) { delete obj; }
florianlink
recreated wrappers to match current python qt version...
r73 QString text(QKeyEvent* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 unsigned int nativeVirtualKey(QKeyEvent* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 unsigned int nativeModifiers(QKeyEvent* theWrappedObject) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 bool hasExtendedInfo(QKeyEvent* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 int key(QKeyEvent* theWrappedObject) const;
QKeyEvent* static_QKeyEvent_createExtendedKeyEvent(QEvent::Type type, int key, Qt::KeyboardModifiers modifiers, unsigned int nativeScanCode, unsigned int nativeVirtualKey, unsigned int nativeModifiers, const QString& text = QString(), bool autorep = false, ushort count = 1);
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 bool isAutoRepeat(QKeyEvent* theWrappedObject) const;
Qt::KeyboardModifiers modifiers(QKeyEvent* theWrappedObject) const;
florianlink
recreated wrappers to match current python qt version...
r73 unsigned int nativeScanCode(QKeyEvent* theWrappedObject) const;
florianlink
upgraded wrappers to current generator version...
r28 int count(QKeyEvent* theWrappedObject) const;
florianlink
- added support for deriving CPP classes in Python and to override all public and protected virtual functions from PythonQt...
r24 bool matches(QKeyEvent* theWrappedObject, QKeySequence::StandardKey key) const;
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 };
#endif // PYTHONQTWRAPPER_QKEYEVENT_H