##// END OF EJS Templates
updated version number, next version will be 2.0 due to the wrapping generator addition...
updated version number, next version will be 2.0 due to the wrapping generator addition git-svn-id: svn://svn.code.sf.net/p/pythonqt/code/trunk@69 ea8d5007-eb21-0410-b261-ccb3ea6e24a9

File last commit:

r28:cf202027b50b
r33:1742cf875fd9
Show More
PythonQtWrapper_QPen.cpp
163 lines | 3.8 KiB | text/x-c | CppLexer
#include "PythonQtWrapper_QPen.h"
#include <PythonQtSignalReceiver.h>
#include <PythonQtMethodInfo.h>
#include <PythonQtConversion.h>
#include <QBrush>
#include <QVariant>
#include <qbrush.h>
#include <qcolor.h>
#include <qdatastream.h>
#include <qpen.h>
#include <qvector.h>
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<qreal >& pattern)
{
theWrappedObject->setDashPattern(pattern);
}
void PythonQtWrapper_QPen::setMiterLimit(QPen* theWrappedObject, qreal limit)
{
theWrappedObject->setMiterLimit(limit);
}
QVector<qreal > 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();
}