##// 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_QPainterPathStroker.cpp
90 lines | 2.7 KiB | text/x-c | CppLexer
/ generated_cpp / com_trolltech_qt_gui / PythonQtWrapper_QPainterPathStroker.cpp
#include "PythonQtWrapper_QPainterPathStroker.h"
#include <QVariant>
#include <qpainterpath.h>
#include <qvector.h>
QPainterPathStroker* PythonQtWrapper_QPainterPathStroker::new_QPainterPathStroker()
{
return new QPainterPathStroker(); }
Qt::PenCapStyle PythonQtWrapper_QPainterPathStroker::capStyle(QPainterPathStroker* theWrappedObject) const
{
return theWrappedObject->capStyle();
}
QPainterPath PythonQtWrapper_QPainterPathStroker::createStroke(QPainterPathStroker* theWrappedObject, const QPainterPath& path) const
{
return theWrappedObject->createStroke(path);
}
qreal PythonQtWrapper_QPainterPathStroker::curveThreshold(QPainterPathStroker* theWrappedObject) const
{
return theWrappedObject->curveThreshold();
}
qreal PythonQtWrapper_QPainterPathStroker::dashOffset(QPainterPathStroker* theWrappedObject) const
{
return theWrappedObject->dashOffset();
}
QVector<qreal > PythonQtWrapper_QPainterPathStroker::dashPattern(QPainterPathStroker* theWrappedObject) const
{
return theWrappedObject->dashPattern();
}
Qt::PenJoinStyle PythonQtWrapper_QPainterPathStroker::joinStyle(QPainterPathStroker* theWrappedObject) const
{
return theWrappedObject->joinStyle();
}
qreal PythonQtWrapper_QPainterPathStroker::miterLimit(QPainterPathStroker* theWrappedObject) const
{
return theWrappedObject->miterLimit();
}
void PythonQtWrapper_QPainterPathStroker::setCapStyle(QPainterPathStroker* theWrappedObject, Qt::PenCapStyle style)
{
theWrappedObject->setCapStyle(style);
}
void PythonQtWrapper_QPainterPathStroker::setCurveThreshold(QPainterPathStroker* theWrappedObject, qreal threshold)
{
theWrappedObject->setCurveThreshold(threshold);
}
void PythonQtWrapper_QPainterPathStroker::setDashOffset(QPainterPathStroker* theWrappedObject, qreal offset)
{
theWrappedObject->setDashOffset(offset);
}
void PythonQtWrapper_QPainterPathStroker::setDashPattern(QPainterPathStroker* theWrappedObject, Qt::PenStyle arg__1)
{
theWrappedObject->setDashPattern(arg__1);
}
void PythonQtWrapper_QPainterPathStroker::setDashPattern(QPainterPathStroker* theWrappedObject, const QVector<qreal >& dashPattern)
{
theWrappedObject->setDashPattern(dashPattern);
}
void PythonQtWrapper_QPainterPathStroker::setJoinStyle(QPainterPathStroker* theWrappedObject, Qt::PenJoinStyle style)
{
theWrappedObject->setJoinStyle(style);
}
void PythonQtWrapper_QPainterPathStroker::setMiterLimit(QPainterPathStroker* theWrappedObject, qreal length)
{
theWrappedObject->setMiterLimit(length);
}
void PythonQtWrapper_QPainterPathStroker::setWidth(QPainterPathStroker* theWrappedObject, qreal width)
{
theWrappedObject->setWidth(width);
}
qreal PythonQtWrapper_QPainterPathStroker::width(QPainterPathStroker* theWrappedObject) const
{
return theWrappedObject->width();
}