#include "PythonQtWrapper_QGradient.h" #include #include #include #include #include #include #include #include QGradient* PythonQtWrapper_QGradient::new_QGradient() { return new QGradient(); } QVector > PythonQtWrapper_QGradient::stops(QGradient* theWrappedObject) const { return ( theWrappedObject->stops()); } QGradient::CoordinateMode PythonQtWrapper_QGradient::coordinateMode(QGradient* theWrappedObject) const { return ( theWrappedObject->coordinateMode()); } QGradient::Spread PythonQtWrapper_QGradient::spread(QGradient* theWrappedObject) const { return ( theWrappedObject->spread()); } void PythonQtWrapper_QGradient::setColorAt(QGradient* theWrappedObject, qreal pos, const QColor& color) { ( theWrappedObject->setColorAt(pos, color)); } void PythonQtWrapper_QGradient::setSpread(QGradient* theWrappedObject, QGradient::Spread spread) { ( theWrappedObject->setSpread(spread)); } QGradient::Type PythonQtWrapper_QGradient::type(QGradient* theWrappedObject) const { return ( theWrappedObject->type()); } void PythonQtWrapper_QGradient::setCoordinateMode(QGradient* theWrappedObject, QGradient::CoordinateMode mode) { ( theWrappedObject->setCoordinateMode(mode)); } void PythonQtWrapper_QGradient::setStops(QGradient* theWrappedObject, const QVector >& stops) { ( theWrappedObject->setStops(stops)); } bool PythonQtWrapper_QGradient::operator_equal(QGradient* theWrappedObject, const QGradient& gradient) const { return ( (*theWrappedObject)== gradient); }