##// END OF EJS Templates
added PyLauncher example...
added PyLauncher example added hadError() to scripting console added addSysPath() git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@50 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r13:d46b01f7163a
r14:59f352c6d9fb
Show More
PythonQtWrapper_QWheelEvent.cpp
58 lines | 1.7 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QWheelEvent.h"
#include <QVariant>
#include <qpoint.h>
QWheelEvent* PythonQtWrapper_QWheelEvent::new_QWheelEvent(const QPoint& pos, const QPoint& globalPos, int delta, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, Qt::Orientation orient)
{
return new QWheelEvent(pos, globalPos, delta, buttons, modifiers, orient); }
QWheelEvent* PythonQtWrapper_QWheelEvent::new_QWheelEvent(const QPoint& pos, int delta, Qt::MouseButtons buttons, Qt::KeyboardModifiers modifiers, Qt::Orientation orient)
{
return new QWheelEvent(pos, delta, buttons, modifiers, orient); }
Qt::MouseButtons PythonQtWrapper_QWheelEvent::buttons(QWheelEvent* theWrappedObject) const
{
return theWrappedObject->buttons();
}
int PythonQtWrapper_QWheelEvent::delta(QWheelEvent* theWrappedObject) const
{
return theWrappedObject->delta();
}
const QPoint& PythonQtWrapper_QWheelEvent::globalPos(QWheelEvent* theWrappedObject) const
{
return theWrappedObject->globalPos();
}
int PythonQtWrapper_QWheelEvent::globalX(QWheelEvent* theWrappedObject) const
{
return theWrappedObject->globalX();
}
int PythonQtWrapper_QWheelEvent::globalY(QWheelEvent* theWrappedObject) const
{
return theWrappedObject->globalY();
}
Qt::Orientation PythonQtWrapper_QWheelEvent::orientation(QWheelEvent* theWrappedObject) const
{
return theWrappedObject->orientation();
}
const QPoint& PythonQtWrapper_QWheelEvent::pos(QWheelEvent* theWrappedObject) const
{
return theWrappedObject->pos();
}
int PythonQtWrapper_QWheelEvent::x(QWheelEvent* theWrappedObject) const
{
return theWrappedObject->x();
}
int PythonQtWrapper_QWheelEvent::y(QWheelEvent* theWrappedObject) const
{
return theWrappedObject->y();
}