##// 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_QTabletEvent.cpp
102 lines | 3.0 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QTabletEvent.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QVariant>
#include <qpoint.h>
QTabletEvent* PythonQtWrapper_QTabletEvent::new_QTabletEvent(QEvent::Type t, const QPoint& pos, const QPoint& globalPos, const QPointF& hiResGlobalPos, int device, int pointerType, qreal pressure, int xTilt, int yTilt, qreal tangentialPressure, qreal rotation, int z, Qt::KeyboardModifiers keyState, qint64 uniqueID)
{
return new PythonQtShell_QTabletEvent(t, pos, globalPos, hiResGlobalPos, device, pointerType, pressure, xTilt, yTilt, tangentialPressure, rotation, z, keyState, uniqueID); }
qreal PythonQtWrapper_QTabletEvent::tangentialPressure(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->tangentialPressure());
}
QTabletEvent::TabletDevice PythonQtWrapper_QTabletEvent::device(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->device());
}
const QPoint* PythonQtWrapper_QTabletEvent::globalPos(QTabletEvent* theWrappedObject) const
{
return &( theWrappedObject->globalPos());
}
int PythonQtWrapper_QTabletEvent::x(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->x());
}
int PythonQtWrapper_QTabletEvent::globalX(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->globalX());
}
QTabletEvent::PointerType PythonQtWrapper_QTabletEvent::pointerType(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->pointerType());
}
const QPointF* PythonQtWrapper_QTabletEvent::hiResGlobalPos(QTabletEvent* theWrappedObject) const
{
return &( theWrappedObject->hiResGlobalPos());
}
qreal PythonQtWrapper_QTabletEvent::hiResGlobalX(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->hiResGlobalX());
}
qreal PythonQtWrapper_QTabletEvent::hiResGlobalY(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->hiResGlobalY());
}
int PythonQtWrapper_QTabletEvent::xTilt(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->xTilt());
}
int PythonQtWrapper_QTabletEvent::z(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->z());
}
qreal PythonQtWrapper_QTabletEvent::rotation(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->rotation());
}
int PythonQtWrapper_QTabletEvent::yTilt(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->yTilt());
}
qreal PythonQtWrapper_QTabletEvent::pressure(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->pressure());
}
qint64 PythonQtWrapper_QTabletEvent::uniqueId(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->uniqueId());
}
int PythonQtWrapper_QTabletEvent::globalY(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->globalY());
}
const QPoint* PythonQtWrapper_QTabletEvent::pos(QTabletEvent* theWrappedObject) const
{
return &( theWrappedObject->pos());
}
int PythonQtWrapper_QTabletEvent::y(QTabletEvent* theWrappedObject) const
{
return ( theWrappedObject->y());
}