#include "PythonQtWrapper_QPen.h" #include #include #include #include #include #include #include #include #include #include QPen* PythonQtWrapper_QPen::new_QPen() { return new QPen(); } QPen* PythonQtWrapper_QPen::new_QPen(Qt::PenStyle arg__1) { return new QPen(arg__1); } QPen* PythonQtWrapper_QPen::new_QPen(const QBrush& brush, qreal width, Qt::PenStyle s, Qt::PenCapStyle c, Qt::PenJoinStyle j) { return new QPen(brush, width, s, c, j); } QPen* PythonQtWrapper_QPen::new_QPen(const QColor& color) { return new QPen(color); } QPen* PythonQtWrapper_QPen::new_QPen(const QPen& pen) { return new QPen(pen); } void PythonQtWrapper_QPen::setColor(QPen* theWrappedObject, const QColor& color) { theWrappedObject->setColor(color); } void PythonQtWrapper_QPen::setDashPattern(QPen* theWrappedObject, const QVector& pattern) { theWrappedObject->setDashPattern(pattern); } void PythonQtWrapper_QPen::setMiterLimit(QPen* theWrappedObject, qreal limit) { theWrappedObject->setMiterLimit(limit); } QVector PythonQtWrapper_QPen::dashPattern(QPen* theWrappedObject) const { return theWrappedObject->dashPattern(); } void PythonQtWrapper_QPen::setBrush(QPen* theWrappedObject, const QBrush& brush) { theWrappedObject->setBrush(brush); } void PythonQtWrapper_QPen::setWidthF(QPen* theWrappedObject, qreal width) { theWrappedObject->setWidthF(width); } bool PythonQtWrapper_QPen::isCosmetic(QPen* theWrappedObject) const { return theWrappedObject->isCosmetic(); } Qt::PenJoinStyle PythonQtWrapper_QPen::joinStyle(QPen* theWrappedObject) const { return theWrappedObject->joinStyle(); } bool PythonQtWrapper_QPen::isSolid(QPen* theWrappedObject) const { return theWrappedObject->isSolid(); } qreal PythonQtWrapper_QPen::miterLimit(QPen* theWrappedObject) const { return theWrappedObject->miterLimit(); } void PythonQtWrapper_QPen::setWidth(QPen* theWrappedObject, int width) { theWrappedObject->setWidth(width); } qreal PythonQtWrapper_QPen::widthF(QPen* theWrappedObject) const { return theWrappedObject->widthF(); } QBrush PythonQtWrapper_QPen::brush(QPen* theWrappedObject) const { return theWrappedObject->brush(); } void PythonQtWrapper_QPen::setDashOffset(QPen* theWrappedObject, qreal doffset) { theWrappedObject->setDashOffset(doffset); } QColor PythonQtWrapper_QPen::color(QPen* theWrappedObject) const { return theWrappedObject->color(); } void PythonQtWrapper_QPen::setJoinStyle(QPen* theWrappedObject, Qt::PenJoinStyle pcs) { theWrappedObject->setJoinStyle(pcs); } void PythonQtWrapper_QPen::readFrom(QPen* theWrappedObject, QDataStream& arg__1) { arg__1 >> (*theWrappedObject); } void PythonQtWrapper_QPen::setCapStyle(QPen* theWrappedObject, Qt::PenCapStyle pcs) { theWrappedObject->setCapStyle(pcs); } Qt::PenCapStyle PythonQtWrapper_QPen::capStyle(QPen* theWrappedObject) const { return theWrappedObject->capStyle(); } bool PythonQtWrapper_QPen::operator_equal(QPen* theWrappedObject, const QPen& p) const { return (*theWrappedObject)== p; } void PythonQtWrapper_QPen::setStyle(QPen* theWrappedObject, Qt::PenStyle arg__1) { theWrappedObject->setStyle(arg__1); } void PythonQtWrapper_QPen::setCosmetic(QPen* theWrappedObject, bool cosmetic) { theWrappedObject->setCosmetic(cosmetic); } void PythonQtWrapper_QPen::writeTo(QPen* theWrappedObject, QDataStream& arg__1) { arg__1 << (*theWrappedObject); } Qt::PenStyle PythonQtWrapper_QPen::style(QPen* theWrappedObject) const { return theWrappedObject->style(); } int PythonQtWrapper_QPen::width(QPen* theWrappedObject) const { return theWrappedObject->width(); } qreal PythonQtWrapper_QPen::dashOffset(QPen* theWrappedObject) const { return theWrappedObject->dashOffset(); }