##// 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_QPolygonF.cpp
254 lines | 6.4 KiB | text/x-c | CppLexer
florianlink
added initial generated wrappers for Qt 4.4.3...
r13 #include "PythonQtWrapper_QPolygonF.h"
#include <QVariant>
#include <qdatastream.h>
#include <qlist.h>
#include <qpoint.h>
#include <qpolygon.h>
#include <qrect.h>
#include <qvector.h>
QPolygonF* PythonQtWrapper_QPolygonF::new_QPolygonF()
{
return new QPolygonF(); }
QPolygonF* PythonQtWrapper_QPolygonF::new_QPolygonF(const QPolygon& a)
{
return new QPolygonF(a); }
QPolygonF* PythonQtWrapper_QPolygonF::new_QPolygonF(const QPolygonF& a)
{
return new QPolygonF(a); }
QPolygonF* PythonQtWrapper_QPolygonF::new_QPolygonF(const QRectF& r)
{
return new QPolygonF(r); }
QPolygonF* PythonQtWrapper_QPolygonF::new_QPolygonF(const QVector<QPointF >& v)
{
return new QPolygonF(v); }
QPolygonF* PythonQtWrapper_QPolygonF::new_QPolygonF(int size)
{
return new QPolygonF(size); }
void PythonQtWrapper_QPolygonF::append(QPolygonF* theWrappedObject, const QPointF& t)
{
theWrappedObject->append(t);
}
const QPointF& PythonQtWrapper_QPolygonF::at(QPolygonF* theWrappedObject, int i) const
{
return theWrappedObject->at(i);
}
QRectF PythonQtWrapper_QPolygonF::boundingRect(QPolygonF* theWrappedObject) const
{
return theWrappedObject->boundingRect();
}
int PythonQtWrapper_QPolygonF::capacity(QPolygonF* theWrappedObject) const
{
return theWrappedObject->capacity();
}
void PythonQtWrapper_QPolygonF::clear(QPolygonF* theWrappedObject)
{
theWrappedObject->clear();
}
bool PythonQtWrapper_QPolygonF::contains(QPolygonF* theWrappedObject, const QPointF& t) const
{
return theWrappedObject->contains(t);
}
bool PythonQtWrapper_QPolygonF::containsPoint(QPolygonF* theWrappedObject, const QPointF& pt, Qt::FillRule fillRule) const
{
return theWrappedObject->containsPoint(pt, fillRule);
}
int PythonQtWrapper_QPolygonF::count(QPolygonF* theWrappedObject) const
{
return theWrappedObject->count();
}
int PythonQtWrapper_QPolygonF::count(QPolygonF* theWrappedObject, const QPointF& t) const
{
return theWrappedObject->count(t);
}
bool PythonQtWrapper_QPolygonF::empty(QPolygonF* theWrappedObject) const
{
return theWrappedObject->empty();
}
QVector<QPointF >& PythonQtWrapper_QPolygonF::fill(QPolygonF* theWrappedObject, const QPointF& t, int size)
{
return theWrappedObject->fill(t, size);
}
const QPointF& PythonQtWrapper_QPolygonF::first(QPolygonF* theWrappedObject) const
{
return theWrappedObject->first();
}
QVector<QPointF > PythonQtWrapper_QPolygonF::static_QPolygonF_fromList(const QList<QPointF >& list)
{
return QPolygonF::fromList(list);
}
int PythonQtWrapper_QPolygonF::indexOf(QPolygonF* theWrappedObject, const QPointF& t, int from) const
{
return theWrappedObject->indexOf(t, from);
}
QPolygonF PythonQtWrapper_QPolygonF::intersected(QPolygonF* theWrappedObject, const QPolygonF& r) const
{
return theWrappedObject->intersected(r);
}
bool PythonQtWrapper_QPolygonF::isClosed(QPolygonF* theWrappedObject) const
{
return theWrappedObject->isClosed();
}
bool PythonQtWrapper_QPolygonF::isEmpty(QPolygonF* theWrappedObject) const
{
return theWrappedObject->isEmpty();
}
const QPointF& PythonQtWrapper_QPolygonF::last(QPolygonF* theWrappedObject) const
{
return theWrappedObject->last();
}
int PythonQtWrapper_QPolygonF::lastIndexOf(QPolygonF* theWrappedObject, const QPointF& t, int from) const
{
return theWrappedObject->lastIndexOf(t, from);
}
QVector<QPointF > PythonQtWrapper_QPolygonF::mid(QPolygonF* theWrappedObject, int pos, int length) const
{
return theWrappedObject->mid(pos, length);
}
void PythonQtWrapper_QPolygonF::writeTo(QPolygonF* theWrappedObject, QDataStream& stream)
{
stream << *theWrappedObject;
}
bool PythonQtWrapper_QPolygonF::operator_equal(QPolygonF* theWrappedObject, const QVector<QPointF >& v) const
{
return *theWrappedObject == v;
}
void PythonQtWrapper_QPolygonF::readFrom(QPolygonF* theWrappedObject, QDataStream& stream)
{
stream >> *theWrappedObject;
}
void PythonQtWrapper_QPolygonF::pop_back(QPolygonF* theWrappedObject)
{
theWrappedObject->pop_back();
}
void PythonQtWrapper_QPolygonF::pop_front(QPolygonF* theWrappedObject)
{
theWrappedObject->pop_front();
}
void PythonQtWrapper_QPolygonF::prepend(QPolygonF* theWrappedObject, const QPointF& t)
{
theWrappedObject->prepend(t);
}
void PythonQtWrapper_QPolygonF::push_back(QPolygonF* theWrappedObject, const QPointF& t)
{
theWrappedObject->push_back(t);
}
void PythonQtWrapper_QPolygonF::push_front(QPolygonF* theWrappedObject, const QPointF& t)
{
theWrappedObject->push_front(t);
}
void PythonQtWrapper_QPolygonF::remove(QPolygonF* theWrappedObject, int i)
{
theWrappedObject->remove(i);
}
void PythonQtWrapper_QPolygonF::remove(QPolygonF* theWrappedObject, int i, int n)
{
theWrappedObject->remove(i, n);
}
void PythonQtWrapper_QPolygonF::replace(QPolygonF* theWrappedObject, int i, const QPointF& t)
{
theWrappedObject->replace(i, t);
}
void PythonQtWrapper_QPolygonF::reserve(QPolygonF* theWrappedObject, int size)
{
theWrappedObject->reserve(size);
}
void PythonQtWrapper_QPolygonF::resize(QPolygonF* theWrappedObject, int size)
{
theWrappedObject->resize(size);
}
void PythonQtWrapper_QPolygonF::setSharable(QPolygonF* theWrappedObject, bool sharable)
{
theWrappedObject->setSharable(sharable);
}
int PythonQtWrapper_QPolygonF::size(QPolygonF* theWrappedObject) const
{
return theWrappedObject->size();
}
void PythonQtWrapper_QPolygonF::squeeze(QPolygonF* theWrappedObject)
{
theWrappedObject->squeeze();
}
QPolygonF PythonQtWrapper_QPolygonF::subtracted(QPolygonF* theWrappedObject, const QPolygonF& r) const
{
return theWrappedObject->subtracted(r);
}
QList<QPointF > PythonQtWrapper_QPolygonF::toList(QPolygonF* theWrappedObject) const
{
return theWrappedObject->toList();
}
QPolygon PythonQtWrapper_QPolygonF::toPolygon(QPolygonF* theWrappedObject) const
{
return theWrappedObject->toPolygon();
}
void PythonQtWrapper_QPolygonF::translate(QPolygonF* theWrappedObject, const QPointF& offset)
{
theWrappedObject->translate(offset);
}
void PythonQtWrapper_QPolygonF::translate(QPolygonF* theWrappedObject, qreal dx, qreal dy)
{
theWrappedObject->translate(dx, dy);
}
QPolygonF PythonQtWrapper_QPolygonF::united(QPolygonF* theWrappedObject, const QPolygonF& r) const
{
return theWrappedObject->united(r);
}
QPointF PythonQtWrapper_QPolygonF::value(QPolygonF* theWrappedObject, int i) const
{
return theWrappedObject->value(i);
}
QPointF PythonQtWrapper_QPolygonF::value(QPolygonF* theWrappedObject, int i, const QPointF& defaultValue) const
{
return theWrappedObject->value(i, defaultValue);
}